Contract 0x3299Ef424fd225f07eF614B4C9E8a591490Fb564

 
Txn Hash Method
Block
From
To
Value
0x2de750d19e3e9d5f346416d95624c9c4a4a7d207914dc9186480ff79a1290180Deposit Reward421418702022-11-25 13:06:47489 days 22 hrs ago0x8211cb2f07cfce6328ba327595f8dc35c8f899b8 IN  0x3299ef424fd225f07ef614b4c9e8a591490fb5640 ETH0.0000518366560.001
0x568b0788980242995bb2bcd8e8f9b0e37bddf2749270206605ba8d56c8a61ce2Deposit Reward308603112022-10-23 3:42:02523 days 8 hrs ago0xdc7c7f0bea8444c12ec98ec626ff071c6fa27a19 IN  0x3299ef424fd225f07ef614b4c9e8a591490fb5640 ETH0.0000511560820.001
0xae08e23f12c52311379fcb0321dc036f9107e23e936e61c23fca7954110daf1aDeposit Reward287624722022-10-12 0:12:38534 days 11 hrs ago0xdc7c7f0bea8444c12ec98ec626ff071c6fa27a19 IN  0x3299ef424fd225f07ef614b4c9e8a591490fb5640 ETH0.0000761601120.001
0x684f99500f1deaca9d744b078bbd174150f65dc68aa876dc13c122204dd55e5bList Token287624422022-10-12 0:12:22534 days 11 hrs ago0xdc7c7f0bea8444c12ec98ec626ff071c6fa27a19 IN  0x3299ef424fd225f07ef614b4c9e8a591490fb5640 ETH0.0000640475970.001
0xe118e70ae9983ddacbd698c2bb788225db8319f43af7fa661723c2de412dcaf60x60806040285968732022-10-11 1:31:16535 days 10 hrs ago0xdc7c7f0bea8444c12ec98ec626ff071c6fa27a19 IN  Create: VotiumVeCRVOpti0 ETH0.002474227390.3
[ Download CSV Export 
View more zero value Internal Transactions in Advanced View mode
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
VotiumVeCRVOpti

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: VotiumVeCrvOpti.sol
// SPDX-License-Identifier: MIT
// Votium veCRV Rewarder

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./SafeERC20.sol";
import "./Math.sol";

import "./Ownable.sol";



contract VotiumVeCRVOpti is Ownable {

  using SafeERC20 for IERC20;

  /* ========== STATE VARIABLES ========== */

  mapping(address => bool) public tokenListed;       // accepted tokens
  mapping(address => bool) public approvedTeam;      // for team functions that do not require multi-sig security

  address public feeAddress = 0x5F9f852d3B04c22a43B44EaC364c91252882C7e8; // Votium fee address opti
  uint256 public platformFee = 200;             // 2%
  uint256 public constant DENOMINATOR = 10000;  // denominates weights 10000 = 100%

  address public distributor;




  /* ========== CONSTRUCTOR ========== */

  constructor() {
    approvedTeam[msg.sender] = true;
    approvedTeam[0x540815B1892F888875E800d2f7027CECf883496a] = true;
  }

  /* ========== PUBLIC FUNCTIONS ========== */

  // Deposit vote incentive
  function depositReward(address _token, uint256 _amount, uint256 _week, address _gauge) public {
    require(tokenListed[_token] == true, "token unlisted");
    require(_week > week(), "week expired");  // must give voters an entire week to vote
    require(_week < week()+7, "more than 6 weeks ahead"); // cannot post future rewards beyond 6 weeks
    require(distributor != address(0), "distributor not set"); // prevent deposits if distributor is 0x0

    uint256 fee = _amount*platformFee/DENOMINATOR;
    uint256 rewardTotal = _amount-fee;
    IERC20(_token).safeTransferFrom(msg.sender, feeAddress, fee); // transfer to fee address
    IERC20(_token).safeTransferFrom(msg.sender, distributor, rewardTotal);  // transfer to distributor
    emit NewReward(_token, rewardTotal, _week, _gauge);
  }

	// current week number
  function week() public view returns (uint256) {
    return block.timestamp/(86400*7);
  }


  /* ========== APPROVED TEAM FUNCTIONS ========== */


  // list token
  function listToken(address _token) public onlyTeam {
	  tokenListed[_token] = true;
	  emit Listed(_token);
  }

  // list multiple tokens
  function listTokens(address[] memory _tokens) public onlyTeam {
	  for(uint256 i=0;i<_tokens.length;++i) {
		  tokenListed[_tokens[i]] = true;
		  emit Listed(_tokens[i]);
	  }
  }


  /* ========== MUTLI-SIG FUNCTIONS ========== */

	// unlist token
  function unlistToken(address _token) public onlyOwner {
	  tokenListed[_token] = false;
	  emit Unlisted(_token);
  }

  // update fee address
  function updateFeeAddress(address _feeAddress) public onlyOwner {
	  feeAddress = _feeAddress;
  }

  // update token distributor address
  function updateDistributor(address _distributor) public onlyOwner {
	  // can be changed for future use in case of cheaper gas options than current merkle approach
	  distributor = _distributor;
	  emit UpdatedDistributor(_distributor);
  }

  // update fee amount
  function updateFeeAmount(uint256 _feeAmount) public onlyOwner {
	  require(_feeAmount < 400, "max fee"); // Max fee 4%
	  platformFee = _feeAmount;
	  emit UpdatedFee(_feeAmount);
  }

  // add or remove address from team functions
  function modifyTeam(address _member, bool _approval) public onlyOwner {
	  approvedTeam[_member] = _approval;
	  emit ModifiedTeam(_member, _approval);
  }


  /* ========== MODIFIERS ========== */

  modifier onlyTeam() {
	  require(approvedTeam[msg.sender] == true, "Team only");
	  _;
  }

  /* ========== EVENTS ========== */

  event NewReward(address indexed _token, uint256 _amount, uint256 indexed _week, address indexed _gauge);
  event Listed(address _token);
  event Unlisted(address _token);
  event UpdatedFee(uint256 _feeAmount);
  event ModifiedTeam(address _member, bool _approval);
  event UpdatedDistributor(address _distributor);

}

File 1 of 7: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 3 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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 4 of 7: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 5 of 7: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
/**
 * @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.
 */
abstract contract Ownable is Context {

	  address private _owner = 0x3A84A0517F3175c0F84ac98DDF5045418D751fdd; // opti safe


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


    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 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;
    }
}

File 6 of 7: SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Address.sol";

/**
 * @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 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'
        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) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _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
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_token","type":"address"}],"name":"Listed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_member","type":"address"},{"indexed":false,"internalType":"bool","name":"_approval","type":"bool"}],"name":"ModifiedTeam","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_week","type":"uint256"},{"indexed":true,"internalType":"address","name":"_gauge","type":"address"}],"name":"NewReward","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":false,"internalType":"address","name":"_token","type":"address"}],"name":"Unlisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_distributor","type":"address"}],"name":"UpdatedDistributor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_feeAmount","type":"uint256"}],"name":"UpdatedFee","type":"event"},{"inputs":[],"name":"DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvedTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_week","type":"uint256"},{"internalType":"address","name":"_gauge","type":"address"}],"name":"depositReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"listToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"}],"name":"listTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"},{"internalType":"bool","name":"_approval","type":"bool"}],"name":"modifyTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platformFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"unlistToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_distributor","type":"address"}],"name":"updateDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"updateFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeAmount","type":"uint256"}],"name":"updateFeeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"week","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600080546001600160a01b0319908116733a84a0517f3175c0f84ac98ddf5045418d751fdd1790915560038054909116735f9f852d3b04c22a43b44eac364c91252882c7e817905560c860045534801561005d57600080fd5b50336000908152600260205260408120805460ff19908116600190811790925573540815b1892f888875e800d2f7027cecf883496a9092527f5bd3971b83822a96c08d48dc95259a7ebb64eef675a98659a0c3310a63ba28f5805490921617905561100c806100cd6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80639ea55bb0116100a2578063ac0679a611610071578063ac0679a614610230578063bbcaac3814610243578063bc30a61814610256578063bfe1092814610269578063f2fde38b1461027c57600080fd5b80639ea55bb0146101d45780639fb99fc3146101e7578063a7ab30e1146101fa578063abcb99341461021d57600080fd5b80634995b458116100de5780634995b4581461017f5780638da5cb5b146101875780638f3b80b214610198578063918f8674146101cb57600080fd5b80630d2f4f31146101105780631fc1e25f1461012557806326232a2e146101385780634127535814610154575b600080fd5b61012361011e366004610d00565b61028f565b005b610123610133366004610cae565b6104a3565b61014160045481565b6040519081526020015b60405180910390f35b600354610167906001600160a01b031681565b6040516001600160a01b03909116815260200161014b565b61014161054f565b6000546001600160a01b0316610167565b6101bb6101a6366004610cae565b60026020526000908152604090205460ff1681565b604051901515815260200161014b565b61014161271081565b6101236101e2366004610e2f565b610563565b6101236101f5366004610d46565b6105fd565b6101bb610208366004610cae565b60016020526000908152604090205460ff1681565b61012361022b366004610cae565b610722565b61012361023e366004610cc9565b61079d565b610123610251366004610cae565b61082a565b610123610264366004610cae565b610876565b600554610167906001600160a01b031681565b61012361028a366004610cae565b6108ee565b6001600160a01b03841660009081526001602081905260409091205460ff161515146102f35760405162461bcd60e51b815260206004820152600e60248201526d1d1bdad95b881d5b9b1a5cdd195960921b60448201526064015b60405180910390fd5b6102fb61054f565b82116103385760405162461bcd60e51b815260206004820152600c60248201526b1dd9595ac8195e1c1a5c995960a21b60448201526064016102ea565b61034061054f565b61034b906007610ecc565b82106103995760405162461bcd60e51b815260206004820152601760248201527f6d6f7265207468616e2036207765656b7320616865616400000000000000000060448201526064016102ea565b6005546001600160a01b03166103e75760405162461bcd60e51b8152602060048201526013602482015272191a5cdd1c9a589d5d1bdc881b9bdd081cd95d606a1b60448201526064016102ea565b6000612710600454856103fa9190610f06565b6104049190610ee4565b905060006104128286610f25565b600354909150610431906001600160a01b0388811691339116856109d8565b60055461044d906001600160a01b0388811691339116846109d8565b826001600160a01b031684876001600160a01b03167f51c8cd367a987b8c2f652c101ea7076ec8e4dfd33c4c77bb80e018e7143b65128460405161049391815260200190565b60405180910390a4505050505050565b3360009081526002602052604090205460ff1615156001146104f35760405162461bcd60e51b81526020600482015260096024820152685465616d206f6e6c7960b81b60448201526064016102ea565b6001600160a01b038116600081815260016020818152604092839020805460ff191690921790915590519182527ffb3fdb4942f7aa0b8ecdf8508875e7f6c8142bb7870f0455b87a9f093608bc8291015b60405180910390a150565b600061055e62093a8042610ee4565b905090565b6000546001600160a01b0316331461058d5760405162461bcd60e51b81526004016102ea90610e97565b61019081106105c85760405162461bcd60e51b81526020600482015260076024820152666d61782066656560c81b60448201526064016102ea565b60048190556040518181527f545f541f608330014315921189568bf5b2266925f757d74e5ad89ae1d2d6438c90602001610544565b3360009081526002602052604090205460ff16151560011461064d5760405162461bcd60e51b81526020600482015260096024820152685465616d206f6e6c7960b81b60448201526064016102ea565b60005b815181101561071e57600180600084848151811061067057610670610f99565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507ffb3fdb4942f7aa0b8ecdf8508875e7f6c8142bb7870f0455b87a9f093608bc828282815181106106e2576106e2610f99565b602002602001015160405161070691906001600160a01b0391909116815260200190565b60405180910390a161071781610f68565b9050610650565b5050565b6000546001600160a01b0316331461074c5760405162461bcd60e51b81526004016102ea90610e97565b6001600160a01b038116600081815260016020908152604091829020805460ff1916905590519182527fc48322c2e165c864176005884983dd81c87a9fc8258ca6a1967d17b26cd8d0e39101610544565b6000546001600160a01b031633146107c75760405162461bcd60e51b81526004016102ea90610e97565b6001600160a01b038216600081815260026020908152604091829020805460ff19168515159081179091558251938452908301527fae0b47afe292832708082f706affd0f37c4a556bd6dbeafe9b6a8562251c5a40910160405180910390a15050565b6000546001600160a01b031633146108545760405162461bcd60e51b81526004016102ea90610e97565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146108a05760405162461bcd60e51b81526004016102ea90610e97565b600580546001600160a01b0319166001600160a01b0383169081179091556040519081527f9941240ae138e71bb3f963c4f6fd96e99fb386a8e63563343f9294902bdbf74490602001610544565b6000546001600160a01b031633146109185760405162461bcd60e51b81526004016102ea90610e97565b6001600160a01b03811661097d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102ea565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610a32908590610a38565b50505050565b6000610a8d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b0f9092919063ffffffff16565b805190915015610b0a5780806020019051810190610aab9190610e12565b610b0a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102ea565b505050565b6060610b1e8484600085610b28565b90505b9392505050565b606082471015610b895760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102ea565b6001600160a01b0385163b610be05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102ea565b600080866001600160a01b03168587604051610bfc9190610e48565b60006040518083038185875af1925050503d8060008114610c39576040519150601f19603f3d011682016040523d82523d6000602084013e610c3e565b606091505b5091509150610c4e828286610c59565b979650505050505050565b60608315610c68575081610b21565b825115610c785782518084602001fd5b8160405162461bcd60e51b81526004016102ea9190610e64565b80356001600160a01b0381168114610ca957600080fd5b919050565b600060208284031215610cc057600080fd5b610b2182610c92565b60008060408385031215610cdc57600080fd5b610ce583610c92565b91506020830135610cf581610fc5565b809150509250929050565b60008060008060808587031215610d1657600080fd5b610d1f85610c92565b93506020850135925060408501359150610d3b60608601610c92565b905092959194509250565b60006020808385031215610d5957600080fd5b823567ffffffffffffffff80821115610d7157600080fd5b818501915085601f830112610d8557600080fd5b813581811115610d9757610d97610faf565b8060051b604051601f19603f83011681018181108582111715610dbc57610dbc610faf565b604052828152858101935084860182860187018a1015610ddb57600080fd5b600095505b83861015610e0557610df181610c92565b855260019590950194938601938601610de0565b5098975050505050505050565b600060208284031215610e2457600080fd5b8151610b2181610fc5565b600060208284031215610e4157600080fd5b5035919050565b60008251610e5a818460208701610f3c565b9190910192915050565b6020815260008251806020840152610e83816040850160208701610f3c565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610edf57610edf610f83565b500190565b600082610f0157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610f2057610f20610f83565b500290565b600082821015610f3757610f37610f83565b500390565b60005b83811015610f57578181015183820152602001610f3f565b83811115610a325750506000910152565b6000600019821415610f7c57610f7c610f83565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610fd357600080fd5b5056fea2646970667358221220efd63ad2cc9a3526862d0fa60fe1809ca2c9a7906635150e0c87d148ae50a60264736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80639ea55bb0116100a2578063ac0679a611610071578063ac0679a614610230578063bbcaac3814610243578063bc30a61814610256578063bfe1092814610269578063f2fde38b1461027c57600080fd5b80639ea55bb0146101d45780639fb99fc3146101e7578063a7ab30e1146101fa578063abcb99341461021d57600080fd5b80634995b458116100de5780634995b4581461017f5780638da5cb5b146101875780638f3b80b214610198578063918f8674146101cb57600080fd5b80630d2f4f31146101105780631fc1e25f1461012557806326232a2e146101385780634127535814610154575b600080fd5b61012361011e366004610d00565b61028f565b005b610123610133366004610cae565b6104a3565b61014160045481565b6040519081526020015b60405180910390f35b600354610167906001600160a01b031681565b6040516001600160a01b03909116815260200161014b565b61014161054f565b6000546001600160a01b0316610167565b6101bb6101a6366004610cae565b60026020526000908152604090205460ff1681565b604051901515815260200161014b565b61014161271081565b6101236101e2366004610e2f565b610563565b6101236101f5366004610d46565b6105fd565b6101bb610208366004610cae565b60016020526000908152604090205460ff1681565b61012361022b366004610cae565b610722565b61012361023e366004610cc9565b61079d565b610123610251366004610cae565b61082a565b610123610264366004610cae565b610876565b600554610167906001600160a01b031681565b61012361028a366004610cae565b6108ee565b6001600160a01b03841660009081526001602081905260409091205460ff161515146102f35760405162461bcd60e51b815260206004820152600e60248201526d1d1bdad95b881d5b9b1a5cdd195960921b60448201526064015b60405180910390fd5b6102fb61054f565b82116103385760405162461bcd60e51b815260206004820152600c60248201526b1dd9595ac8195e1c1a5c995960a21b60448201526064016102ea565b61034061054f565b61034b906007610ecc565b82106103995760405162461bcd60e51b815260206004820152601760248201527f6d6f7265207468616e2036207765656b7320616865616400000000000000000060448201526064016102ea565b6005546001600160a01b03166103e75760405162461bcd60e51b8152602060048201526013602482015272191a5cdd1c9a589d5d1bdc881b9bdd081cd95d606a1b60448201526064016102ea565b6000612710600454856103fa9190610f06565b6104049190610ee4565b905060006104128286610f25565b600354909150610431906001600160a01b0388811691339116856109d8565b60055461044d906001600160a01b0388811691339116846109d8565b826001600160a01b031684876001600160a01b03167f51c8cd367a987b8c2f652c101ea7076ec8e4dfd33c4c77bb80e018e7143b65128460405161049391815260200190565b60405180910390a4505050505050565b3360009081526002602052604090205460ff1615156001146104f35760405162461bcd60e51b81526020600482015260096024820152685465616d206f6e6c7960b81b60448201526064016102ea565b6001600160a01b038116600081815260016020818152604092839020805460ff191690921790915590519182527ffb3fdb4942f7aa0b8ecdf8508875e7f6c8142bb7870f0455b87a9f093608bc8291015b60405180910390a150565b600061055e62093a8042610ee4565b905090565b6000546001600160a01b0316331461058d5760405162461bcd60e51b81526004016102ea90610e97565b61019081106105c85760405162461bcd60e51b81526020600482015260076024820152666d61782066656560c81b60448201526064016102ea565b60048190556040518181527f545f541f608330014315921189568bf5b2266925f757d74e5ad89ae1d2d6438c90602001610544565b3360009081526002602052604090205460ff16151560011461064d5760405162461bcd60e51b81526020600482015260096024820152685465616d206f6e6c7960b81b60448201526064016102ea565b60005b815181101561071e57600180600084848151811061067057610670610f99565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507ffb3fdb4942f7aa0b8ecdf8508875e7f6c8142bb7870f0455b87a9f093608bc828282815181106106e2576106e2610f99565b602002602001015160405161070691906001600160a01b0391909116815260200190565b60405180910390a161071781610f68565b9050610650565b5050565b6000546001600160a01b0316331461074c5760405162461bcd60e51b81526004016102ea90610e97565b6001600160a01b038116600081815260016020908152604091829020805460ff1916905590519182527fc48322c2e165c864176005884983dd81c87a9fc8258ca6a1967d17b26cd8d0e39101610544565b6000546001600160a01b031633146107c75760405162461bcd60e51b81526004016102ea90610e97565b6001600160a01b038216600081815260026020908152604091829020805460ff19168515159081179091558251938452908301527fae0b47afe292832708082f706affd0f37c4a556bd6dbeafe9b6a8562251c5a40910160405180910390a15050565b6000546001600160a01b031633146108545760405162461bcd60e51b81526004016102ea90610e97565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146108a05760405162461bcd60e51b81526004016102ea90610e97565b600580546001600160a01b0319166001600160a01b0383169081179091556040519081527f9941240ae138e71bb3f963c4f6fd96e99fb386a8e63563343f9294902bdbf74490602001610544565b6000546001600160a01b031633146109185760405162461bcd60e51b81526004016102ea90610e97565b6001600160a01b03811661097d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102ea565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610a32908590610a38565b50505050565b6000610a8d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b0f9092919063ffffffff16565b805190915015610b0a5780806020019051810190610aab9190610e12565b610b0a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102ea565b505050565b6060610b1e8484600085610b28565b90505b9392505050565b606082471015610b895760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102ea565b6001600160a01b0385163b610be05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102ea565b600080866001600160a01b03168587604051610bfc9190610e48565b60006040518083038185875af1925050503d8060008114610c39576040519150601f19603f3d011682016040523d82523d6000602084013e610c3e565b606091505b5091509150610c4e828286610c59565b979650505050505050565b60608315610c68575081610b21565b825115610c785782518084602001fd5b8160405162461bcd60e51b81526004016102ea9190610e64565b80356001600160a01b0381168114610ca957600080fd5b919050565b600060208284031215610cc057600080fd5b610b2182610c92565b60008060408385031215610cdc57600080fd5b610ce583610c92565b91506020830135610cf581610fc5565b809150509250929050565b60008060008060808587031215610d1657600080fd5b610d1f85610c92565b93506020850135925060408501359150610d3b60608601610c92565b905092959194509250565b60006020808385031215610d5957600080fd5b823567ffffffffffffffff80821115610d7157600080fd5b818501915085601f830112610d8557600080fd5b813581811115610d9757610d97610faf565b8060051b604051601f19603f83011681018181108582111715610dbc57610dbc610faf565b604052828152858101935084860182860187018a1015610ddb57600080fd5b600095505b83861015610e0557610df181610c92565b855260019590950194938601938601610de0565b5098975050505050505050565b600060208284031215610e2457600080fd5b8151610b2181610fc5565b600060208284031215610e4157600080fd5b5035919050565b60008251610e5a818460208701610f3c565b9190910192915050565b6020815260008251806020840152610e83816040850160208701610f3c565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610edf57610edf610f83565b500190565b600082610f0157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610f2057610f20610f83565b500290565b600082821015610f3757610f37610f83565b500390565b60005b83811015610f57578181015183820152602001610f3f565b83811115610a325750506000910152565b6000600019821415610f7c57610f7c610f83565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610fd357600080fd5b5056fea2646970667358221220efd63ad2cc9a3526862d0fa60fe1809ca2c9a7906635150e0c87d148ae50a60264736f6c63430008070033

Deployed ByteCode Sourcemap

181:3652:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1009:799;;;;;;:::i;:::-;;:::i;:::-;;2002:111;;;;;;:::i;:::-;;:::i;588:32::-;;;;;;;;;8559:25:7;;;8547:2;8532:18;588:32:6;;;;;;;;487:70;;;;;-1:-1:-1;;;;;487:70:6;;;;;;-1:-1:-1;;;;;3120:32:7;;;3102:51;;3090:2;3075:18;487:70:6;2956:203:7;1836:89:6;;;:::i;869:85:4:-;915:7;941:6;-1:-1:-1;;;;;941:6:4;869:85;;372:44:6;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3998:14:7;;3991:22;3973:41;;3961:2;3946:18;372:44:6;3833:187:7;642:43:6;;680:5;642:43;;2948:183;;;;;;:::i;:::-;;:::i;2143:180::-;;;;;;:::i;:::-;;:::i;300:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2396:117;;;;;;:::i;:::-;;:::i;3182:155::-;;;;;;:::i;:::-;;:::i;2541:98::-;;;;;;:::i;:::-;;:::i;2681:240::-;;;;;;:::i;:::-;;:::i;727:26::-;;;;;-1:-1:-1;;;;;727:26:6;;;1307:240:4;;;;;;:::i;:::-;;:::i;1009:799:6:-;-1:-1:-1;;;;;1117:19:6;;;;;;:11;:19;;;;;;;;;;;:27;;;1109:54;;;;-1:-1:-1;;;1109:54:6;;6129:2:7;1109:54:6;;;6111:21:7;6168:2;6148:18;;;6141:30;-1:-1:-1;;;6187:18:7;;;6180:44;6241:18;;1109:54:6;;;;;;;;;1185:6;:4;:6::i;:::-;1177:5;:14;1169:39;;;;-1:-1:-1;;;1169:39:6;;6833:2:7;1169:39:6;;;6815:21:7;6872:2;6852:18;;;6845:30;-1:-1:-1;;;6891:18:7;;;6884:42;6943:18;;1169:39:6;6631:336:7;1169:39:6;1274:6;:4;:6::i;:::-;:8;;1281:1;1274:8;:::i;:::-;1266:5;:16;1258:52;;;;-1:-1:-1;;;1258:52:6;;5022:2:7;1258:52:6;;;5004:21:7;5061:2;5041:18;;;5034:30;5100:25;5080:18;;;5073:53;5143:18;;1258:52:6;4820:347:7;1258:52:6;1369:11;;-1:-1:-1;;;;;1369:11:6;1361:57;;;;-1:-1:-1;;;1361:57:6;;5374:2:7;1361:57:6;;;5356:21:7;5413:2;5393:18;;;5386:30;-1:-1:-1;;;5432:18:7;;;5425:49;5491:18;;1361:57:6;5172:343:7;1361:57:6;1467:11;680:5;1489:11;;1481:7;:19;;;;:::i;:::-;:31;;;;:::i;:::-;1467:45;-1:-1:-1;1518:19:6;1540:11;1467:45;1540:7;:11;:::i;:::-;1601:10;;1518:33;;-1:-1:-1;1557:60:6;;-1:-1:-1;;;;;1557:31:6;;;;1589:10;;1601;1613:3;1557:31;:60::i;:::-;1694:11;;1650:69;;-1:-1:-1;;;;;1650:31:6;;;;1682:10;;1694:11;1707;1650:31;:69::i;:::-;1796:6;-1:-1:-1;;;;;1758:45:6;1789:5;1768:6;-1:-1:-1;;;;;1758:45:6;;1776:11;1758:45;;;;8559:25:7;;8547:2;8532:18;;8413:177;1758:45:6;;;;;;;;1103:705;;1009:799;;;;:::o;2002:111::-;3429:10;3416:24;;;;:12;:24;;;;;;;;:32;;:24;:32;3408:54;;;;-1:-1:-1;;;3408:54:6;;7867:2:7;3408:54:6;;;7849:21:7;7906:1;7886:18;;;7879:29;-1:-1:-1;;;7924:18:7;;;7917:39;7973:18;;3408:54:6;7665:332:7;3408:54:6;-1:-1:-1;;;;;2058:19:6;::::1;;::::0;;;2080:4:::1;2058:19;::::0;;;;;;;;:26;;-1:-1:-1;;2058:26:6::1;::::0;;::::1;::::0;;;2094:14;;3102:51:7;;;2094:14:6::1;::::0;3075:18:7;2094:14:6::1;;;;;;;;2002:111:::0;:::o;1836:89::-;1873:7;1895:25;1912:7;1895:15;:25;:::i;:::-;1888:32;;1836:89;:::o;2948:183::-;915:7:4;941:6;-1:-1:-1;;;;;941:6:4;719:10:1;1081:23:4;1073:68;;;;-1:-1:-1;;;1073:68:4;;;;;;;:::i;:::-;3036:3:6::1;3023:10;:16;3015:36;;;::::0;-1:-1:-1;;;3015:36:6;;7174:2:7;3015:36:6::1;::::0;::::1;7156:21:7::0;7213:1;7193:18;;;7186:29;-1:-1:-1;;;7231:18:7;;;7224:37;7278:18;;3015:36:6::1;6972:330:7::0;3015:36:6::1;3070:11;:24:::0;;;3104:22:::1;::::0;8559:25:7;;;3104:22:6::1;::::0;8547:2:7;8532:18;3104:22:6::1;8413:177:7::0;2143:180:6;3429:10;3416:24;;;;:12;:24;;;;;;;;:32;;:24;:32;3408:54;;;;-1:-1:-1;;;3408:54:6;;7867:2:7;3408:54:6;;;7849:21:7;7906:1;7886:18;;;7879:29;-1:-1:-1;;;7924:18:7;;;7917:39;7973:18;;3408:54:6;7665:332:7;3408:54:6;2214:9:::1;2210:109;2228:7;:14;2226:1;:16;2210:109;;;2280:4;2254:11:::0;:23:::1;2266:7;2274:1;2266:10;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2254:23:6::1;-1:-1:-1::0;;;;;2254:23:6::1;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;2295:18;2302:7;2310:1;2302:10;;;;;;;;:::i;:::-;;;;;;;2295:18;;;;;-1:-1:-1::0;;;;;3120:32:7;;;;3102:51;;3090:2;3075:18;;2956:203;2295:18:6::1;;;;;;;;2243:3;::::0;::::1;:::i;:::-;;;2210:109;;;;2143:180:::0;:::o;2396:117::-;915:7:4;941:6;-1:-1:-1;;;;;941:6:4;719:10:1;1081:23:4;1073:68;;;;-1:-1:-1;;;1073:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;2455:19:6;::::1;2477:5;2455:19:::0;;;:11:::1;:19;::::0;;;;;;;;:27;;-1:-1:-1;;2455:27:6::1;::::0;;2492:16;;3102:51:7;;;2492:16:6::1;::::0;3075:18:7;2492:16:6::1;2956:203:7::0;3182:155:6;915:7:4;941:6;-1:-1:-1;;;;;941:6:4;719:10:1;1081:23:4;1073:68;;;;-1:-1:-1;;;1073:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;3257:21:6;::::1;;::::0;;;:12:::1;:21;::::0;;;;;;;;:33;;-1:-1:-1;;3257:33:6::1;::::0;::::1;;::::0;;::::1;::::0;;;3300:32;;3712:51:7;;;3779:18;;;3772:50;3300:32:6::1;::::0;3685:18:7;3300:32:6::1;;;;;;;3182:155:::0;;:::o;2541:98::-;915:7:4;941:6;-1:-1:-1;;;;;941:6:4;719:10:1;1081:23:4;1073:68;;;;-1:-1:-1;;;1073:68:4;;;;;;;:::i;:::-;2610:10:6::1;:24:::0;;-1:-1:-1;;;;;;2610:24:6::1;-1:-1:-1::0;;;;;2610:24:6;;;::::1;::::0;;;::::1;::::0;;2541:98::o;2681:240::-;915:7:4;941:6;-1:-1:-1;;;;;941:6:4;719:10:1;1081:23:4;1073:68;;;;-1:-1:-1;;;1073:68:4;;;;;;;:::i;:::-;2848:11:6::1;:26:::0;;-1:-1:-1;;;;;;2848:26:6::1;-1:-1:-1::0;;;;;2848:26:6;::::1;::::0;;::::1;::::0;;;2884:32:::1;::::0;3102:51:7;;;2884:32:6::1;::::0;3090:2:7;3075:18;2884:32:6::1;2956:203:7::0;1307:240:4;915:7;941:6;-1:-1:-1;;;;;941:6:4;719:10:1;1081:23:4;1073:68;;;;-1:-1:-1;;;1073:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;1395:22:4;::::1;1387:73;;;::::0;-1:-1:-1;;;1387:73:4;;4615:2:7;1387:73:4::1;::::0;::::1;4597:21:7::0;4654:2;4634:18;;;4627:30;4693:34;4673:18;;;4666:62;-1:-1:-1;;;4744:18:7;;;4737:36;4790:19;;1387:73:4::1;4413:402:7::0;1387:73:4::1;1496:6;::::0;;1475:38:::1;::::0;-1:-1:-1;;;;;1475:38:4;;::::1;::::0;1496:6;::::1;::::0;1475:38:::1;::::0;::::1;1523:6;:17:::0;;-1:-1:-1;;;;;;1523:17:4::1;-1:-1:-1::0;;;;;1523:17:4;;;::::1;::::0;;;::::1;::::0;;1307:240::o;898:241:5:-;1063:68;;;-1:-1:-1;;;;;3422:15:7;;;1063:68:5;;;3404:34:7;3474:15;;3454:18;;;3447:43;3506:18;;;;3499:34;;;1063:68:5;;;;;;;;;;3339:18:7;;;;1063:68:5;;;;;;;;-1:-1:-1;;;;;1063:68:5;-1:-1:-1;;;1063:68:5;;;1036:96;;1056:5;;1036:19;:96::i;:::-;898:241;;;;:::o;3193:706::-;3612:23;3638:69;3666:4;3638:69;;;;;;;;;;;;;;;;;3646:5;-1:-1:-1;;;;;3638:27:5;;;:69;;;;;:::i;:::-;3721:17;;3612:95;;-1:-1:-1;3721:21:5;3717:176;;3816:10;3805:30;;;;;;;;;;;;:::i;:::-;3797:85;;;;-1:-1:-1;;;3797:85:5;;8204:2:7;3797:85:5;;;8186:21:7;8243:2;8223:18;;;8216:30;8282:34;8262:18;;;8255:62;-1:-1:-1;;;8333:18:7;;;8326:40;8383:19;;3797:85:5;8002:406:7;3797:85:5;3263:636;3193:706;;:::o;3861:223:0:-;3994:12;4025:52;4047:6;4055:4;4061:1;4064:12;4025:21;:52::i;:::-;4018:59;;3861:223;;;;;;:::o;4948:499::-;5113:12;5170:5;5145:21;:30;;5137:81;;;;-1:-1:-1;;;5137:81:0;;5722:2:7;5137:81:0;;;5704:21:7;5761:2;5741:18;;;5734:30;5800:34;5780:18;;;5773:62;-1:-1:-1;;;5851:18:7;;;5844:36;5897:19;;5137:81:0;5520:402:7;5137:81:0;-1:-1:-1;;;;;1465:19:0;;;5228:60;;;;-1:-1:-1;;;5228:60:0;;7509:2:7;5228:60:0;;;7491:21:7;7548:2;7528:18;;;7521:30;7587:31;7567:18;;;7560:59;7636:18;;5228:60:0;7307:353:7;5228:60:0;5300:12;5314:23;5341:6;-1:-1:-1;;;;;5341:11:0;5360:5;5367:4;5341:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:73;;;;5389:51;5406:7;5415:10;5427:12;5389:16;:51::i;:::-;5382:58;4948:499;-1:-1:-1;;;;;;;4948:499:0:o;7561:692::-;7707:12;7735:7;7731:516;;;-1:-1:-1;7765:10:0;7758:17;;7731:516;7876:17;;:21;7872:365;;8070:10;8064:17;8130:15;8117:10;8113:2;8109:19;8102:44;7872:365;8209:12;8202:20;;-1:-1:-1;;;8202:20:0;;;;;;;;:::i;14:173:7:-;82:20;;-1:-1:-1;;;;;131:31:7;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:315::-;448:6;456;509:2;497:9;488:7;484:23;480:32;477:52;;;525:1;522;515:12;477:52;548:29;567:9;548:29;:::i;:::-;538:39;;627:2;616:9;612:18;599:32;640:28;662:5;640:28;:::i;:::-;687:5;677:15;;;383:315;;;;;:::o;703:397::-;789:6;797;805;813;866:3;854:9;845:7;841:23;837:33;834:53;;;883:1;880;873:12;834:53;906:29;925:9;906:29;:::i;:::-;896:39;;982:2;971:9;967:18;954:32;944:42;;1033:2;1022:9;1018:18;1005:32;995:42;;1056:38;1090:2;1079:9;1075:18;1056:38;:::i;:::-;1046:48;;703:397;;;;;;;:::o;1105:1132::-;1189:6;1220:2;1263;1251:9;1242:7;1238:23;1234:32;1231:52;;;1279:1;1276;1269:12;1231:52;1319:9;1306:23;1348:18;1389:2;1381:6;1378:14;1375:34;;;1405:1;1402;1395:12;1375:34;1443:6;1432:9;1428:22;1418:32;;1488:7;1481:4;1477:2;1473:13;1469:27;1459:55;;1510:1;1507;1500:12;1459:55;1546:2;1533:16;1568:2;1564;1561:10;1558:36;;;1574:18;;:::i;:::-;1620:2;1617:1;1613:10;1652:2;1646:9;1715:2;1711:7;1706:2;1702;1698:11;1694:25;1686:6;1682:38;1770:6;1758:10;1755:22;1750:2;1738:10;1735:18;1732:46;1729:72;;;1781:18;;:::i;:::-;1817:2;1810:22;1867:18;;;1901:15;;;;-1:-1:-1;1936:11:7;;;1966;;;1962:20;;1959:33;-1:-1:-1;1956:53:7;;;2005:1;2002;1995:12;1956:53;2027:1;2018:10;;2037:169;2051:2;2048:1;2045:9;2037:169;;;2108:23;2127:3;2108:23;:::i;:::-;2096:36;;2069:1;2062:9;;;;;2152:12;;;;2184;;2037:169;;;-1:-1:-1;2225:6:7;1105:1132;-1:-1:-1;;;;;;;;1105:1132:7:o;2242:245::-;2309:6;2362:2;2350:9;2341:7;2337:23;2333:32;2330:52;;;2378:1;2375;2368:12;2330:52;2410:9;2404:16;2429:28;2451:5;2429:28;:::i;2492:180::-;2551:6;2604:2;2592:9;2583:7;2579:23;2575:32;2572:52;;;2620:1;2617;2610:12;2572:52;-1:-1:-1;2643:23:7;;2492:180;-1:-1:-1;2492:180:7:o;2677:274::-;2806:3;2844:6;2838:13;2860:53;2906:6;2901:3;2894:4;2886:6;2882:17;2860:53;:::i;:::-;2929:16;;;;;2677:274;-1:-1:-1;;2677:274:7:o;4025:383::-;4174:2;4163:9;4156:21;4137:4;4206:6;4200:13;4249:6;4244:2;4233:9;4229:18;4222:34;4265:66;4324:6;4319:2;4308:9;4304:18;4299:2;4291:6;4287:15;4265:66;:::i;:::-;4392:2;4371:15;-1:-1:-1;;4367:29:7;4352:45;;;;4399:2;4348:54;;4025:383;-1:-1:-1;;4025:383:7:o;6270:356::-;6472:2;6454:21;;;6491:18;;;6484:30;6550:34;6545:2;6530:18;;6523:62;6617:2;6602:18;;6270:356::o;8595:128::-;8635:3;8666:1;8662:6;8659:1;8656:13;8653:39;;;8672:18;;:::i;:::-;-1:-1:-1;8708:9:7;;8595:128::o;8728:217::-;8768:1;8794;8784:132;;8838:10;8833:3;8829:20;8826:1;8819:31;8873:4;8870:1;8863:15;8901:4;8898:1;8891:15;8784:132;-1:-1:-1;8930:9:7;;8728:217::o;8950:168::-;8990:7;9056:1;9052;9048:6;9044:14;9041:1;9038:21;9033:1;9026:9;9019:17;9015:45;9012:71;;;9063:18;;:::i;:::-;-1:-1:-1;9103:9:7;;8950:168::o;9123:125::-;9163:4;9191:1;9188;9185:8;9182:34;;;9196:18;;:::i;:::-;-1:-1:-1;9233:9:7;;9123:125::o;9253:258::-;9325:1;9335:113;9349:6;9346:1;9343:13;9335:113;;;9425:11;;;9419:18;9406:11;;;9399:39;9371:2;9364:10;9335:113;;;9466:6;9463:1;9460:13;9457:48;;;-1:-1:-1;;9501:1:7;9483:16;;9476:27;9253:258::o;9516:135::-;9555:3;-1:-1:-1;;9576:17:7;;9573:43;;;9596:18;;:::i;:::-;-1:-1:-1;9643:1:7;9632:13;;9516:135::o;9656:127::-;9717:10;9712:3;9708:20;9705:1;9698:31;9748:4;9745:1;9738:15;9772:4;9769:1;9762:15;9788:127;9849:10;9844:3;9840:20;9837:1;9830:31;9880:4;9877:1;9870:15;9904:4;9901:1;9894:15;9920:127;9981:10;9976:3;9972:20;9969:1;9962:31;10012:4;10009:1;10002:15;10036:4;10033:1;10026:15;10052:118;10138:5;10131:13;10124:21;10117:5;10114:32;10104:60;;10160:1;10157;10150:12;10104:60;10052:118;:::o

Swarm Source

ipfs://efd63ad2cc9a3526862d0fa60fe1809ca2c9a7906635150e0c87d148ae50a602
Block Transaction Difficulty Gas Used Reward
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.