ETH Price: $2,409.39 (-1.34%)

Contract

0x6544B1cd2d28C6c53B52A1fFb8E547740e426B33
 
Transaction Hash
Method
Block
From
To
Emergency Withdr...150143002022-06-23 18:40:19839 days ago1656009619IN
Benchmark: Token Distribution
0 ETH0.0030650270.22936875
Emergency Withdr...120223282021-03-12 7:11:471307 days ago1615533107IN
Benchmark: Token Distribution
0 ETH0.00460707118
Emergency Withdr...118641402021-02-15 22:53:541331 days ago1613429634IN
Benchmark: Token Distribution
0 ETH0.00411147118
Emergency Withdr...118350262021-02-11 11:36:421336 days ago1613043402IN
Benchmark: Token Distribution
0 ETH0.0041776107
Emergency Withdr...117536292021-01-29 23:02:101348 days ago1611961330IN
Benchmark: Token Distribution
0 ETH0.0035138790
Emergency Withdr...117174672021-01-24 9:17:241354 days ago1611479844IN
Benchmark: Token Distribution
0 ETH0.0019521550
Emergency Withdr...117127282021-01-23 15:50:281355 days ago1611417028IN
Benchmark: Token Distribution
0 ETH0.002459763
Emergency Withdr...117126392021-01-23 15:30:551355 days ago1611415855IN
Benchmark: Token Distribution
0 ETH0.0023425860
Emergency Withdr...117126392021-01-23 15:30:551355 days ago1611415855IN
Benchmark: Token Distribution
0 ETH0.0020905860
Emergency Withdr...117104642021-01-23 7:25:581355 days ago1611386758IN
Benchmark: Token Distribution
0 ETH0.0023035359
Emergency Withdr...116891462021-01-20 0:55:231358 days ago1611104123IN
Benchmark: Token Distribution
0 ETH0.0017959746
Emergency Withdr...116802432021-01-18 16:10:581360 days ago1610986258IN
Benchmark: Token Distribution
0 ETH0.0038750199.25000123
Emergency Withdr...116790122021-01-18 11:35:311360 days ago1610969731IN
Benchmark: Token Distribution
0 ETH0.0017606251.00000145
Emergency Withdr...116784982021-01-18 9:44:461360 days ago1610963086IN
Benchmark: Token Distribution
0 ETH0.0026549268
Emergency Withdr...116717692021-01-17 8:58:001361 days ago1610873880IN
Benchmark: Token Distribution
0 ETH0.0021473655
Emergency Withdr...116693612021-01-16 23:57:341361 days ago1610841454IN
Benchmark: Token Distribution
0 ETH0.0015617240
Emergency Withdr...116632282021-01-16 1:15:521362 days ago1610759752IN
Benchmark: Token Distribution
0 ETH0.0025377965
Emergency Withdr...116623822021-01-15 22:17:031362 days ago1610749023IN
Benchmark: Token Distribution
0 ETH0.0018740648
Emergency Withdr...116517362021-01-14 6:57:391364 days ago1610607459IN
Benchmark: Token Distribution
0 ETH0.0014055436
Emergency Withdr...116467312021-01-13 12:57:251365 days ago1610542645IN
Benchmark: Token Distribution
0 ETH0.0017178944.0000016
Emergency Withdr...116392402021-01-12 9:11:241366 days ago1610442684IN
Benchmark: Token Distribution
0 ETH0.0035637771.50000023
Emergency Withdr...116377262021-01-12 3:31:091366 days ago1610422269IN
Benchmark: Token Distribution
0 ETH0.0028503357.2
Emergency Withdr...116252572021-01-10 5:45:581368 days ago1610257558IN
Benchmark: Token Distribution
0 ETH0.0025377965.00000156
Emergency Withdr...116201242021-01-09 10:48:591369 days ago1610189339IN
Benchmark: Token Distribution
0 ETH0.0028501373
Emergency Withdr...116195042021-01-09 8:22:081369 days ago1610180528IN
Benchmark: Token Distribution
0 ETH0.0021473655
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xfeE94951...Fac64861f
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Faucet

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


/******************************************/
/*       IERC20 starts here               */
/******************************************/

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

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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


/******************************************/
/*       SafeMath starts here             */
/******************************************/

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

pragma solidity ^0.6.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.
     */
    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.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/******************************************/
/*       Address starts here              */
/******************************************/

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

pragma solidity ^0.6.2;

/**
 * @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 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].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


/******************************************/
/*       SafeERC20 starts here            */
/******************************************/

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

pragma solidity ^0.6.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 IERC20;` 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));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    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. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "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");
        }
    }
}

/******************************************/
/*       Context starts here              */
/******************************************/

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

pragma solidity ^0.6.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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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


/******************************************/
/*       Ownable starts here              */
/******************************************/

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

pragma solidity ^0.6.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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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(_owner == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/******************************************/
/*       Faucet starts here          */
/******************************************/

pragma solidity ^0.6.12;

contract Faucet is Ownable {

    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    struct UserInfo 
    {
        uint256 amount;                 // How many LP tokens the user has provided.
        uint256 rewardDebt;             // Reward debt. See explanation below.
    }

    struct PoolInfo 
    {
        IERC20 lpToken;                 // Address of LP token contract.
        uint256 allocPoint;             // How many allocation points assigned to this pool.
        uint256 lastRewardBlock;        // Last block number that MARK distribution occured.
        uint256 accMarkPerShare;        // Accumulated MARK per share, times 1e12. See below.
    }

    IERC20 public MARK;                 // MARK token
    PoolInfo[] public poolInfo;         // Info of each pool.
    uint256 public markPerBlock;        // MARK tokens created per block.
    uint256 public startBlock;          // The block number at which MARK distribution starts.
    uint256 public endBlock;            // The block number at which MARK distribution ends.
    uint256 public totalAllocPoint = 0; // Total allocation poitns. Must be the sum of all allocation points in all pools.

    mapping (uint256 => mapping (address => UserInfo)) public userInfo;     // Info of each user that stakes LP tokens.

    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(IERC20 _MARK, uint256 _markPerBlock, uint256 _startBlock, uint256 _endBlock) public {
        MARK = _MARK;
        markPerBlock = _markPerBlock;
        startBlock = _startBlock;
        endBlock = _endBlock;
    }

    /**
     * @dev Adds a new lp to the pool. Can only be called by the owner. DO NOT add the same LP token more than once.
     * @param _allocPoint How many allocation points to assign to this pool.
     * @param _lpToken Address of LP token contract.
     * @param _withUpdate Whether to update all LP token contracts. Should be true if MARK distribution has already begun.
     */
    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({
            lpToken: _lpToken,
            allocPoint: _allocPoint,
            lastRewardBlock: lastRewardBlock,
            accMarkPerShare: 0
        }));
    }

    /**
     * @dev Update the given pool's MARK allocation point. Can only be called by the owner.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     * @param _allocPoint How many allocation points to assign to this pool.
     * @param _withUpdate Whether to update all LP token contracts. Should be true if MARK distribution has already begun.
     */
    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;
    }

    /**
     * @dev Return reward multiplier over the given _from to _to blocks based on block count.
     * @param _from First block.
     * @param _to Last block.
     * @return Number of blocks.
     */
    function getMultiplier(uint256 _from, uint256 _to) internal view returns (uint256) {
        if (_to < endBlock) {
            return _to.sub(_from);
        } else if (_from >= endBlock) {
            return 0;
        } else {
            return endBlock.sub(_from);
        }     
    }

    /**
     * @dev View function to see pending MARK on frontend.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     * @param _user Address of a specific user.
     * @return Pending MARK.
     */
    function pendingMark(uint256 _pid, address _user) external view returns (uint256) {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_user];
        uint256 accMarkPerShare = pool.accMarkPerShare;
        uint256 lpSupply = pool.lpToken.balanceOf(address(this));
        if (block.number > pool.lastRewardBlock && lpSupply != 0) {
            uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
            uint256 markReward = multiplier.mul(markPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
            accMarkPerShare = accMarkPerShare.add(markReward.mul(1e12).div(lpSupply));
        }
        return user.amount.mul(accMarkPerShare).div(1e12).sub(user.rewardDebt);
    }

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

    /**
     * @dev Update reward variables of the given pool to be up-to-date.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     */
    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 markReward = multiplier.mul(markPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
        pool.accMarkPerShare = pool.accMarkPerShare.add(markReward.mul(1e12).div(lpSupply));
        pool.lastRewardBlock = block.number;
    }

    /**
     * @dev Deposit LP tokens to Faucet for MARK allocation.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     * @param _amount Amount of LP tokens to deposit.
     */
    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.accMarkPerShare).div(1e12).sub(user.rewardDebt);
            safeMarkTransfer(msg.sender, pending);
        }
        pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
        user.amount = user.amount.add(_amount);
        user.rewardDebt = user.amount.mul(pool.accMarkPerShare).div(1e12);
        emit Deposit(msg.sender, _pid, _amount);
    }

    /**
     * @dev Withdraw LP tokens from MasterChef.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     * @param _amount Amount of LP tokens to withdraw.
     */
    function withdraw(uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        require(user.amount >= _amount, "Can't withdraw more token than previously deposited.");
        updatePool(_pid);
        uint256 pending = user.amount.mul(pool.accMarkPerShare).div(1e12).sub(user.rewardDebt);
        safeMarkTransfer(msg.sender, pending);
        user.amount = user.amount.sub(_amount);
        user.rewardDebt = user.amount.mul(pool.accMarkPerShare).div(1e12);
        pool.lpToken.safeTransfer(address(msg.sender), _amount);
        emit Withdraw(msg.sender, _pid, _amount);
    }

    /**
     * @dev Withdraw without caring about rewards. EMERGENCY ONLY.
     * @param _pid ID of a specific LP token pool. See index of PoolInfo[].
     */
    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;
    }

    /**
     * @dev Safe mark transfer function, just in case if rounding error causes faucet to not have enough MARK.
     * @param _to Target address.
     * @param _amount Amount of MARK to transfer.
     */
    function safeMarkTransfer(address _to, uint256 _amount) internal {
        uint256 markBalance = MARK.balanceOf(address(this));
        if (_amount > markBalance) {
            MARK.transfer(_to, markBalance);
        } else {
            MARK.transfer(_to, _amount);
        }
    }

    /**
     * @dev Views total number of LP token pools.
     * @return Size of poolInfo array.
     */
    function poolLength() external view returns (uint256) {
        return poolInfo.length;
    }
    
    /**
     * @dev Views total number of MARK tokens deposited for rewards.
     * @return MARK token balance of the faucet.
     */
    function balance() public view returns (uint256) {
        return MARK.balanceOf(address(this));
    }

    /**
     * @dev Transfer MARK tokens.
     * @return Success.
     */
    function transfer(address to, uint256 value) external onlyOwner returns (bool) {
        return MARK.transfer(to, value);
    }

    /**
     * @dev Define last block on which MARK reward distribution occurs.
     * @return Last block number.
     */
    function setEndBlock(uint256 _endBlock) external onlyOwner returns (uint256) {
        require(block.number < endBlock, "Reward distribution already ended.");
        require(_endBlock > block.number, "Block needs to be in the future.");
        endBlock = _endBlock;
        return endBlock;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_MARK","type":"address"},{"internalType":"uint256","name":"_markPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_endBlock","type":"uint256"}],"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"},{"inputs":[],"name":"MARK","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"markPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingMark","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"accMarkPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_endBlock","type":"uint256"}],"name":"setEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806364482f79116100b8578063a9059cbb1161007c578063a9059cbb1461048f578063ac08f540146104f3578063b69ef8a814610527578063c713aa9414610545578063e2bbb15814610587578063f2fde38b146105bf57610142565b806364482f7914610386578063715018a6146103ca5780637c3a660a146103d45780638da5cb5b146103f257806393f1a40b1461042657610142565b80631eaaa0451161010a5780631eaaa04514610270578063441a3e70146102ca57806348cd4cb11461030257806351eb05a6146103205780635312ea8e1461034e578063630b5ba11461037c57610142565b8063081e3eda14610147578063083c6323146101655780631526fe271461018357806317caf6f1146101f05780631a1c40441461020e575b600080fd5b61014f610603565b6040518082815260200191505060405180910390f35b61016d610610565b6040518082815260200191505060405180910390f35b6101af6004803603602081101561019957600080fd5b8101908080359060200190929190505050610616565b604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390f35b6101f8610673565b6040518082815260200191505060405180910390f35b61025a6004803603604081101561022457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610679565b6040518082815260200191505060405180910390f35b6102c86004803603606081101561028657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506108bf565b005b610300600480360360408110156102e057600080fd5b810190808035906020019092919080359060200190929190505050610a98565b005b61030a610cc5565b6040518082815260200191505060405180910390f35b61034c6004803603602081101561033657600080fd5b8101908080359060200190929190505050610ccb565b005b61037a6004803603602081101561036457600080fd5b8101908080359060200190929190505050610e8c565b005b610384610fbe565b005b6103c86004803603606081101561039c57600080fd5b810190808035906020019092919080359060200190929190803515159060200190929190505050610feb565b005b6103d2611135565b005b6103dc6112bb565b6040518082815260200191505060405180910390f35b6103fa6112c1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104726004803603604081101561043c57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112ea565b604051808381526020018281526020019250505060405180910390f35b6104db600480360360408110156104a557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061131b565b60405180821515815260200191505060405180910390f35b6104fb6114bb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61052f6114e1565b6040518082815260200191505060405180910390f35b6105716004803603602081101561055b57600080fd5b81019080803590602001909291905050506115ac565b6040518082815260200191505060405180910390f35b6105bd6004803603604081101561059d57600080fd5b810190808035906020019092919080359060200190929190505050611756565b005b610601600480360360208110156105d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611936565b005b6000600280549050905090565b60055481565b6002818154811061062357fe5b90600052602060002090600402016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154905084565b60065481565b6000806002848154811061068957fe5b9060005260206000209060040201905060006007600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561078357600080fd5b505afa158015610797573d6000803e3d6000fd5b505050506040513d60208110156107ad57600080fd5b810190808051906020019092919050505090508360020154431180156107d4575060008114155b1561086f5760006107e9856002015443611b41565b9050600061082c60065461081e886001015461081060035487611b9790919063ffffffff16565b611b9790919063ffffffff16565b611c1d90919063ffffffff16565b905061086a61085b8461084d64e8d4a5100085611b9790919063ffffffff16565b611c1d90919063ffffffff16565b85611c6790919063ffffffff16565b935050505b6108b383600101546108a564e8d4a51000610897868860000154611b9790919063ffffffff16565b611c1d90919063ffffffff16565b611cef90919063ffffffff16565b94505050505092915050565b6108c7611d39565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610987576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801561099657610995610fbe565b5b600060045443116109a9576004546109ab565b435b90506109c284600654611c6790919063ffffffff16565b600681905550600260405180608001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018381526020016000815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101556040820151816002015560608201518160030155505050505050565b600060028381548110610aa757fe5b9060005260206000209060040201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015610b68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806125fc6034913960400191505060405180910390fd5b610b7184610ccb565b6000610bbb8260010154610bad64e8d4a51000610b9f87600301548760000154611b9790919063ffffffff16565b611c1d90919063ffffffff16565b611cef90919063ffffffff16565b9050610bc73382611d41565b610bde848360000154611cef90919063ffffffff16565b8260000181905550610c1864e8d4a51000610c0a85600301548560000154611b9790919063ffffffff16565b611c1d90919063ffffffff16565b8260010181905550610c6f33858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fba9092919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a35050505050565b60045481565b600060028281548110610cda57fe5b9060005260206000209060040201905080600201544311610cfb5750610e89565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610d8857600080fd5b505afa158015610d9c573d6000803e3d6000fd5b505050506040513d6020811015610db257600080fd5b810190808051906020019092919050505090506000811415610dde574382600201819055505050610e89565b6000610dee836002015443611b41565b90506000610e31600654610e238660010154610e1560035487611b9790919063ffffffff16565b611b9790919063ffffffff16565b611c1d90919063ffffffff16565b9050610e73610e6084610e5264e8d4a5100085611b9790919063ffffffff16565b611c1d90919063ffffffff16565b8560030154611c6790919063ffffffff16565b8460030181905550438460020181905550505050505b50565b600060028281548110610e9b57fe5b9060005260206000209060040201905060006007600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610f523382600001548460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fba9092919063ffffffff16565b823373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059583600001546040518082815260200191505060405180910390a36000816000018190555060008160010181905550505050565b6000600280549050905060005b81811015610fe757610fdc81610ccb565b806001019050610fcb565b5050565b610ff3611d39565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80156110c2576110c1610fbe565b5b611107826110f9600286815481106110d657fe5b906000526020600020906004020160010154600654611cef90919063ffffffff16565b611c6790919063ffffffff16565b600681905550816002848154811061111b57fe5b906000526020600020906004020160010181905550505050565b61113d611d39565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60035481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6007602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b6000611325611d39565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561147857600080fd5b505af115801561148c573d6000803e3d6000fd5b505050506040513d60208110156114a257600080fd5b8101908080519060200190929190505050905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561156c57600080fd5b505afa158015611580573d6000803e3d6000fd5b505050506040513d602081101561159657600080fd5b8101908080519060200190929190505050905090565b60006115b6611d39565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611676576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60055443106116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126566022913960400191505060405180910390fd5b438211611745576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f426c6f636b206e6565647320746f20626520696e20746865206675747572652e81525060200191505060405180910390fd5b816005819055506005549050919050565b60006002838154811061176557fe5b9060005260206000209060040201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506117d284610ccb565b600081600001541115611837576000611829826001015461181b64e8d4a5100061180d87600301548760000154611b9790919063ffffffff16565b611c1d90919063ffffffff16565b611cef90919063ffffffff16565b90506118353382611d41565b505b6118883330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661205c909392919063ffffffff16565b61189f838260000154611c6790919063ffffffff16565b81600001819055506118d964e8d4a510006118cb84600301548460000154611b9790919063ffffffff16565b611c1d90919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a350505050565b61193e611d39565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126306026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600554821015611b6757611b608383611cef90919063ffffffff16565b9050611b91565b6005548310611b795760009050611b91565b611b8e83600554611cef90919063ffffffff16565b90505b92915050565b600080831415611baa5760009050611c17565b6000828402905082848281611bbb57fe5b0414611c12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126786021913960400191505060405180910390fd5b809150505b92915050565b6000611c5f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061211d565b905092915050565b600080828401905083811015611ce5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611d3183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121e3565b905092915050565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611dcc57600080fd5b505afa158015611de0573d6000803e3d6000fd5b505050506040513d6020811015611df657600080fd5b8101908080519060200190929190505050905080821115611ee557600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611ea457600080fd5b505af1158015611eb8573d6000803e3d6000fd5b505050506040513d6020811015611ece57600080fd5b810190808051906020019092919050505050611fb5565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611f7857600080fd5b505af1158015611f8c573d6000803e3d6000fd5b505050506040513d6020811015611fa257600080fd5b8101908080519060200190929190505050505b505050565b6120578363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506122a3565b505050565b612117846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506122a3565b50505050565b600080831182906121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561218e578082015181840152602081019050612173565b50505050905090810190601f1680156121bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816121d557fe5b049050809150509392505050565b6000838311158290612290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561225557808201518184015260208101905061223a565b50505050905090810190601f1680156122825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060612305826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166123929092919063ffffffff16565b905060008151111561238d5780806020019051602081101561232657600080fd5b810190808051906020019092919050505061238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612699602a913960400191505060405180910390fd5b5b505050565b60606123a184846000856123aa565b90509392505050565b60606123b5856125b0565b612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124775780518252602082019150602081019050602083039250612454565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146124d9576040519150601f19603f3d011682016040523d82523d6000602084013e6124de565b606091505b509150915081156124f35780925050506125a8565b6000815111156125065780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561256d578082015181840152602081019050612552565b50505050905090810190601f16801561259a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91508082141580156125f257506000801b8214155b9250505091905056fe43616e2774207769746864726177206d6f726520746f6b656e207468616e2070726576696f75736c79206465706f73697465642e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737352657761726420646973747269627574696f6e20616c726561647920656e6465642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220b0bad2c48aca77b6d27d5391b23429b08e8b36a0ef005f0c15ba94a308ae3d3964736f6c634300060c0033

Deployed Bytecode Sourcemap

22451:10031:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31476:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23443:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23209:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23537:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26642:759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24668:513;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29632:686;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23347:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27863:685;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30489:356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27507:180;;;:::i;:::-;;25579:304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21734:148;;;:::i;:::-;;23272:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21092:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23663:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;31911:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23154:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31721:104;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32174:303;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28768:656;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22037:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31476:95;31521:7;31548:8;:15;;;;31541:22;;31476:95;:::o;23443:23::-;;;;:::o;23209:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23537:34::-;;;;:::o;26642:759::-;26715:7;26735:21;26759:8;26768:4;26759:14;;;;;;;;;;;;;;;;;;26735:38;;26784:21;26808:8;:14;26817:4;26808:14;;;;;;;;;;;:21;26823:5;26808:21;;;;;;;;;;;;;;;26784:45;;26840:23;26866:4;:20;;;26840:46;;26897:16;26916:4;:12;;;;;;;;;;;;:22;;;26947:4;26916:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26897:56;;26983:4;:20;;;26968:12;:35;:52;;;;;27019:1;27007:8;:13;;26968:52;26964:349;;;27037:18;27058:49;27072:4;:20;;;27094:12;27058:13;:49::i;:::-;27037:70;;27122:18;27143:70;27197:15;;27143:49;27176:4;:15;;;27143:28;27158:12;;27143:10;:14;;:28;;;;:::i;:::-;:32;;:49;;;;:::i;:::-;:53;;:70;;;;:::i;:::-;27122:91;;27246:55;27266:34;27291:8;27266:20;27281:4;27266:10;:14;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27246:15;:19;;:55;;;;:::i;:::-;27228:73;;26964:349;;;27330:63;27377:4;:15;;;27330:42;27367:4;27330:32;27346:15;27330:4;:11;;;:15;;:32;;;;:::i;:::-;:36;;:42;;;;:::i;:::-;:46;;:63;;;;:::i;:::-;27323:70;;;;;;26642:759;;;;:::o;24668:513::-;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24769:11:::1;24765:61;;;24797:17;:15;:17::i;:::-;24765:61;24836:23;24877:10;;24862:12;:25;:53;;24905:10;;24862:53;;;24890:12;24862:53;24836:79;;24944:32;24964:11;24944:15;;:19;;:32;;;;:::i;:::-;24926:15;:50;;;;24987:8;25001:171;;;;;;;;25034:8;25001:171;;;;;;25069:11;25001:171;;;;25112:15;25001:171;;;;25159:1;25001:171;;::::0;24987:186:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21374:1;24668:513:::0;;;:::o;29632:686::-;29699:21;29723:8;29732:4;29723:14;;;;;;;;;;;;;;;;;;29699:38;;29748:21;29772:8;:14;29781:4;29772:14;;;;;;;;;;;:26;29787:10;29772:26;;;;;;;;;;;;;;;29748:50;;29832:7;29817:4;:11;;;:22;;29809:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29907:16;29918:4;29907:10;:16::i;:::-;29934:15;29952:68;30004:4;:15;;;29952:47;29994:4;29952:37;29968:4;:20;;;29952:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;29934:86;;30031:37;30048:10;30060:7;30031:16;:37::i;:::-;30093:24;30109:7;30093:4;:11;;;:15;;:24;;;;:::i;:::-;30079:4;:11;;:38;;;;30146:47;30188:4;30146:37;30162:4;:20;;;30146:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;30128:4;:15;;:65;;;;30204:55;30238:10;30251:7;30204:4;:12;;;;;;;;;;;;:25;;;;:55;;;;;:::i;:::-;30296:4;30284:10;30275:35;;;30302:7;30275:35;;;;;;;;;;;;;;;;;;29632:686;;;;;:::o;23347:25::-;;;;:::o;27863:685::-;27915:21;27939:8;27948:4;27939:14;;;;;;;;;;;;;;;;;;27915:38;;27984:4;:20;;;27968:12;:36;27964:75;;28021:7;;;27964:75;28049:16;28068:4;:12;;;;;;;;;;;;:22;;;28099:4;28068:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28049:56;;28132:1;28120:8;:13;28116:102;;;28173:12;28150:4;:20;;:35;;;;28200:7;;;;28116:102;28228:18;28249:49;28263:4;:20;;;28285:12;28249:13;:49::i;:::-;28228:70;;28309:18;28330:70;28384:15;;28330:49;28363:4;:15;;;28330:28;28345:12;;28330:10;:14;;:28;;;;:::i;:::-;:32;;:49;;;;:::i;:::-;:53;;:70;;;;:::i;:::-;28309:91;;28434:60;28459:34;28484:8;28459:20;28474:4;28459:10;:14;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28434:4;:20;;;:24;;:60;;;;:::i;:::-;28411:4;:20;;:83;;;;28528:12;28505:4;:20;;:35;;;;27863:685;;;;;;:::o;30489:356::-;30548:21;30572:8;30581:4;30572:14;;;;;;;;;;;;;;;;;;30548:38;;30597:21;30621:8;:14;30630:4;30621:14;;;;;;;;;;;:26;30636:10;30621:26;;;;;;;;;;;;;;;30597:50;;30658:59;30692:10;30705:4;:11;;;30658:4;:12;;;;;;;;;;;;:25;;;;:59;;;;;:::i;:::-;30763:4;30751:10;30733:48;;;30769:4;:11;;;30733:48;;;;;;;;;;;;;;;;;;30806:1;30792:4;:11;;:15;;;;30836:1;30818:4;:15;;:19;;;;30489:356;;;:::o;27507:180::-;27552:14;27569:8;:15;;;;27552:32;;27600:11;27595:85;27623:6;27617:3;:12;27595:85;;;27653:15;27664:3;27653:10;:15::i;:::-;27631:5;;;;;27595:85;;;;27507:180;:::o;25579:304::-;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25677:11:::1;25673:61;;;25705:17;:15;:17::i;:::-;25673:61;25762:63;25813:11;25762:46;25782:8;25791:4;25782:14;;;;;;;;;;;;;;;;;;:25;;;25762:15;;:19;;:46;;;;:::i;:::-;:50;;:63;;;;:::i;:::-;25744:15;:81;;;;25864:11;25836:8;25845:4;25836:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;25579:304:::0;;;:::o;21734:148::-;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21841:1:::1;21804:40;;21825:6;::::0;::::1;;;;;;;;21804:40;;;;;;;;;;;;21872:1;21855:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;21734:148::o:0;23272:27::-;;;;:::o;21092:79::-;21130:7;21157:6;;;;;;;;;;;21150:13;;21092:79;:::o;23663:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31911:129::-;31984:4;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32008:4:::1;;;;;;;;;;;:13;;;32022:2;32026:5;32008:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;32001:31;;31911:129:::0;;;;:::o;23154:18::-;;;;;;;;;;;;;:::o;31721:104::-;31761:7;31788:4;;;;;;;;;;;:14;;;31811:4;31788:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31781:36;;31721:104;:::o;32174:303::-;32242:7;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32285:8:::1;;32270:12;:23;32262:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32363:12;32351:9;:24;32343:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32434:9;32423:8;:20;;;;32461:8;;32454:15;;32174:303:::0;;;:::o;28768:656::-;28834:21;28858:8;28867:4;28858:14;;;;;;;;;;;;;;;;;;28834:38;;28883:21;28907:8;:14;28916:4;28907:14;;;;;;;;;;;:26;28922:10;28907:26;;;;;;;;;;;;;;;28883:50;;28944:16;28955:4;28944:10;:16::i;:::-;28989:1;28975:4;:11;;;:15;28971:186;;;29007:15;29025:68;29077:4;:15;;;29025:47;29067:4;29025:37;29041:4;:20;;;29025:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;29007:86;;29108:37;29125:10;29137:7;29108:16;:37::i;:::-;28971:186;;29167:74;29205:10;29226:4;29233:7;29167:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;29266:24;29282:7;29266:4;:11;;;:15;;:24;;;;:::i;:::-;29252:4;:11;;:38;;;;29319:47;29361:4;29319:37;29335:4;:20;;;29319:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;29301:4;:15;;:65;;;;29402:4;29390:10;29382:34;;;29408:7;29382:34;;;;;;;;;;;;;;;;;;28768:656;;;;:::o;22037:244::-;21314:12;:10;:12::i;:::-;21304:22;;:6;;;;;;;;;;:22;;;21296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22146:1:::1;22126:22;;:8;:22;;;;22118:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22236:8;22207:38;;22228:6;::::0;::::1;;;;;;;;22207:38;;;;;;;;;;;;22265:8;22256:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;22037:244:::0;:::o;26103:297::-;26177:7;26207:8;;26201:3;:14;26197:191;;;26239:14;26247:5;26239:3;:7;;:14;;;;:::i;:::-;26232:21;;;;26197:191;26284:8;;26275:5;:17;26271:117;;26316:1;26309:8;;;;26271:117;26357:19;26370:5;26357:8;;:12;;:19;;;;:::i;:::-;26350:26;;26103:297;;;;;:::o;5393:471::-;5451:7;5701:1;5696;:6;5692:47;;;5726:1;5719:8;;;;5692:47;5751:9;5767:1;5763;:5;5751:17;;5796:1;5791;5787;:5;;;;;;:10;5779:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5855:1;5848:8;;;5393:471;;;;;:::o;6340:132::-;6398:7;6425:39;6429:1;6432;6425:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6418:46;;6340:132;;;;:::o;4039:181::-;4097:7;4117:9;4133:1;4129;:5;4117:17;;4158:1;4153;:6;;4145:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4211:1;4204:8;;;4039:181;;;;:::o;4503:136::-;4561:7;4588:43;4592:1;4595;4588:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4581:50;;4503:136;;;;:::o;19506:106::-;19559:15;19594:10;19587:17;;19506:106;:::o;31069:290::-;31145:19;31167:4;;;;;;;;;;;:14;;;31190:4;31167:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31145:51;;31221:11;31211:7;:21;31207:145;;;31249:4;;;;;;;;;;;:13;;;31263:3;31268:11;31249:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31207:145;;;31313:4;;;;;;;;;;;:13;;;31327:3;31332:7;31313:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31207:145;31069:290;;;:::o;15671:177::-;15754:86;15774:5;15804:23;;;15829:2;15833:5;15781:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15754:19;:86::i;:::-;15671:177;;;:::o;15856:205::-;15957:96;15977:5;16007:27;;;16036:4;16042:2;16046:5;15984:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15957:19;:96::i;:::-;15856:205;;;;:::o;6968:278::-;7054:7;7086:1;7082;:5;7089:12;7074:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7113:9;7129:1;7125;:5;;;;;;7113:17;;7237:1;7230:8;;;6968:278;;;;;:::o;4942:192::-;5028:7;5061:1;5056;:6;;5064:12;5048:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5088:9;5104:1;5100;:5;5088:17;;5125:1;5118:8;;;4942:192;;;;;:::o;17976:761::-;18400:23;18426:69;18454:4;18426:69;;;;;;;;;;;;;;;;;18434:5;18426:27;;;;:69;;;;;:::i;:::-;18400:95;;18530:1;18510:10;:17;:21;18506:224;;;18652:10;18641:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18633:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18506:224;17976:761;;;:::o;12518:196::-;12621:12;12653:53;12676:6;12684:4;12690:1;12693:12;12653:22;:53::i;:::-;12646:60;;12518:196;;;;;:::o;13895:979::-;14025:12;14058:18;14069:6;14058:10;:18::i;:::-;14050:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14184:12;14198:23;14225:6;:11;;14245:8;14256:4;14225:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14183:78;;;;14276:7;14272:595;;;14307:10;14300:17;;;;;;14272:595;14441:1;14421:10;:17;:21;14417:439;;;14684:10;14678:17;14745:15;14732:10;14728:2;14724:19;14717:44;14632:148;14827:12;14820:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13895:979;;;;;;;:::o;9403:619::-;9463:4;9725:16;9752:19;9774:66;9752:88;;;;9943:7;9931:20;9919:32;;9983:11;9971:8;:23;;:42;;;;;10010:3;9998:15;;:8;:15;;9971:42;9963:51;;;;9403:619;;;:::o

Swarm Source

ipfs://b0bad2c48aca77b6d27d5391b23429b08e8b36a0ef005f0c15ba94a308ae3d39

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Yield farming contract for initial token distribution.

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.