S Price: $0.592325 (-20.79%)

Token

Fear Shares (FEAR)

Overview

Max Total Supply

30,010 FEAR

Holders

6

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 FEAR

Value
$0.00
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Fear

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-03-01
*/

/**
 *Submitted for verification at testnet.bscscan.com on 2025-03-01
*/

// File contracts/Fear.sol


// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


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

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.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.
 */
abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



pragma solidity ^0.8.0;


contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(address indexed previousOperator, address indexed newOperator);

    constructor() {
        _operator = _msgSender();
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(_operator == msg.sender, "operator: caller is not the operator");
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(newOperator_ != address(0), "operator: zero address given for new operator");
        emit OperatorTransferred(address(0), newOperator_);
        _operator = newOperator_;
    }

    function _renounceOperator() public onlyOwner {
        emit OperatorTransferred(_operator, address(0));
        _operator = address(0);
    }
}



pragma solidity ^0.8.0;


contract Fear is ERC20Burnable, Operator {
    using SafeMath for uint256;

    // TOTAL MAX SUPPLY = 60,000 FEAR
    uint256 public constant FARMING_POOL_REWARD_ALLOCATION = 30000 ether;
    uint256 public constant DEV_FUND_POOL_ALLOCATION = 6000 ether;

    uint256 public constant VESTING_DURATION = 730 days;
    uint256 public startTime;
    uint256 public endTime;

    uint256 public devFundRewardRate;

    address public devFund;

    uint256 public devFundLastClaimed;

    bool public rewardPoolDistributed = false;

    constructor(uint256 _startTime,  address _devFund)  ERC20("Fear Shares", "FEAR") {
        _mint(msg.sender, 10 ether); // mint 10 CANYON Share for initial pools deployment

        startTime = _startTime;
        endTime = startTime + VESTING_DURATION;

        devFundLastClaimed = startTime;

        devFundRewardRate = DEV_FUND_POOL_ALLOCATION.div(VESTING_DURATION);

        require(_devFund != address(0), "Address cannot be 0");
        devFund = _devFund;

      
    }

    function setDevFund(address _devFund) external {
        require(msg.sender == devFund, "!dev");
        require(_devFund != address(0), "zero");
        devFund = _devFund;
    }

  
    function unclaimedDevFund() public view returns (uint256 _pending) {
        uint256 _now = block.timestamp;
        if (_now > endTime) _now = endTime;
        if (devFundLastClaimed >= _now) return 0;
        _pending = _now.sub(devFundLastClaimed).mul(devFundRewardRate);
    }

    /**
     * @dev Claim pending rewards to Community and  dev fund
     */
    function claimRewards() external {
        uint256 _pending = unclaimedDevFund();

        if (_pending > 0 && devFund != address(0)) {
            _mint(devFund, _pending);
            devFundLastClaimed = block.timestamp;
        }
    }

    /**
     * @notice distribute to reward pool (only once)
     */
    function distributeReward(address _farmingIncentiveFund) external onlyOperator {
        require(!rewardPoolDistributed, "only can distribute once");
        rewardPoolDistributed = true;
        _mint(_farmingIncentiveFund, FARMING_POOL_REWARD_ALLOCATION);
    }

    function burn(uint256 amount) public override {
        super.burn(amount);
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOperator {
        _token.transfer(_to, _amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"address","name":"_devFund","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEV_FUND_POOL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FARMING_POOL_REWARD_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundLastClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_farmingIncentiveFund","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_devFund","type":"address"}],"name":"setDevFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclaimedDevFund","outputs":[{"internalType":"uint256","name":"_pending","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600c805460ff19169055348015610019575f5ffd5b50604051611774380380611774833981016040819052610038916102e2565b6040518060400160405280600b81526020016a466561722053686172657360a81b815250604051806040016040528060048152602001632322a0a960e11b815250816003908161008891906103b3565b50600461009582826103b3565b5050506100ae6100a96101b760201b60201c565b6101bb565b600680546001600160a01b031916339081179091556040515f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36100ff33678ac7230489e8000061020c565b60078290556101126303c267008361046d565b600855600754600b5561013369014542ba12a337c000006303c267006102c9565b6009556001600160a01b0381166101915760405162461bcd60e51b815260206004820152601360248201527f416464726573732063616e6e6f7420626520300000000000000000000000000060448201526064015b60405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055506104ab565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166102625760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610188565b8060025f828254610273919061046d565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f6102d4828461048c565b90505b92915050565b505050565b5f5f604083850312156102f3575f5ffd5b825160208401519092506001600160a01b0381168114610311575f5ffd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061034457607f821691505b60208210810361036257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102dd57805f5260205f20601f840160051c8101602085101561038d5750805b601f840160051c820191505b818110156103ac575f8155600101610399565b5050505050565b81516001600160401b038111156103cc576103cc61031c565b6103e0816103da8454610330565b84610368565b6020601f821160018114610412575f83156103fb5750848201515b5f19600385901b1c1916600184901b1784556103ac565b5f84815260208120601f198516915b828110156104415787850151825560209485019460019092019101610421565b508482101561045e57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156102d757634e487b7160e01b5f52601160045260245ffd5b5f826104a657634e487b7160e01b5f52601260045260245ffd5b500490565b6112bc806104b85f395ff3fe608060405234801561000f575f5ffd5b50600436106101fd575f3560e01c80634f337dd5116101145780638da5cb5b116100a9578063a457c2d711610079578063a457c2d7146103f8578063a9059cbb1461040b578063ae4db9191461041e578063dd62ed3e14610431578063f2fde38b14610444575f5ffd5b80638da5cb5b146103c157806395d89b41146103d25780639662676c146103da578063a06160fd146103e7575f5ffd5b8063715018a6116100e4578063715018a61461039557806378e979251461039d57806379cc6790146103a65780638a27f103146103b9575f5ffd5b80634f337dd51461033857806354575af414610349578063570ca7351461035c57806370a082311461036d575f5ffd5b80632e3367ce11610195578063395093511161016557806339509351146102c957806342966c68146102dc5780634390d2a8146102ef5780634456eda21461031a5780634cfc4d301461032d575f5ffd5b80632e3367ce146102a0578063313ce567146102a95780633197cbb6146102b8578063372500ab146102c1575f5ffd5b806318160ddd116101d057806318160ddd1461026a57806323b872dd1461027257806329605e77146102855780632c07a62414610298575f5ffd5b8063040173151461020157806306fdde031461021d578063092193ab14610232578063095ea7b314610247575b5f5ffd5b61020a600b5481565b6040519081526020015b60405180910390f35b610225610457565b6040516102149190611041565b61024561024036600461108a565b6104e7565b005b61025a6102553660046110a5565b610591565b6040519015158152602001610214565b60025461020a565b61025a6102803660046110cf565b6105aa565b61024561029336600461108a565b6105cd565b61020a6105de565b61020a60095481565b60405160128152602001610214565b61020a60085481565b610245610628565b61025a6102d73660046110a5565b61066e565b6102456102ea36600461110d565b61068f565b600a54610302906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b6006546001600160a01b0316331461025a565b61020a6303c2670081565b61020a69014542ba12a337c0000081565b610245610357366004611124565b610698565b6006546001600160a01b0316610302565b61020a61037b36600461108a565b6001600160a01b03165f9081526020819052604090205490565b610245610738565b61020a60075481565b6102456103b43660046110a5565b61074b565b610245610764565b6005546001600160a01b0316610302565b6102256107b5565b600c5461025a9060ff1681565b61020a69065a4da25d3016c0000081565b61025a6104063660046110a5565b6107c4565b61025a6104193660046110a5565b61083e565b61024561042c36600461108a565b61084b565b61020a61043f366004611163565b6108ef565b61024561045236600461108a565b610919565b6060600380546104669061119a565b80601f01602080910402602001604051908101604052809291908181526020018280546104929061119a565b80156104dd5780601f106104b4576101008083540402835291602001916104dd565b820191905f5260205f20905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b6006546001600160a01b0316331461051a5760405162461bcd60e51b8152600401610511906111d2565b60405180910390fd5b600c5460ff161561056d5760405162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e636500000000000000006044820152606401610511565b600c805460ff1916600117905561058e8169065a4da25d3016c0000061098f565b50565b5f3361059e818585610a4c565b60019150505b92915050565b5f336105b7858285610b70565b6105c2858585610be2565b506001949350505050565b6105d5610d84565b61058e81610dde565b6008545f9042908111156105f157506008545b80600b5410610601575f91505090565b61062260095461061c600b5484610ea190919063ffffffff16565b90610eb3565b91505090565b5f6106316105de565b90505f8111801561064c5750600a546001600160a01b031615155b1561058e57600a54610667906001600160a01b03168261098f565b42600b5550565b5f3361059e81858561068083836108ef565b61068a919061122a565b610a4c565b61058e81610ebe565b6006546001600160a01b031633146106c25760405162461bcd60e51b8152600401610511906111d2565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af115801561070e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610732919061123d565b50505050565b610740610d84565b6107495f610ec8565b565b610756823383610b70565b6107608282610f19565b5050565b61076c610d84565b6006546040515f916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680546001600160a01b0319169055565b6060600480546104669061119a565b5f33816107d182866108ef565b9050838110156108315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610511565b6105c28286868403610a4c565b5f3361059e818585610be2565b600a546001600160a01b0316331461088e5760405162461bcd60e51b81526004016105119060208082526004908201526310b232bb60e11b604082015260600190565b6001600160a01b0381166108cd5760405162461bcd60e51b8152600401610511906020808252600490820152637a65726f60e01b604082015260600190565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610921610d84565b6001600160a01b0381166109865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610511565b61058e81610ec8565b6001600160a01b0382166109e55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610511565b8060025f8282546109f6919061122a565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610aae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610511565b6001600160a01b038216610b0f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610511565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610b7b84846108ef565b90505f1981146107325781811015610bd55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610511565b6107328484848403610a4c565b6001600160a01b038316610c465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610511565b6001600160a01b038216610ca85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610511565b6001600160a01b0383165f9081526020819052604090205481811015610d1f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610511565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610732565b6005546001600160a01b031633146107495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610511565b6001600160a01b038116610e4a5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b6064820152608401610511565b6040516001600160a01b038216905f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b5f610eac828461125c565b9392505050565b5f610eac828461126f565b61058e3382610f19565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216610f795760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610511565b6001600160a01b0382165f9081526020819052604090205481811015610fec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610511565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b63565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461058e575f5ffd5b5f6020828403121561109a575f5ffd5b8135610eac81611076565b5f5f604083850312156110b6575f5ffd5b82356110c181611076565b946020939093013593505050565b5f5f5f606084860312156110e1575f5ffd5b83356110ec81611076565b925060208401356110fc81611076565b929592945050506040919091013590565b5f6020828403121561111d575f5ffd5b5035919050565b5f5f5f60608486031215611136575f5ffd5b833561114181611076565b925060208401359150604084013561115881611076565b809150509250925092565b5f5f60408385031215611174575f5ffd5b823561117f81611076565b9150602083013561118f81611076565b809150509250929050565b600181811c908216806111ae57607f821691505b6020821081036111cc57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105a4576105a4611216565b5f6020828403121561124d575f5ffd5b81518015158114610eac575f5ffd5b818103818111156105a4576105a4611216565b80820281158282048414176105a4576105a461121656fea2646970667358221220541d514c2248b588dc801669a09cce12ddecc5453301441453799db3e4ad95e664736f6c634300081c00330000000000000000000000000000000000000000000000000000000067c42c23000000000000000000000000a99fa2707ec6fe5ab4b14c88431c40f1ff3b9a98

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106101fd575f3560e01c80634f337dd5116101145780638da5cb5b116100a9578063a457c2d711610079578063a457c2d7146103f8578063a9059cbb1461040b578063ae4db9191461041e578063dd62ed3e14610431578063f2fde38b14610444575f5ffd5b80638da5cb5b146103c157806395d89b41146103d25780639662676c146103da578063a06160fd146103e7575f5ffd5b8063715018a6116100e4578063715018a61461039557806378e979251461039d57806379cc6790146103a65780638a27f103146103b9575f5ffd5b80634f337dd51461033857806354575af414610349578063570ca7351461035c57806370a082311461036d575f5ffd5b80632e3367ce11610195578063395093511161016557806339509351146102c957806342966c68146102dc5780634390d2a8146102ef5780634456eda21461031a5780634cfc4d301461032d575f5ffd5b80632e3367ce146102a0578063313ce567146102a95780633197cbb6146102b8578063372500ab146102c1575f5ffd5b806318160ddd116101d057806318160ddd1461026a57806323b872dd1461027257806329605e77146102855780632c07a62414610298575f5ffd5b8063040173151461020157806306fdde031461021d578063092193ab14610232578063095ea7b314610247575b5f5ffd5b61020a600b5481565b6040519081526020015b60405180910390f35b610225610457565b6040516102149190611041565b61024561024036600461108a565b6104e7565b005b61025a6102553660046110a5565b610591565b6040519015158152602001610214565b60025461020a565b61025a6102803660046110cf565b6105aa565b61024561029336600461108a565b6105cd565b61020a6105de565b61020a60095481565b60405160128152602001610214565b61020a60085481565b610245610628565b61025a6102d73660046110a5565b61066e565b6102456102ea36600461110d565b61068f565b600a54610302906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b6006546001600160a01b0316331461025a565b61020a6303c2670081565b61020a69014542ba12a337c0000081565b610245610357366004611124565b610698565b6006546001600160a01b0316610302565b61020a61037b36600461108a565b6001600160a01b03165f9081526020819052604090205490565b610245610738565b61020a60075481565b6102456103b43660046110a5565b61074b565b610245610764565b6005546001600160a01b0316610302565b6102256107b5565b600c5461025a9060ff1681565b61020a69065a4da25d3016c0000081565b61025a6104063660046110a5565b6107c4565b61025a6104193660046110a5565b61083e565b61024561042c36600461108a565b61084b565b61020a61043f366004611163565b6108ef565b61024561045236600461108a565b610919565b6060600380546104669061119a565b80601f01602080910402602001604051908101604052809291908181526020018280546104929061119a565b80156104dd5780601f106104b4576101008083540402835291602001916104dd565b820191905f5260205f20905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b6006546001600160a01b0316331461051a5760405162461bcd60e51b8152600401610511906111d2565b60405180910390fd5b600c5460ff161561056d5760405162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e636500000000000000006044820152606401610511565b600c805460ff1916600117905561058e8169065a4da25d3016c0000061098f565b50565b5f3361059e818585610a4c565b60019150505b92915050565b5f336105b7858285610b70565b6105c2858585610be2565b506001949350505050565b6105d5610d84565b61058e81610dde565b6008545f9042908111156105f157506008545b80600b5410610601575f91505090565b61062260095461061c600b5484610ea190919063ffffffff16565b90610eb3565b91505090565b5f6106316105de565b90505f8111801561064c5750600a546001600160a01b031615155b1561058e57600a54610667906001600160a01b03168261098f565b42600b5550565b5f3361059e81858561068083836108ef565b61068a919061122a565b610a4c565b61058e81610ebe565b6006546001600160a01b031633146106c25760405162461bcd60e51b8152600401610511906111d2565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af115801561070e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610732919061123d565b50505050565b610740610d84565b6107495f610ec8565b565b610756823383610b70565b6107608282610f19565b5050565b61076c610d84565b6006546040515f916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680546001600160a01b0319169055565b6060600480546104669061119a565b5f33816107d182866108ef565b9050838110156108315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610511565b6105c28286868403610a4c565b5f3361059e818585610be2565b600a546001600160a01b0316331461088e5760405162461bcd60e51b81526004016105119060208082526004908201526310b232bb60e11b604082015260600190565b6001600160a01b0381166108cd5760405162461bcd60e51b8152600401610511906020808252600490820152637a65726f60e01b604082015260600190565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610921610d84565b6001600160a01b0381166109865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610511565b61058e81610ec8565b6001600160a01b0382166109e55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610511565b8060025f8282546109f6919061122a565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610aae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610511565b6001600160a01b038216610b0f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610511565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610b7b84846108ef565b90505f1981146107325781811015610bd55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610511565b6107328484848403610a4c565b6001600160a01b038316610c465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610511565b6001600160a01b038216610ca85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610511565b6001600160a01b0383165f9081526020819052604090205481811015610d1f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610511565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610732565b6005546001600160a01b031633146107495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610511565b6001600160a01b038116610e4a5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b6064820152608401610511565b6040516001600160a01b038216905f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b5f610eac828461125c565b9392505050565b5f610eac828461126f565b61058e3382610f19565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216610f795760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610511565b6001600160a01b0382165f9081526020819052604090205481811015610fec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610511565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b63565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461058e575f5ffd5b5f6020828403121561109a575f5ffd5b8135610eac81611076565b5f5f604083850312156110b6575f5ffd5b82356110c181611076565b946020939093013593505050565b5f5f5f606084860312156110e1575f5ffd5b83356110ec81611076565b925060208401356110fc81611076565b929592945050506040919091013590565b5f6020828403121561111d575f5ffd5b5035919050565b5f5f5f60608486031215611136575f5ffd5b833561114181611076565b925060208401359150604084013561115881611076565b809150509250925092565b5f5f60408385031215611174575f5ffd5b823561117f81611076565b9150602083013561118f81611076565b809150509250929050565b600181811c908216806111ae57607f821691505b6020821081036111cc57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105a4576105a4611216565b5f6020828403121561124d575f5ffd5b81518015158114610eac575f5ffd5b818103818111156105a4576105a4611216565b80820281158282048414176105a4576105a461121656fea2646970667358221220541d514c2248b588dc801669a09cce12ddecc5453301441453799db3e4ad95e664736f6c634300081c0033

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

0000000000000000000000000000000000000000000000000000000067c42c23000000000000000000000000a99fa2707ec6fe5ab4b14c88431c40f1ff3b9a98

-----Decoded View---------------
Arg [0] : _startTime (uint256): 1740909603
Arg [1] : _devFund (address): 0xa99fa2707Ec6FE5Ab4b14C88431c40F1FF3B9A98

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000067c42c23
Arg [1] : 000000000000000000000000a99fa2707ec6fe5ab4b14c88431c40f1ff3b9a98


Deployed Bytecode Sourcemap

29455:2501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29914:33;;;;;;;;;160:25:1;;;148:2;133:18;29914:33:0;;;;;;;;13504:100;;;:::i;:::-;;;;;;;:::i;31400:267::-;;;;;;:::i;:::-;;:::i;:::-;;15864:201;;;;;;:::i;:::-;;:::i;:::-;;;1544:14:1;;1537:22;1519:41;;1507:2;1492:18;15864:201:0;1379:187:1;14633:108:0;14721:12;;14633:108;;16645:261;;;;;;:::i;:::-;;:::i;28882:115::-;;;;;;:::i;:::-;;:::i;30701:285::-;;;:::i;29842:32::-;;;;;;14475:93;;;14558:2;2226:36:1;;2214:2;2199:18;14475:93:0;2084:184:1;29811:22:0;;;;;;31074:246;;;:::i;17315:238::-;;;;;;:::i;:::-;;:::i;31675:83::-;;;;;;:::i;:::-;;:::i;29883:22::-;;;;;-1:-1:-1;;;;;29883:22:0;;;;;;-1:-1:-1;;;;;2668:32:1;;;2650:51;;2638:2;2623:18;29883:22:0;2504:203:1;28774:100:0;28857:9;;-1:-1:-1;;;;;28857:9:0;11177:10;28841:25;28774:100;;29722:51;;29765:8;29722:51;;29652:61;;29703:10;29652:61;;31766:187;;;;;;:::i;:::-;;:::i;28546:85::-;28614:9;;-1:-1:-1;;;;;28614:9:0;28546:85;;14804:127;;;;;;:::i;:::-;-1:-1:-1;;;;;14905:18:0;14878:7;14905:18;;;;;;;;;;;;14804:127;27397:103;;;:::i;29780:24::-;;;;;;25409:164;;;;;;:::i;:::-;;:::i;29270:145::-;;;:::i;26756:87::-;26829:6;;-1:-1:-1;;;;;26829:6:0;26756:87;;13723:104;;;:::i;29956:41::-;;;;;;;;;29577:68;;29634:11;29577:68;;18056:436;;;;;;:::i;:::-;;:::i;15137:193::-;;;;;;:::i;:::-;;:::i;30506:183::-;;;;;;:::i;:::-;;:::i;15393:151::-;;;;;;:::i;:::-;;:::i;27655:201::-;;;;;;:::i;:::-;;:::i;13504:100::-;13558:13;13591:5;13584:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13504:100;:::o;31400:267::-;28682:9;;-1:-1:-1;;;;;28682:9:0;28695:10;28682:23;28674:72;;;;-1:-1:-1;;;28674:72:0;;;;;;;:::i;:::-;;;;;;;;;31499:21:::1;::::0;::::1;;31498:22;31490:59;;;::::0;-1:-1:-1;;;31490:59:0;;4624:2:1;31490:59:0::1;::::0;::::1;4606:21:1::0;4663:2;4643:18;;;4636:30;4702:26;4682:18;;;4675:54;4746:18;;31490:59:0::1;4422:348:1::0;31490:59:0::1;31560:21;:28:::0;;-1:-1:-1;;31560:28:0::1;31584:4;31560:28;::::0;;31599:60:::1;31605:21:::0;29634:11:::1;31599:5;:60::i;:::-;31400:267:::0;:::o;15864:201::-;15947:4;11177:10;16003:32;11177:10;16019:7;16028:6;16003:8;:32::i;:::-;16053:4;16046:11;;;15864:201;;;;;:::o;16645:261::-;16742:4;11177:10;16800:38;16816:4;11177:10;16831:6;16800:15;:38::i;:::-;16849:27;16859:4;16865:2;16869:6;16849:9;:27::i;:::-;-1:-1:-1;16894:4:0;;16645:261;-1:-1:-1;;;;16645:261:0:o;28882:115::-;26642:13;:11;:13::i;:::-;28958:31:::1;28976:12;28958:17;:31::i;30701:285::-:0;30831:7;;30750:16;;30794:15;;30824:14;;30820:34;;;-1:-1:-1;30847:7:0;;30820:34;30891:4;30869:18;;:26;30865:40;;30904:1;30897:8;;;30701:285;:::o;30865:40::-;30927:51;30960:17;;30927:28;30936:18;;30927:4;:8;;:28;;;;:::i;:::-;:32;;:51::i;:::-;30916:62;;30768:218;30701:285;:::o;31074:246::-;31118:16;31137:18;:16;:18::i;:::-;31118:37;;31183:1;31172:8;:12;:37;;;;-1:-1:-1;31188:7:0;;-1:-1:-1;;;;;31188:7:0;:21;;31172:37;31168:145;;;31232:7;;31226:24;;-1:-1:-1;;;;;31232:7:0;31241:8;31226:5;:24::i;:::-;31286:15;31265:18;:36;31107:213;31074:246::o;17315:238::-;17403:4;11177:10;17459:64;11177:10;17475:7;17512:10;17484:25;11177:10;17475:7;17484:9;:25::i;:::-;:38;;;;:::i;:::-;17459:8;:64::i;31675:83::-;31732:18;31743:6;31732:10;:18::i;31766:187::-;28682:9;;-1:-1:-1;;;;;28682:9:0;28695:10;28682:23;28674:72;;;;-1:-1:-1;;;28674:72:0;;;;;;;:::i;:::-;31916:29:::1;::::0;-1:-1:-1;;;31916:29:0;;-1:-1:-1;;;;;5229:32:1;;;31916:29:0::1;::::0;::::1;5211:51:1::0;5278:18;;;5271:34;;;31916:15:0;::::1;::::0;::::1;::::0;5184:18:1;;31916:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31766:187:::0;;;:::o;27397:103::-;26642:13;:11;:13::i;:::-;27462:30:::1;27489:1;27462:18;:30::i;:::-;27397:103::o:0;25409:164::-;25486:46;25502:7;11177:10;25525:6;25486:15;:46::i;:::-;25543:22;25549:7;25558:6;25543:5;:22::i;:::-;25409:164;;:::o;29270:145::-;26642:13;:11;:13::i;:::-;29352:9:::1;::::0;29332:42:::1;::::0;29371:1:::1;::::0;-1:-1:-1;;;;;29352:9:0::1;::::0;29332:42:::1;::::0;29371:1;;29332:42:::1;29385:9;:22:::0;;-1:-1:-1;;;;;;29385:22:0::1;::::0;;29270:145::o;13723:104::-;13779:13;13812:7;13805:14;;;;;:::i;18056:436::-;18149:4;11177:10;18149:4;18232:25;11177:10;18249:7;18232:9;:25::i;:::-;18205:52;;18296:15;18276:16;:35;;18268:85;;;;-1:-1:-1;;;18268:85:0;;5800:2:1;18268:85:0;;;5782:21:1;5839:2;5819:18;;;5812:30;5878:34;5858:18;;;5851:62;-1:-1:-1;;;5929:18:1;;;5922:35;5974:19;;18268:85:0;5598:401:1;18268:85:0;18389:60;18398:5;18405:7;18433:15;18414:16;:34;18389:8;:60::i;15137:193::-;15216:4;11177:10;15272:28;11177:10;15289:2;15293:6;15272:9;:28::i;30506:183::-;30586:7;;-1:-1:-1;;;;;30586:7:0;30572:10;:21;30564:38;;;;-1:-1:-1;;;30564:38:0;;;;;;6206:2:1;6188:21;;;6245:1;6225:18;;;6218:29;-1:-1:-1;;;6278:2:1;6263:18;;6256:34;6322:2;6307:18;;6004:327;30564:38:0;-1:-1:-1;;;;;30621:22:0;;30613:39;;;;-1:-1:-1;;;30613:39:0;;;;;;6538:2:1;6520:21;;;6577:1;6557:18;;;6550:29;-1:-1:-1;;;6610:2:1;6595:18;;6588:34;6654:2;6639:18;;6336:327;30613:39:0;30663:7;:18;;-1:-1:-1;;;;;;30663:18:0;-1:-1:-1;;;;;30663:18:0;;;;;;;;;;30506:183::o;15393:151::-;-1:-1:-1;;;;;15509:18:0;;;15482:7;15509:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15393:151::o;27655:201::-;26642:13;:11;:13::i;:::-;-1:-1:-1;;;;;27744:22:0;::::1;27736:73;;;::::0;-1:-1:-1;;;27736:73:0;;6870:2:1;27736:73:0::1;::::0;::::1;6852:21:1::0;6909:2;6889:18;;;6882:30;6948:34;6928:18;;;6921:62;-1:-1:-1;;;6999:18:1;;;6992:36;7045:19;;27736:73:0::1;6668:402:1::0;27736:73:0::1;27820:28;27839:8;27820:18;:28::i;20055:548::-:0;-1:-1:-1;;;;;20139:21:0;;20131:65;;;;-1:-1:-1;;;20131:65:0;;7277:2:1;20131:65:0;;;7259:21:1;7316:2;7296:18;;;7289:30;7355:33;7335:18;;;7328:61;7406:18;;20131:65:0;7075:355:1;20131:65:0;20287:6;20271:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;20442:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;20497:37;160:25:1;;;20497:37:0;;133:18:1;20497:37:0;;;;;;;25409:164;;:::o;22049:346::-;-1:-1:-1;;;;;22151:19:0;;22143:68;;;;-1:-1:-1;;;22143:68:0;;7637:2:1;22143:68:0;;;7619:21:1;7676:2;7656:18;;;7649:30;7715:34;7695:18;;;7688:62;-1:-1:-1;;;7766:18:1;;;7759:34;7810:19;;22143:68:0;7435:400:1;22143:68:0;-1:-1:-1;;;;;22230:21:0;;22222:68;;;;-1:-1:-1;;;22222:68:0;;8042:2:1;22222:68:0;;;8024:21:1;8081:2;8061:18;;;8054:30;8120:34;8100:18;;;8093:62;-1:-1:-1;;;8171:18:1;;;8164:32;8213:19;;22222:68:0;7840:398:1;22222:68:0;-1:-1:-1;;;;;22303:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22355:32;;160:25:1;;;22355:32:0;;133:18:1;22355:32:0;;;;;;;;22049:346;;;:::o;22686:419::-;22787:24;22814:25;22824:5;22831:7;22814:9;:25::i;:::-;22787:52;;-1:-1:-1;;22854:16:0;:37;22850:248;;22936:6;22916:16;:26;;22908:68;;;;-1:-1:-1;;;22908:68:0;;8445:2:1;22908:68:0;;;8427:21:1;8484:2;8464:18;;;8457:30;8523:31;8503:18;;;8496:59;8572:18;;22908:68:0;8243:353:1;22908:68:0;23020:51;23029:5;23036:7;23064:6;23045:16;:25;23020:8;:51::i;18962:806::-;-1:-1:-1;;;;;19059:18:0;;19051:68;;;;-1:-1:-1;;;19051:68:0;;8803:2:1;19051:68:0;;;8785:21:1;8842:2;8822:18;;;8815:30;8881:34;8861:18;;;8854:62;-1:-1:-1;;;8932:18:1;;;8925:35;8977:19;;19051:68:0;8601:401:1;19051:68:0;-1:-1:-1;;;;;19138:16:0;;19130:64;;;;-1:-1:-1;;;19130:64:0;;9209:2:1;19130:64:0;;;9191:21:1;9248:2;9228:18;;;9221:30;9287:34;9267:18;;;9260:62;-1:-1:-1;;;9338:18:1;;;9331:33;9381:19;;19130:64:0;9007:399:1;19130:64:0;-1:-1:-1;;;;;19280:15:0;;19258:19;19280:15;;;;;;;;;;;19314:21;;;;19306:72;;;;-1:-1:-1;;;19306:72:0;;9613:2:1;19306:72:0;;;9595:21:1;9652:2;9632:18;;;9625:30;9691:34;9671:18;;;9664:62;-1:-1:-1;;;9742:18:1;;;9735:36;9788:19;;19306:72:0;9411:402:1;19306:72:0;-1:-1:-1;;;;;19414:15:0;;;:9;:15;;;;;;;;;;;19432:20;;;19414:38;;19632:13;;;;;;;;;;:23;;;;;;19684:26;;160:25:1;;;19632:13:0;;19684:26;;133:18:1;19684:26:0;;;;;;;19723:37;20936:675;26921:132;26829:6;;-1:-1:-1;;;;;26829:6:0;11177:10;26985:23;26977:68;;;;-1:-1:-1;;;26977:68:0;;10020:2:1;26977:68:0;;;10002:21:1;;;10039:18;;;10032:30;10098:34;10078:18;;;10071:62;10150:18;;26977:68:0;9818:356:1;29005:257:0;-1:-1:-1;;;;;29082:26:0;;29074:84;;;;-1:-1:-1;;;29074:84:0;;10381:2:1;29074:84:0;;;10363:21:1;10420:2;10400:18;;;10393:30;10459:34;10439:18;;;10432:62;-1:-1:-1;;;10510:18:1;;;10503:43;10563:19;;29074:84:0;10179:409:1;29074:84:0;29174:45;;-1:-1:-1;;;;;29174:45:0;;;29202:1;;29174:45;;29202:1;;29174:45;29230:9;:24;;-1:-1:-1;;;;;;29230:24:0;-1:-1:-1;;;;;29230:24:0;;;;;;;;;;29005:257::o;3338:98::-;3396:7;3423:5;3427:1;3423;:5;:::i;:::-;3416:12;3338:98;-1:-1:-1;;;3338:98:0:o;3695:::-;3753:7;3780:5;3784:1;3780;:5;:::i;24999:91::-;25055:27;11177:10;25075:6;25055:5;:27::i;28016:191::-;28109:6;;;-1:-1:-1;;;;;28126:17:0;;;-1:-1:-1;;;;;;28126:17:0;;;;;;;28159:40;;28109:6;;;28126:17;28109:6;;28159:40;;28090:16;;28159:40;28079:128;28016:191;:::o;20936:675::-;-1:-1:-1;;;;;21020:21:0;;21012:67;;;;-1:-1:-1;;;21012:67:0;;11101:2:1;21012:67:0;;;11083:21:1;11140:2;11120:18;;;11113:30;11179:34;11159:18;;;11152:62;-1:-1:-1;;;11230:18:1;;;11223:31;11271:19;;21012:67:0;10899:397:1;21012:67:0;-1:-1:-1;;;;;21179:18:0;;21154:22;21179:18;;;;;;;;;;;21216:24;;;;21208:71;;;;-1:-1:-1;;;21208:71:0;;11503:2:1;21208:71:0;;;11485:21:1;11542:2;11522:18;;;11515:30;11581:34;11561:18;;;11554:62;-1:-1:-1;;;11632:18:1;;;11625:32;11674:19;;21208:71:0;11301:398:1;21208:71:0;-1:-1:-1;;;;;21315:18:0;;:9;:18;;;;;;;;;;;21336:23;;;21315:44;;21454:12;:22;;;;;;;21505:37;160:25:1;;;21315:9:0;;:18;21505:37;;133:18:1;21505:37:0;14:177:1;196:418;345:2;334:9;327:21;308:4;377:6;371:13;420:6;415:2;404:9;400:18;393:34;479:6;474:2;466:6;462:15;457:2;446:9;442:18;436:50;535:1;530:2;521:6;510:9;506:22;502:31;495:42;605:2;598;594:7;589:2;581:6;577:15;573:29;562:9;558:45;554:54;546:62;;;196:418;;;;:::o;619:131::-;-1:-1:-1;;;;;694:31:1;;684:42;;674:70;;740:1;737;730:12;755:247;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;922:9;909:23;941:31;966:5;941:31;:::i;1007:367::-;1075:6;1083;1136:2;1124:9;1115:7;1111:23;1107:32;1104:52;;;1152:1;1149;1142:12;1104:52;1191:9;1178:23;1210:31;1235:5;1210:31;:::i;:::-;1260:5;1338:2;1323:18;;;;1310:32;;-1:-1:-1;;;1007:367:1:o;1571:508::-;1648:6;1656;1664;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;1772:9;1759:23;1791:31;1816:5;1791:31;:::i;:::-;1841:5;-1:-1:-1;1898:2:1;1883:18;;1870:32;1911:33;1870:32;1911:33;:::i;:::-;1571:508;;1963:7;;-1:-1:-1;;;2043:2:1;2028:18;;;;2015:32;;1571:508::o;2273:226::-;2332:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:52;;;2401:1;2398;2391:12;2353:52;-1:-1:-1;2446:23:1;;2273:226;-1:-1:-1;2273:226:1:o;2712:522::-;2803:6;2811;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:52;;;2888:1;2885;2878:12;2840:52;2927:9;2914:23;2946:31;2971:5;2946:31;:::i;:::-;2996:5;-1:-1:-1;3074:2:1;3059:18;;3046:32;;-1:-1:-1;3156:2:1;3141:18;;3128:32;3169:33;3128:32;3169:33;:::i;:::-;3221:7;3211:17;;;2712:522;;;;;:::o;3239:388::-;3307:6;3315;3368:2;3356:9;3347:7;3343:23;3339:32;3336:52;;;3384:1;3381;3374:12;3336:52;3423:9;3410:23;3442:31;3467:5;3442:31;:::i;:::-;3492:5;-1:-1:-1;3549:2:1;3534:18;;3521:32;3562:33;3521:32;3562:33;:::i;:::-;3614:7;3604:17;;;3239:388;;;;;:::o;3632:380::-;3711:1;3707:12;;;;3754;;;3775:61;;3829:4;3821:6;3817:17;3807:27;;3775:61;3882:2;3874:6;3871:14;3851:18;3848:38;3845:161;;3928:10;3923:3;3919:20;3916:1;3909:31;3963:4;3960:1;3953:15;3991:4;3988:1;3981:15;3845:161;;3632:380;;;:::o;4017:400::-;4219:2;4201:21;;;4258:2;4238:18;;;4231:30;4297:34;4292:2;4277:18;;4270:62;-1:-1:-1;;;4363:2:1;4348:18;;4341:34;4407:3;4392:19;;4017:400::o;4775:127::-;4836:10;4831:3;4827:20;4824:1;4817:31;4867:4;4864:1;4857:15;4891:4;4888:1;4881:15;4907:125;4972:9;;;4993:10;;;4990:36;;;5006:18;;:::i;5316:277::-;5383:6;5436:2;5424:9;5415:7;5411:23;5407:32;5404:52;;;5452:1;5449;5442:12;5404:52;5484:9;5478:16;5537:5;5530:13;5523:21;5516:5;5513:32;5503:60;;5559:1;5556;5549:12;10593:128;10660:9;;;10681:11;;;10678:37;;;10695:18;;:::i;10726:168::-;10799:9;;;10830;;10847:15;;;10841:22;;10827:37;10817:71;;10868:18;;:::i

Swarm Source

ipfs://541d514c2248b588dc801669a09cce12ddecc5453301441453799db3e4ad95e6
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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