ETH Price: $3,074.67 (+0.85%)
Gas: 4 Gwei

Token

Samot Token (SAMOT)
 

Overview

Max Total Supply

126,512.1979184072702 SAMOT

Holders

103

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,529.654839133236 SAMOT

Value
$0.00
0x4dD0D2b69ef1208F9AEbd10Ad53665B420D15e3f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SamotToken

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 20 runs

Other Settings:
default evmVersion
File 1 of 7 : SamotToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "openzeppelin-solidity/contracts/utils/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/utils/Context.sol";

// ██╗    ██╗██╗  ██╗ ██████╗     ██╗███████╗    ▄▄███▄▄· █████╗ ███╗   ███╗ ██████╗ ████████╗    ██████╗
// ██║    ██║██║  ██║██╔═══██╗    ██║██╔════╝    ██╔════╝██╔══██╗████╗ ████║██╔═══██╗╚══██╔══╝    ╚════██╗
// ██║ █╗ ██║███████║██║   ██║    ██║███████╗    ███████╗███████║██╔████╔██║██║   ██║   ██║         ▄███╔╝
// ██║███╗██║██╔══██║██║   ██║    ██║╚════██║    ╚════██║██╔══██║██║╚██╔╝██║██║   ██║   ██║         ▀▀══╝
// ╚███╔███╔╝██║  ██║╚██████╔╝    ██║███████║    ███████║██║  ██║██║ ╚═╝ ██║╚██████╔╝   ██║         ██╗
//  ╚══╝╚══╝ ╚═╝  ╚═╝ ╚═════╝     ╚═╝╚══════╝    ╚═▀▀▀══╝╚═╝  ╚═╝╚═╝     ╚═╝ ╚═════╝    ╚═╝         ╚═╝

/**
 * @title Samot Token
 * SamotToken - a contract for the Samot Token
 */

abstract contract SamotNFT {
    function ownerOf(uint256 tokenId) public view virtual returns (address);

    function balanceOf(address owner)
        public
        view
        virtual
        returns (uint256 balance);
}

contract SamotToken is ERC20, Ownable {
    using SafeMath for uint256;

    //addresses
    address stakingAddress;
    address[] burnlistAddr;
    address[] claimlistAddr;

    //uint256
    uint256 public maxToMintPerNFT = 100;
    uint256 public maxToMint = 50000;
    uint256 public maxSupply = 5000000;
    uint256 public mintPrice = 200000000000000;
    uint256 multiplier = 2;

    //bools
    bool public preSaleIsActive = false;
    bool public saleIsActive = false;

    //contracts
    SamotNFT nft;

    //mappings
    mapping(address => bool) public burnlist;
    mapping(address => bool) public claimlist;

    //constructor
    constructor(
        string memory _name,
        string memory _symbol,
        address _nftAddress
    ) ERC20(_name, _symbol) {
        nft = SamotNFT(_nftAddress);
    }

    //modifiers
    modifier onlyBurnersOrOwner() {
        require(
            isBurnlisted(msg.sender) || owner() == _msgSender(),
            "Only callable by Burner Contract or Owner"
        );
        _;
    }

    modifier onlyClaimersOrOwner() {
        require(
            isClaimlisted(msg.sender) || owner() == _msgSender(),
            "Only callable by Claimer Contract or Owner"
        );
        _;
    }

    //Burnlist logic
    function addAddressToBurnlist(address addr)
        public
        onlyOwner
        returns (bool success)
    {
        require(!isBurnlisted(addr), "Already burnlisted");
        burnlist[addr] = true;
        success = true;
    }

    function addAddressesToBurnlist(address[] memory addrs)
        public
        onlyOwner
        returns (bool success)
    {
        burnlistAddr = addrs;
        for (uint256 i = 0; i < burnlistAddr.length; i++) {
            addAddressToBurnlist(burnlistAddr[i]);
        }
        success = true;
    }

    function isBurnlisted(address addr)
        public
        view
        returns (bool isBurnListed)
    {
        return burnlist[addr];
    }

    function removeAddressFromBurnlist(address addr)
        public
        onlyOwner
        returns (bool success)
    {
        require(isBurnlisted(addr), "Not burnlisted");
        burnlist[addr] = false;
        success = true;
    }

    //Claimlist logic
    function addAddressToClaimlist(address addr)
        public
        onlyOwner
        returns (bool success)
    {
        require(!isClaimlisted(addr), "Already claimlisted");
        claimlist[addr] = true;
        success = true;
    }

    function addAddressesToClaimlist(address[] memory addrs)
        public
        onlyOwner
        returns (bool success)
    {
        claimlistAddr = addrs;
        for (uint256 i = 0; i < claimlistAddr.length; i++) {
            addAddressToClaimlist(claimlistAddr[i]);
        }
        success = true;
    }

    function isClaimlisted(address addr)
        public
        view
        returns (bool isClaimListed)
    {
        return claimlist[addr];
    }

    function removeAddressFromClaimlist(address addr)
        public
        onlyOwner
        returns (bool success)
    {
        require(isClaimlisted(addr), "Not claimlisted");
        claimlist[addr] = false;
        success = true;
    }

    // Burn function
    function burn(address _from, uint256 _amount) external onlyBurnersOrOwner {
        _burn(_from, _amount);
    }

    // Claim function
    function claim(address _claimer, uint256 _reward)
        external
        onlyClaimersOrOwner
    {
        require(
            ((totalSupply().add(_reward)).div(10**18)) <= maxSupply,
            "Exceeds token limit."
        );
        _mint(_claimer, _reward);
    }

    // Set functions
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPreSaleState() public onlyOwner {
        preSaleIsActive = !preSaleIsActive;
    }

    function setStakingContract(address _stakingAddress) external onlyOwner {
        stakingAddress = _stakingAddress;
    }

    function setNFTContract(address _nftAddress) external onlyOwner {
        nft = SamotNFT(_nftAddress);
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        mintPrice = _price;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMaxToMint(uint256 _maxToMint) external onlyOwner {
        maxToMint = _maxToMint;
    }

    function setMaxToMintPerNFT(uint256 _maxToMint) external onlyOwner {
        maxToMintPerNFT = _maxToMint;
    }

    function setMultiplier(uint256 _multiplier) external onlyOwner {
        multiplier = _multiplier;
    }

    // Get price function
    function getPrice() public view returns (uint256) {
        uint256 currentSupply = totalSupply().div(10**18);
        require(currentSupply <= maxSupply, "Sold out.");
        if (currentSupply >= 4000000) {
            return mintPrice.mul(multiplier**3);
        } else if (currentSupply >= 3000000) {
            return mintPrice.mul(multiplier**2);
        } else if (currentSupply >= 2000000) {
            return mintPrice.mul(multiplier);
        } else {
            return mintPrice;
        }
    }

    // Minting function
    function mint(uint256 numberOfTokens) public payable {
        uint256 currentSupply = totalSupply().div(10**18);
        require(saleIsActive, "Sale is not active.");
        require(numberOfTokens > 0, "numberOfTokens cannot be 0");
        require(
            currentSupply.add(numberOfTokens) <= maxSupply,
            "Exceeds token limit."
        );
        uint256 balance = balanceOf(msg.sender).div(10**18);
        if (preSaleIsActive) {
            require(
                getPrice().mul(numberOfTokens) <= msg.value,
                "ETH sent is incorrect."
            );
            require(
                nft.balanceOf(msg.sender) > 0,
                "You must own at least one Samot NFT to participate in the pre-sale."
            );
            require(
                numberOfTokens <=
                    maxToMintPerNFT.mul(nft.balanceOf(msg.sender)),
                "Exceeds limit for pre-sale."
            );
            require(
                balance.add(numberOfTokens) <=
                    maxToMintPerNFT.mul(nft.balanceOf(msg.sender)),
                "Exceeds limit for pre-sale."
            );
        } else {
            require(
                getPrice().mul(numberOfTokens) <= msg.value,
                "ETH sent is incorrect."
            );
            require(
                numberOfTokens <= maxToMint,
                "Exceeds limit for public sale."
            );
            require(balance <= maxToMint, "Exceeds limit for public sale.");
        }
        _mint(msg.sender, numberOfTokens.mul(10**18));
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. 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 substraction 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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;
        }
    }
}

File 3 of 7 : Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 4 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

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

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

File 6 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, 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}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal 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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 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 to 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 { }
}

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

pragma solidity ^0.8.0;

import "../utils/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;

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 20
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_nftAddress","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":"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":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToBurnlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToClaimlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToBurnlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToClaimlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"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":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"burnlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_claimer","type":"address"},{"internalType":"uint256","name":"_reward","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"isBurnlisted","outputs":[{"internalType":"bool","name":"isBurnListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isClaimlisted","outputs":[{"internalType":"bool","name":"isClaimListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToMintPerNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAddressFromBurnlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAddressFromClaimlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToMint","type":"uint256"}],"name":"setMaxToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToMint","type":"uint256"}],"name":"setMaxToMintPerNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_multiplier","type":"uint256"}],"name":"setMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"}],"name":"setNFTContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingAddress","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052606460095561c350600a55624c4b40600b5565b5e620f48000600c556002600d55600e805461ffff191690553480156200003d57600080fd5b50604051620026423803806200264283398101604081905262000060916200029a565b8251839083906200007990600390602085019062000127565b5080516200008f90600490602084019062000127565b5050506000620000a46200012360201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e80546001600160a01b03909216620100000262010000600160b01b031990921691909117905550620003649050565b3390565b828054620001359062000327565b90600052602060002090601f016020900481019282620001595760008555620001a4565b82601f106200017457805160ff1916838001178555620001a4565b82800160010185558215620001a4579182015b82811115620001a457825182559160200191906001019062000187565b50620001b2929150620001b6565b5090565b5b80821115620001b25760008155600101620001b7565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001f557600080fd5b81516001600160401b0380821115620002125762000212620001cd565b604051601f8301601f19908116603f011681019082821181831017156200023d576200023d620001cd565b816040528381526020925086838588010111156200025a57600080fd5b600091505b838210156200027e57858201830151818301840152908201906200025f565b83821115620002905760008385830101525b9695505050505050565b600080600060608486031215620002b057600080fd5b83516001600160401b0380821115620002c857600080fd5b620002d687838801620001e3565b94506020860151915080821115620002ed57600080fd5b50620002fc86828701620001e3565b604086015190935090506001600160a01b03811681146200031c57600080fd5b809150509250925092565b600181811c908216806200033c57607f821691505b602082108114156200035e57634e487b7160e01b600052602260045260246000fd5b50919050565b6122ce80620003746000396000f3fe6080604052600436106102075760003560e01c806395d89b411161011457806395d89b41146104cf578063969d3fb1146104e457806398d5fdca146105045780639dc29fac146105195780639dd373b914610539578063a0712d6814610559578063a457c2d71461056c578063a7ccabdf1461058c578063a9059cbb146105ac578063aad3ec96146105cc578063ab2f8350146105ec578063d5abeb011461060c578063d8e0ac6614610622578063d9c60cef14610642578063dd62ed3e14610662578063e89377e7146106a8578063ea76495e146106c8578063eb8d2444146106e8578063f032554914610707578063f2fde38b1461071c578063f4a0a5281461073c578063fd693db91461075c57600080fd5b806306fdde031461020c578063095ea7b3146102375780630ba133c51461026757806318160ddd1461028b5780631f0234d8146102a057806323b872dd146102ba578063248925db146102da5780632999e7831461030a578063313ce5671461033a57806334918dfd14610356578063395093511461036d5780633ccfd60b1461038d578063641579a6146103a25780636817c76c146103c25780636f8b44b0146103d85780637084b2b7146103f857806370a0823114610418578063715018a6146104385780638615e9c91461044d5780638cc030401461046d5780638da5cb5b1461048d57806390d55efe146104af575b600080fd5b34801561021857600080fd5b50610221610772565b60405161022e9190611d4e565b60405180910390f35b34801561024357600080fd5b50610257610252366004611dbf565b610804565b604051901515815260200161022e565b34801561027357600080fd5b5061027d600a5481565b60405190815260200161022e565b34801561029757600080fd5b5060025461027d565b3480156102ac57600080fd5b50600e546102579060ff1681565b3480156102c657600080fd5b506102576102d5366004611de9565b61081b565b3480156102e657600080fd5b506102576102f5366004611e25565b60106020526000908152604090205460ff1681565b34801561031657600080fd5b50610257610325366004611e25565b600f6020526000908152604090205460ff1681565b34801561034657600080fd5b506040516012815260200161022e565b34801561036257600080fd5b5061036b6108d1565b005b34801561037957600080fd5b50610257610388366004611dbf565b61091d565b34801561039957600080fd5b5061036b610954565b3480156103ae57600080fd5b5061036b6103bd366004611e40565b6109b6565b3480156103ce57600080fd5b5061027d600c5481565b3480156103e457600080fd5b5061036b6103f3366004611e40565b6109ea565b34801561040457600080fd5b5061036b610413366004611e40565b610a1e565b34801561042457600080fd5b5061027d610433366004611e25565b610a52565b34801561044457600080fd5b5061036b610a6d565b34801561045957600080fd5b50610257610468366004611e25565b610ae6565b34801561047957600080fd5b50610257610488366004611e25565b610b04565b34801561049957600080fd5b506104a2610ba0565b60405161022e9190611e59565b3480156104bb57600080fd5b506102576104ca366004611e25565b610baf565b3480156104db57600080fd5b50610221610c55565b3480156104f057600080fd5b506102576104ff366004611e25565b610c64565b34801561051057600080fd5b5061027d610d01565b34801561052557600080fd5b5061036b610534366004611dbf565b610dcb565b34801561054557600080fd5b5061036b610554366004611e25565b610e56565b61036b610567366004611e40565b610ea7565b34801561057857600080fd5b50610257610587366004611dbf565b611268565b34801561059857600080fd5b5061036b6105a7366004611e25565b611303565b3480156105b857600080fd5b506102576105c7366004611dbf565b61135c565b3480156105d857600080fd5b5061036b6105e7366004611dbf565b611369565b3480156105f857600080fd5b50610257610607366004611e83565b611435565b34801561061857600080fd5b5061027d600b5481565b34801561062e57600080fd5b5061025761063d366004611e83565b6114ca565b34801561064e57600080fd5b5061025761065d366004611e25565b61155f565b34801561066e57600080fd5b5061027d61067d366004611f48565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106b457600080fd5b5061036b6106c3366004611e40565b61157d565b3480156106d457600080fd5b506102576106e3366004611e25565b6115b1565b3480156106f457600080fd5b50600e5461025790610100900460ff1681565b34801561071357600080fd5b5061036b611656565b34801561072857600080fd5b5061036b610737366004611e25565b611699565b34801561074857600080fd5b5061036b610757366004611e40565b611789565b34801561076857600080fd5b5061027d60095481565b60606003805461078190611f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546107ad90611f7b565b80156107fa5780601f106107cf576101008083540402835291602001916107fa565b820191906000526020600020905b8154815290600101906020018083116107dd57829003601f168201915b5050505050905090565b60006108113384846117bd565b5060015b92915050565b60006108288484846118e2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108b25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108c685336108c18685611fcc565b6117bd565b506001949350505050565b336108da610ba0565b6001600160a01b0316146109005760405162461bcd60e51b81526004016108a990611fe3565b600e805461ff001981166101009182900460ff1615909102179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108119185906108c1908690612018565b3361095d610ba0565b6001600160a01b0316146109835760405162461bcd60e51b81526004016108a990611fe3565b6040514790339082156108fc029083906000818181858888f193505050501580156109b2573d6000803e3d6000fd5b5050565b336109bf610ba0565b6001600160a01b0316146109e55760405162461bcd60e51b81526004016108a990611fe3565b600d55565b336109f3610ba0565b6001600160a01b031614610a195760405162461bcd60e51b81526004016108a990611fe3565b600b55565b33610a27610ba0565b6001600160a01b031614610a4d5760405162461bcd60e51b81526004016108a990611fe3565b600a55565b6001600160a01b031660009081526020819052604090205490565b33610a76610ba0565b6001600160a01b031614610a9c5760405162461bcd60e51b81526004016108a990611fe3565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6001600160a01b031660009081526010602052604090205460ff1690565b600033610b0f610ba0565b6001600160a01b031614610b355760405162461bcd60e51b81526004016108a990611fe3565b610b3e8261155f565b610b7b5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08189d5c9b9b1a5cdd195960921b60448201526064016108a9565b506001600160a01b03166000908152600f60205260409020805460ff19169055600190565b6005546001600160a01b031690565b600033610bba610ba0565b6001600160a01b031614610be05760405162461bcd60e51b81526004016108a990611fe3565b610be982610ae6565b15610c2c5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e4818db185a5b5b1a5cdd1959606a1b60448201526064016108a9565b506001600160a01b03166000908152601060205260409020805460ff1916600190811790915590565b60606004805461078190611f7b565b600033610c6f610ba0565b6001600160a01b031614610c955760405162461bcd60e51b81526004016108a990611fe3565b610c9e82610ae6565b610cdc5760405162461bcd60e51b815260206004820152600f60248201526e139bdd0818db185a5b5b1a5cdd1959608a1b60448201526064016108a9565b506001600160a01b03166000908152601060205260409020805460ff19169055600190565b600080610d1f670de0b6b3a7640000610d1960025490565b90611aa8565b9050600b54811115610d5f5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064016108a9565b623d09008110610d8a57610d846003600d54610d7b9190612114565b600c5490611abb565b91505090565b622dc6c08110610da657610d846002600d54610d7b9190612114565b621e84808110610dbf57600d54600c54610d8491611abb565b5050600c5490565b5090565b610dd43361155f565b80610dee575033610de3610ba0565b6001600160a01b0316145b610e4c5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c792063616c6c61626c65206279204275726e657220436f6e74726163746044820152681037b91027bbb732b960b91b60648201526084016108a9565b6109b28282611ac7565b33610e5f610ba0565b6001600160a01b031614610e855760405162461bcd60e51b81526004016108a990611fe3565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ebe670de0b6b3a7640000610d1960025490565b600e54909150610100900460ff16610f0e5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b60448201526064016108a9565b60008211610f5b5760405162461bcd60e51b815260206004820152601a60248201527906e756d6265724f66546f6b656e732063616e6e6f7420626520360341b60448201526064016108a9565b600b54610f688284611c04565b1115610f865760405162461bcd60e51b81526004016108a990612123565b6000610f9d670de0b6b3a7640000610d1933610a52565b600e5490915060ff16156111d95734610fbe84610fb8610d01565b90611abb565b1115610fdc5760405162461bcd60e51b81526004016108a990612151565b600e546040516370a0823160e01b81526000916201000090046001600160a01b0316906370a0823190611013903390600401611e59565b602060405180830381865afa158015611030573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110549190612181565b116110d35760405162461bcd60e51b815260206004820152604360248201527f596f75206d757374206f776e206174206c65617374206f6e652053616d6f742060448201527f4e465420746f20706172746963697061746520696e20746865207072652d736160648201526236329760e91b608482015260a4016108a9565b600e546040516370a0823160e01b8152611155916201000090046001600160a01b0316906370a082319061110b903390600401611e59565b602060405180830381865afa158015611128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114c9190612181565b60095490611abb565b8311156111745760405162461bcd60e51b81526004016108a99061219a565b600e546040516370a0823160e01b81526111ac916201000090046001600160a01b0316906370a082319061110b903390600401611e59565b6111b68285611c04565b11156111d45760405162461bcd60e51b81526004016108a99061219a565b611248565b346111e684610fb8610d01565b11156112045760405162461bcd60e51b81526004016108a990612151565b600a548311156112265760405162461bcd60e51b81526004016108a9906121cf565b600a548111156112485760405162461bcd60e51b81526004016108a9906121cf565b6112633361125e85670de0b6b3a7640000611abb565b611c10565b505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a9565b6112f933856108c18685611fcc565b5060019392505050565b3361130c610ba0565b6001600160a01b0316146113325760405162461bcd60e51b81526004016108a990611fe3565b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60006108113384846118e2565b61137233610ae6565b8061138c575033611381610ba0565b6001600160a01b0316145b6113eb5760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c792063616c6c61626c6520627920436c61696d657220436f6e747261636044820152693a1037b91027bbb732b960b11b60648201526084016108a9565b600b5461140d670de0b6b3a7640000610d198461140760025490565b90611c04565b111561142b5760405162461bcd60e51b81526004016108a990612123565b6109b28282611c10565b600033611440610ba0565b6001600160a01b0316146114665760405162461bcd60e51b81526004016108a990611fe3565b8151611479906007906020850190611cdd565b5060005b600754811015610811576114b76007828154811061149d5761149d612206565b6000918252602090912001546001600160a01b03166115b1565b50806114c28161221c565b91505061147d565b6000336114d5610ba0565b6001600160a01b0316146114fb5760405162461bcd60e51b81526004016108a990611fe3565b815161150e906008906020850190611cdd565b5060005b6008548110156108115761154c6008828154811061153257611532612206565b6000918252602090912001546001600160a01b0316610baf565b50806115578161221c565b915050611512565b6001600160a01b03166000908152600f602052604090205460ff1690565b33611586610ba0565b6001600160a01b0316146115ac5760405162461bcd60e51b81526004016108a990611fe3565b600955565b6000336115bc610ba0565b6001600160a01b0316146115e25760405162461bcd60e51b81526004016108a990611fe3565b6115eb8261155f565b1561162d5760405162461bcd60e51b8152602060048201526012602482015271105b1c9958591e48189d5c9b9b1a5cdd195960721b60448201526064016108a9565b506001600160a01b03166000908152600f60205260409020805460ff1916600190811790915590565b3361165f610ba0565b6001600160a01b0316146116855760405162461bcd60e51b81526004016108a990611fe3565b600e805460ff19811660ff90911615179055565b336116a2610ba0565b6001600160a01b0316146116c85760405162461bcd60e51b81526004016108a990611fe3565b6001600160a01b03811661172d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a9565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b33611792610ba0565b6001600160a01b0316146117b85760405162461bcd60e51b81526004016108a990611fe3565b600c55565b6001600160a01b03831661181f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a9565b6001600160a01b0382166118805760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166119465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108a9565b6001600160a01b0382166119a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108a9565b6001600160a01b03831660009081526020819052604090205481811015611a205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a9565b611a2a8282611fcc565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611a60908490612018565b92505081905550826001600160a01b0316846001600160a01b031660008051602061227983398151915284604051611a9a91815260200190565b60405180910390a350505050565b6000611ab48284612237565b9392505050565b6000611ab48284612259565b6001600160a01b038216611b275760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108a9565b6001600160a01b03821660009081526020819052604090205481811015611b9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108a9565b611ba58282611fcc565b6001600160a01b03841660009081526020819052604081209190915560028054849290611bd3908490611fcc565b90915550506040518281526000906001600160a01b03851690600080516020612279833981519152906020016118d5565b6000611ab48284612018565b6001600160a01b038216611c665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108a9565b8060026000828254611c789190612018565b90915550506001600160a01b03821660009081526020819052604081208054839290611ca5908490612018565b90915550506040518181526001600160a01b038316906000906000805160206122798339815191529060200160405180910390a35050565b828054828255906000526020600020908101928215611d32579160200282015b82811115611d3257825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611cfd565b50610dc79291505b80821115610dc75760008155600101611d3a565b600060208083528351808285015260005b81811015611d7b57858101830151858201604001528201611d5f565b81811115611d8d576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114611dba57600080fd5b919050565b60008060408385031215611dd257600080fd5b611ddb83611da3565b946020939093013593505050565b600080600060608486031215611dfe57600080fd5b611e0784611da3565b9250611e1560208501611da3565b9150604084013590509250925092565b600060208284031215611e3757600080fd5b611ab482611da3565b600060208284031215611e5257600080fd5b5035919050565b6001600160a01b0391909116815260200190565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611e9657600080fd5b823567ffffffffffffffff80821115611eae57600080fd5b818501915085601f830112611ec257600080fd5b813581811115611ed457611ed4611e6d565b8060051b604051601f19603f83011681018181108582111715611ef957611ef9611e6d565b604052918252848201925083810185019188831115611f1757600080fd5b938501935b82851015611f3c57611f2d85611da3565b84529385019392850192611f1c565b98975050505050505050565b60008060408385031215611f5b57600080fd5b611f6483611da3565b9150611f7260208401611da3565b90509250929050565b600181811c90821680611f8f57607f821691505b60208210811415611fb057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611fde57611fde611fb6565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561202b5761202b611fb6565b500190565b600181815b8085111561206b57816000190482111561205157612051611fb6565b8085161561205e57918102915b93841c9390800290612035565b509250929050565b60008261208257506001610815565b8161208f57506000610815565b81600181146120a557600281146120af576120cb565b6001915050610815565b60ff8411156120c0576120c0611fb6565b50506001821b610815565b5060208310610133831016604e8410600b84101617156120ee575081810a610815565b6120f88383612030565b806000190482111561210c5761210c611fb6565b029392505050565b6000611ab460ff841683612073565b60208082526014908201527322bc31b2b2b239903a37b5b2b7103634b6b4ba1760611b604082015260600190565b60208082526016908201527522aa241039b2b73a1034b99034b731b7b93932b1ba1760511b604082015260600190565b60006020828403121561219357600080fd5b5051919050565b6020808252601b908201527a22bc31b2b2b239903634b6b4ba103337b91038393296b9b0b6329760291b604082015260600190565b6020808252601e908201527f45786365656473206c696d697420666f72207075626c69632073616c652e0000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561223057612230611fb6565b5060010190565b60008261225457634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561227357612273611fb6565b50029056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d9b4231da5825f98ab5a0fbac47747432de0e9c8e4d4f3d211cbdc0b97dc9b1964736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000049fdbfa1126638ce7ef2ca1a0f7759109f12595d000000000000000000000000000000000000000000000000000000000000000b53616d6f7420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553414d4f54000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102075760003560e01c806395d89b411161011457806395d89b41146104cf578063969d3fb1146104e457806398d5fdca146105045780639dc29fac146105195780639dd373b914610539578063a0712d6814610559578063a457c2d71461056c578063a7ccabdf1461058c578063a9059cbb146105ac578063aad3ec96146105cc578063ab2f8350146105ec578063d5abeb011461060c578063d8e0ac6614610622578063d9c60cef14610642578063dd62ed3e14610662578063e89377e7146106a8578063ea76495e146106c8578063eb8d2444146106e8578063f032554914610707578063f2fde38b1461071c578063f4a0a5281461073c578063fd693db91461075c57600080fd5b806306fdde031461020c578063095ea7b3146102375780630ba133c51461026757806318160ddd1461028b5780631f0234d8146102a057806323b872dd146102ba578063248925db146102da5780632999e7831461030a578063313ce5671461033a57806334918dfd14610356578063395093511461036d5780633ccfd60b1461038d578063641579a6146103a25780636817c76c146103c25780636f8b44b0146103d85780637084b2b7146103f857806370a0823114610418578063715018a6146104385780638615e9c91461044d5780638cc030401461046d5780638da5cb5b1461048d57806390d55efe146104af575b600080fd5b34801561021857600080fd5b50610221610772565b60405161022e9190611d4e565b60405180910390f35b34801561024357600080fd5b50610257610252366004611dbf565b610804565b604051901515815260200161022e565b34801561027357600080fd5b5061027d600a5481565b60405190815260200161022e565b34801561029757600080fd5b5060025461027d565b3480156102ac57600080fd5b50600e546102579060ff1681565b3480156102c657600080fd5b506102576102d5366004611de9565b61081b565b3480156102e657600080fd5b506102576102f5366004611e25565b60106020526000908152604090205460ff1681565b34801561031657600080fd5b50610257610325366004611e25565b600f6020526000908152604090205460ff1681565b34801561034657600080fd5b506040516012815260200161022e565b34801561036257600080fd5b5061036b6108d1565b005b34801561037957600080fd5b50610257610388366004611dbf565b61091d565b34801561039957600080fd5b5061036b610954565b3480156103ae57600080fd5b5061036b6103bd366004611e40565b6109b6565b3480156103ce57600080fd5b5061027d600c5481565b3480156103e457600080fd5b5061036b6103f3366004611e40565b6109ea565b34801561040457600080fd5b5061036b610413366004611e40565b610a1e565b34801561042457600080fd5b5061027d610433366004611e25565b610a52565b34801561044457600080fd5b5061036b610a6d565b34801561045957600080fd5b50610257610468366004611e25565b610ae6565b34801561047957600080fd5b50610257610488366004611e25565b610b04565b34801561049957600080fd5b506104a2610ba0565b60405161022e9190611e59565b3480156104bb57600080fd5b506102576104ca366004611e25565b610baf565b3480156104db57600080fd5b50610221610c55565b3480156104f057600080fd5b506102576104ff366004611e25565b610c64565b34801561051057600080fd5b5061027d610d01565b34801561052557600080fd5b5061036b610534366004611dbf565b610dcb565b34801561054557600080fd5b5061036b610554366004611e25565b610e56565b61036b610567366004611e40565b610ea7565b34801561057857600080fd5b50610257610587366004611dbf565b611268565b34801561059857600080fd5b5061036b6105a7366004611e25565b611303565b3480156105b857600080fd5b506102576105c7366004611dbf565b61135c565b3480156105d857600080fd5b5061036b6105e7366004611dbf565b611369565b3480156105f857600080fd5b50610257610607366004611e83565b611435565b34801561061857600080fd5b5061027d600b5481565b34801561062e57600080fd5b5061025761063d366004611e83565b6114ca565b34801561064e57600080fd5b5061025761065d366004611e25565b61155f565b34801561066e57600080fd5b5061027d61067d366004611f48565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106b457600080fd5b5061036b6106c3366004611e40565b61157d565b3480156106d457600080fd5b506102576106e3366004611e25565b6115b1565b3480156106f457600080fd5b50600e5461025790610100900460ff1681565b34801561071357600080fd5b5061036b611656565b34801561072857600080fd5b5061036b610737366004611e25565b611699565b34801561074857600080fd5b5061036b610757366004611e40565b611789565b34801561076857600080fd5b5061027d60095481565b60606003805461078190611f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546107ad90611f7b565b80156107fa5780601f106107cf576101008083540402835291602001916107fa565b820191906000526020600020905b8154815290600101906020018083116107dd57829003601f168201915b5050505050905090565b60006108113384846117bd565b5060015b92915050565b60006108288484846118e2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108b25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108c685336108c18685611fcc565b6117bd565b506001949350505050565b336108da610ba0565b6001600160a01b0316146109005760405162461bcd60e51b81526004016108a990611fe3565b600e805461ff001981166101009182900460ff1615909102179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108119185906108c1908690612018565b3361095d610ba0565b6001600160a01b0316146109835760405162461bcd60e51b81526004016108a990611fe3565b6040514790339082156108fc029083906000818181858888f193505050501580156109b2573d6000803e3d6000fd5b5050565b336109bf610ba0565b6001600160a01b0316146109e55760405162461bcd60e51b81526004016108a990611fe3565b600d55565b336109f3610ba0565b6001600160a01b031614610a195760405162461bcd60e51b81526004016108a990611fe3565b600b55565b33610a27610ba0565b6001600160a01b031614610a4d5760405162461bcd60e51b81526004016108a990611fe3565b600a55565b6001600160a01b031660009081526020819052604090205490565b33610a76610ba0565b6001600160a01b031614610a9c5760405162461bcd60e51b81526004016108a990611fe3565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6001600160a01b031660009081526010602052604090205460ff1690565b600033610b0f610ba0565b6001600160a01b031614610b355760405162461bcd60e51b81526004016108a990611fe3565b610b3e8261155f565b610b7b5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08189d5c9b9b1a5cdd195960921b60448201526064016108a9565b506001600160a01b03166000908152600f60205260409020805460ff19169055600190565b6005546001600160a01b031690565b600033610bba610ba0565b6001600160a01b031614610be05760405162461bcd60e51b81526004016108a990611fe3565b610be982610ae6565b15610c2c5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e4818db185a5b5b1a5cdd1959606a1b60448201526064016108a9565b506001600160a01b03166000908152601060205260409020805460ff1916600190811790915590565b60606004805461078190611f7b565b600033610c6f610ba0565b6001600160a01b031614610c955760405162461bcd60e51b81526004016108a990611fe3565b610c9e82610ae6565b610cdc5760405162461bcd60e51b815260206004820152600f60248201526e139bdd0818db185a5b5b1a5cdd1959608a1b60448201526064016108a9565b506001600160a01b03166000908152601060205260409020805460ff19169055600190565b600080610d1f670de0b6b3a7640000610d1960025490565b90611aa8565b9050600b54811115610d5f5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064016108a9565b623d09008110610d8a57610d846003600d54610d7b9190612114565b600c5490611abb565b91505090565b622dc6c08110610da657610d846002600d54610d7b9190612114565b621e84808110610dbf57600d54600c54610d8491611abb565b5050600c5490565b5090565b610dd43361155f565b80610dee575033610de3610ba0565b6001600160a01b0316145b610e4c5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c792063616c6c61626c65206279204275726e657220436f6e74726163746044820152681037b91027bbb732b960b91b60648201526084016108a9565b6109b28282611ac7565b33610e5f610ba0565b6001600160a01b031614610e855760405162461bcd60e51b81526004016108a990611fe3565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ebe670de0b6b3a7640000610d1960025490565b600e54909150610100900460ff16610f0e5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b60448201526064016108a9565b60008211610f5b5760405162461bcd60e51b815260206004820152601a60248201527906e756d6265724f66546f6b656e732063616e6e6f7420626520360341b60448201526064016108a9565b600b54610f688284611c04565b1115610f865760405162461bcd60e51b81526004016108a990612123565b6000610f9d670de0b6b3a7640000610d1933610a52565b600e5490915060ff16156111d95734610fbe84610fb8610d01565b90611abb565b1115610fdc5760405162461bcd60e51b81526004016108a990612151565b600e546040516370a0823160e01b81526000916201000090046001600160a01b0316906370a0823190611013903390600401611e59565b602060405180830381865afa158015611030573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110549190612181565b116110d35760405162461bcd60e51b815260206004820152604360248201527f596f75206d757374206f776e206174206c65617374206f6e652053616d6f742060448201527f4e465420746f20706172746963697061746520696e20746865207072652d736160648201526236329760e91b608482015260a4016108a9565b600e546040516370a0823160e01b8152611155916201000090046001600160a01b0316906370a082319061110b903390600401611e59565b602060405180830381865afa158015611128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114c9190612181565b60095490611abb565b8311156111745760405162461bcd60e51b81526004016108a99061219a565b600e546040516370a0823160e01b81526111ac916201000090046001600160a01b0316906370a082319061110b903390600401611e59565b6111b68285611c04565b11156111d45760405162461bcd60e51b81526004016108a99061219a565b611248565b346111e684610fb8610d01565b11156112045760405162461bcd60e51b81526004016108a990612151565b600a548311156112265760405162461bcd60e51b81526004016108a9906121cf565b600a548111156112485760405162461bcd60e51b81526004016108a9906121cf565b6112633361125e85670de0b6b3a7640000611abb565b611c10565b505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a9565b6112f933856108c18685611fcc565b5060019392505050565b3361130c610ba0565b6001600160a01b0316146113325760405162461bcd60e51b81526004016108a990611fe3565b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60006108113384846118e2565b61137233610ae6565b8061138c575033611381610ba0565b6001600160a01b0316145b6113eb5760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c792063616c6c61626c6520627920436c61696d657220436f6e747261636044820152693a1037b91027bbb732b960b11b60648201526084016108a9565b600b5461140d670de0b6b3a7640000610d198461140760025490565b90611c04565b111561142b5760405162461bcd60e51b81526004016108a990612123565b6109b28282611c10565b600033611440610ba0565b6001600160a01b0316146114665760405162461bcd60e51b81526004016108a990611fe3565b8151611479906007906020850190611cdd565b5060005b600754811015610811576114b76007828154811061149d5761149d612206565b6000918252602090912001546001600160a01b03166115b1565b50806114c28161221c565b91505061147d565b6000336114d5610ba0565b6001600160a01b0316146114fb5760405162461bcd60e51b81526004016108a990611fe3565b815161150e906008906020850190611cdd565b5060005b6008548110156108115761154c6008828154811061153257611532612206565b6000918252602090912001546001600160a01b0316610baf565b50806115578161221c565b915050611512565b6001600160a01b03166000908152600f602052604090205460ff1690565b33611586610ba0565b6001600160a01b0316146115ac5760405162461bcd60e51b81526004016108a990611fe3565b600955565b6000336115bc610ba0565b6001600160a01b0316146115e25760405162461bcd60e51b81526004016108a990611fe3565b6115eb8261155f565b1561162d5760405162461bcd60e51b8152602060048201526012602482015271105b1c9958591e48189d5c9b9b1a5cdd195960721b60448201526064016108a9565b506001600160a01b03166000908152600f60205260409020805460ff1916600190811790915590565b3361165f610ba0565b6001600160a01b0316146116855760405162461bcd60e51b81526004016108a990611fe3565b600e805460ff19811660ff90911615179055565b336116a2610ba0565b6001600160a01b0316146116c85760405162461bcd60e51b81526004016108a990611fe3565b6001600160a01b03811661172d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a9565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b33611792610ba0565b6001600160a01b0316146117b85760405162461bcd60e51b81526004016108a990611fe3565b600c55565b6001600160a01b03831661181f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a9565b6001600160a01b0382166118805760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166119465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108a9565b6001600160a01b0382166119a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108a9565b6001600160a01b03831660009081526020819052604090205481811015611a205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a9565b611a2a8282611fcc565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611a60908490612018565b92505081905550826001600160a01b0316846001600160a01b031660008051602061227983398151915284604051611a9a91815260200190565b60405180910390a350505050565b6000611ab48284612237565b9392505050565b6000611ab48284612259565b6001600160a01b038216611b275760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108a9565b6001600160a01b03821660009081526020819052604090205481811015611b9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108a9565b611ba58282611fcc565b6001600160a01b03841660009081526020819052604081209190915560028054849290611bd3908490611fcc565b90915550506040518281526000906001600160a01b03851690600080516020612279833981519152906020016118d5565b6000611ab48284612018565b6001600160a01b038216611c665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108a9565b8060026000828254611c789190612018565b90915550506001600160a01b03821660009081526020819052604081208054839290611ca5908490612018565b90915550506040518181526001600160a01b038316906000906000805160206122798339815191529060200160405180910390a35050565b828054828255906000526020600020908101928215611d32579160200282015b82811115611d3257825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611cfd565b50610dc79291505b80821115610dc75760008155600101611d3a565b600060208083528351808285015260005b81811015611d7b57858101830151858201604001528201611d5f565b81811115611d8d576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114611dba57600080fd5b919050565b60008060408385031215611dd257600080fd5b611ddb83611da3565b946020939093013593505050565b600080600060608486031215611dfe57600080fd5b611e0784611da3565b9250611e1560208501611da3565b9150604084013590509250925092565b600060208284031215611e3757600080fd5b611ab482611da3565b600060208284031215611e5257600080fd5b5035919050565b6001600160a01b0391909116815260200190565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611e9657600080fd5b823567ffffffffffffffff80821115611eae57600080fd5b818501915085601f830112611ec257600080fd5b813581811115611ed457611ed4611e6d565b8060051b604051601f19603f83011681018181108582111715611ef957611ef9611e6d565b604052918252848201925083810185019188831115611f1757600080fd5b938501935b82851015611f3c57611f2d85611da3565b84529385019392850192611f1c565b98975050505050505050565b60008060408385031215611f5b57600080fd5b611f6483611da3565b9150611f7260208401611da3565b90509250929050565b600181811c90821680611f8f57607f821691505b60208210811415611fb057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611fde57611fde611fb6565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561202b5761202b611fb6565b500190565b600181815b8085111561206b57816000190482111561205157612051611fb6565b8085161561205e57918102915b93841c9390800290612035565b509250929050565b60008261208257506001610815565b8161208f57506000610815565b81600181146120a557600281146120af576120cb565b6001915050610815565b60ff8411156120c0576120c0611fb6565b50506001821b610815565b5060208310610133831016604e8410600b84101617156120ee575081810a610815565b6120f88383612030565b806000190482111561210c5761210c611fb6565b029392505050565b6000611ab460ff841683612073565b60208082526014908201527322bc31b2b2b239903a37b5b2b7103634b6b4ba1760611b604082015260600190565b60208082526016908201527522aa241039b2b73a1034b99034b731b7b93932b1ba1760511b604082015260600190565b60006020828403121561219357600080fd5b5051919050565b6020808252601b908201527a22bc31b2b2b239903634b6b4ba103337b91038393296b9b0b6329760291b604082015260600190565b6020808252601e908201527f45786365656473206c696d697420666f72207075626c69632073616c652e0000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561223057612230611fb6565b5060010190565b60008261225457634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561227357612273611fb6565b50029056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d9b4231da5825f98ab5a0fbac47747432de0e9c8e4d4f3d211cbdc0b97dc9b1964736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000049fdbfa1126638ce7ef2ca1a0f7759109f12595d000000000000000000000000000000000000000000000000000000000000000b53616d6f7420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553414d4f54000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Samot Token
Arg [1] : _symbol (string): SAMOT
Arg [2] : _nftAddress (address): 0x49fDbfa1126638CE7eF2CA1A0f7759109f12595d

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000049fdbfa1126638ce7ef2ca1a0f7759109f12595d
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 53616d6f7420546f6b656e000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 53414d4f54000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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