ETH Price: $3,282.86 (+0.20%)

Token

TWITTERDOGE (TWITTERDOGE)
 

Overview

Max Total Supply

10,000,000,000 TWITTERDOGE

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
TransitSwap: Router V4
Balance
104,602.653733932 TWITTERDOGE

Value
$0.00
0x9865eebdd1ce65f45b6247aeed2fa2252eca7a08
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:
StandardToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-29
*/

/**
 *Submitted for verification at BscScan.com on 2022-10-23
*/

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


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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

    /**
     * @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");
        _setOwner(newOwner);
    }

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


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

// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.4;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/BaseToken.sol";

contract StandardToken is IERC20, Ownable {
    using SafeMath for uint256;

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

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupply_,
        address receiveAddress
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;

        _totalSupply = totalSupply_ * 10 ** _decimals;
        _balances[receiveAddress] = _totalSupply;
        emit Transfer(address(0), receiveAddress, _totalSupply);
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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].add(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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        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);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"receiveAddress","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":"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":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001fb738038062001fb78339818101604052810190620000379190620003c3565b620000576200004b6200019060201b60201c565b6200019860201b60201c565b84600390805190602001906200006f9291906200025c565b508360049080519060200190620000889291906200025c565b5082600560006101000a81548160ff021916908360ff160217905550600560009054906101000a900460ff16600a620000c291906200055f565b82620000cf91906200069c565b600681905550600654600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200017d919062000488565b60405180910390a35050505050620008e3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026a906200077e565b90600052602060002090601f0160209004810192826200028e5760008555620002da565b82601f10620002a957805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002d9578251825591602001919060010190620002bc565b5b509050620002e99190620002ed565b5090565b5b8082111562000308576000816000905550600101620002ee565b5090565b6000620003236200031d84620004ce565b620004a5565b9050828152602081018484840111156200033c57600080fd5b6200034984828562000748565b509392505050565b600081519050620003628162000895565b92915050565b600082601f8301126200037a57600080fd5b81516200038c8482602086016200030c565b91505092915050565b600081519050620003a681620008af565b92915050565b600081519050620003bd81620008c9565b92915050565b600080600080600060a08688031215620003dc57600080fd5b600086015167ffffffffffffffff811115620003f757600080fd5b620004058882890162000368565b955050602086015167ffffffffffffffff8111156200042357600080fd5b620004318882890162000368565b94505060406200044488828901620003ac565b9350506060620004578882890162000395565b92505060806200046a8882890162000351565b9150509295509295909350565b620004828162000731565b82525050565b60006020820190506200049f600083018462000477565b92915050565b6000620004b1620004c4565b9050620004bf8282620007b4565b919050565b6000604051905090565b600067ffffffffffffffff821115620004ec57620004eb62000848565b5b620004f78262000877565b9050602081019050919050565b6000808291508390505b600185111562000556578086048111156200052e576200052d620007ea565b5b60018516156200053e5780820291505b80810290506200054e8562000888565b94506200050e565b94509492505050565b60006200056c8262000731565b915062000579836200073b565b9250620005a87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005b0565b905092915050565b600082620005c2576001905062000695565b81620005d2576000905062000695565b8160018114620005eb5760028114620005f6576200062c565b600191505062000695565b60ff8411156200060b576200060a620007ea565b5b8360020a915084821115620006255762000624620007ea565b5b5062000695565b5060208310610133831016604e8410600b8410161715620006665782820a90508381111562000660576200065f620007ea565b5b62000695565b62000675848484600162000504565b925090508184048111156200068f576200068e620007ea565b5b81810290505b9392505050565b6000620006a98262000731565b9150620006b68362000731565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006f257620006f1620007ea565b5b828202905092915050565b60006200070a8262000711565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015620007685780820151818401526020810190506200074b565b8381111562000778576000848401525b50505050565b600060028204905060018216806200079757607f821691505b60208210811415620007ae57620007ad62000819565b5b50919050565b620007bf8262000877565b810181811067ffffffffffffffff82111715620007e157620007e062000848565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b620008a081620006fd565b8114620008ac57600080fd5b50565b620008ba8162000731565b8114620008c657600080fd5b50565b620008d4816200073b565b8114620008e057600080fd5b50565b6116c480620008f36000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190611186565b60405180910390f35b61012760048036038101906101229190610fcd565b61038d565b604051610134919061116b565b60405180910390f35b6101456103ab565b6040516101529190611268565b60405180910390f35b61017560048036038101906101709190610f7e565b6103b5565b604051610182919061116b565b60405180910390f35b61019361048e565b6040516101a09190611283565b60405180910390f35b6101c360048036038101906101be9190610fcd565b6104a5565b6040516101d0919061116b565b60405180910390f35b6101f360048036038101906101ee9190610f19565b610558565b6040516102009190611268565b60405180910390f35b6102116105a1565b005b61021b61062a565b6040516102289190611150565b60405180910390f35b610239610653565b6040516102469190611186565b60405180910390f35b61026960048036038101906102649190610fcd565b6106e5565b604051610276919061116b565b60405180910390f35b61029960048036038101906102949190610fcd565b6107b2565b6040516102a6919061116b565b60405180910390f35b6102c960048036038101906102c49190610f42565b6107d0565b6040516102d69190611268565b60405180910390f35b6102f960048036038101906102f49190610f19565b610857565b005b60606003805461030a90611398565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611398565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a61094f565b8484610957565b6001905092915050565b6000600654905090565b60006103c2848484610b22565b610483846103ce61094f565b61047e8560405180606001604052806028815260200161164260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061043461094f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dbb9092919063ffffffff16565b610957565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061054e6104b261094f565b8461054985600260006104c361094f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1090919063ffffffff16565b610957565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a961094f565b73ffffffffffffffffffffffffffffffffffffffff166105c761062a565b73ffffffffffffffffffffffffffffffffffffffff161461061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611208565b60405180910390fd5b61062861dead610e26565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066290611398565b80601f016020809104026020016040519081016040528092919081815260200182805461068e90611398565b80156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b60006107a86106f261094f565b846107a38560405180606001604052806025815260200161166a602591396002600061071c61094f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dbb9092919063ffffffff16565b610957565b6001905092915050565b60006107c66107bf61094f565b8484610b22565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61085f61094f565b73ffffffffffffffffffffffffffffffffffffffff1661087d61062a565b73ffffffffffffffffffffffffffffffffffffffff16146108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906111c8565b60405180910390fd5b61094c81610e26565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be90611248565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906111e8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b159190611268565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990611228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf9906111a8565b60405180910390fd5b610c0d838383610eea565b610c798160405180606001604052806026815260200161161c60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dbb9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d0e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dae9190611268565b60405180910390a3505050565b6000838311158290610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa9190611186565b60405180910390fd5b5082840390509392505050565b60008183610e1e91906112ba565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081359050610efe816115ed565b92915050565b600081359050610f1381611604565b92915050565b600060208284031215610f2b57600080fd5b6000610f3984828501610eef565b91505092915050565b60008060408385031215610f5557600080fd5b6000610f6385828601610eef565b9250506020610f7485828601610eef565b9150509250929050565b600080600060608486031215610f9357600080fd5b6000610fa186828701610eef565b9350506020610fb286828701610eef565b9250506040610fc386828701610f04565b9150509250925092565b60008060408385031215610fe057600080fd5b6000610fee85828601610eef565b9250506020610fff85828601610f04565b9150509250929050565b61101281611310565b82525050565b61102181611322565b82525050565b60006110328261129e565b61103c81856112a9565b935061104c818560208601611365565b61105581611428565b840191505092915050565b600061106d6023836112a9565b915061107882611439565b604082019050919050565b60006110906026836112a9565b915061109b82611488565b604082019050919050565b60006110b36022836112a9565b91506110be826114d7565b604082019050919050565b60006110d66020836112a9565b91506110e182611526565b602082019050919050565b60006110f96025836112a9565b91506111048261154f565b604082019050919050565b600061111c6024836112a9565b91506111278261159e565b604082019050919050565b61113b8161134e565b82525050565b61114a81611358565b82525050565b60006020820190506111656000830184611009565b92915050565b60006020820190506111806000830184611018565b92915050565b600060208201905081810360008301526111a08184611027565b905092915050565b600060208201905081810360008301526111c181611060565b9050919050565b600060208201905081810360008301526111e181611083565b9050919050565b60006020820190508181036000830152611201816110a6565b9050919050565b60006020820190508181036000830152611221816110c9565b9050919050565b60006020820190508181036000830152611241816110ec565b9050919050565b600060208201905081810360008301526112618161110f565b9050919050565b600060208201905061127d6000830184611132565b92915050565b60006020820190506112986000830184611141565b92915050565b600081519050919050565b600082825260208201905092915050565b60006112c58261134e565b91506112d08361134e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611305576113046113ca565b5b828201905092915050565b600061131b8261132e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611383578082015181840152602081019050611368565b83811115611392576000848401525b50505050565b600060028204905060018216806113b057607f821691505b602082108114156113c4576113c36113f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6115f681611310565b811461160157600080fd5b50565b61160d8161134e565b811461161857600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122094398affc265213d2516a817c259b4504fce4bd696370d3220a20bfb0cec268164736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000002540be4000000000000000000000000009631b19fee5c20f314f4c5d63102a8f07e669733000000000000000000000000000000000000000000000000000000000000000b54574954544552444f4745000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b54574954544552444f4745000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190611186565b60405180910390f35b61012760048036038101906101229190610fcd565b61038d565b604051610134919061116b565b60405180910390f35b6101456103ab565b6040516101529190611268565b60405180910390f35b61017560048036038101906101709190610f7e565b6103b5565b604051610182919061116b565b60405180910390f35b61019361048e565b6040516101a09190611283565b60405180910390f35b6101c360048036038101906101be9190610fcd565b6104a5565b6040516101d0919061116b565b60405180910390f35b6101f360048036038101906101ee9190610f19565b610558565b6040516102009190611268565b60405180910390f35b6102116105a1565b005b61021b61062a565b6040516102289190611150565b60405180910390f35b610239610653565b6040516102469190611186565b60405180910390f35b61026960048036038101906102649190610fcd565b6106e5565b604051610276919061116b565b60405180910390f35b61029960048036038101906102949190610fcd565b6107b2565b6040516102a6919061116b565b60405180910390f35b6102c960048036038101906102c49190610f42565b6107d0565b6040516102d69190611268565b60405180910390f35b6102f960048036038101906102f49190610f19565b610857565b005b60606003805461030a90611398565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611398565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a61094f565b8484610957565b6001905092915050565b6000600654905090565b60006103c2848484610b22565b610483846103ce61094f565b61047e8560405180606001604052806028815260200161164260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061043461094f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dbb9092919063ffffffff16565b610957565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061054e6104b261094f565b8461054985600260006104c361094f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1090919063ffffffff16565b610957565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a961094f565b73ffffffffffffffffffffffffffffffffffffffff166105c761062a565b73ffffffffffffffffffffffffffffffffffffffff161461061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611208565b60405180910390fd5b61062861dead610e26565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066290611398565b80601f016020809104026020016040519081016040528092919081815260200182805461068e90611398565b80156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b60006107a86106f261094f565b846107a38560405180606001604052806025815260200161166a602591396002600061071c61094f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dbb9092919063ffffffff16565b610957565b6001905092915050565b60006107c66107bf61094f565b8484610b22565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61085f61094f565b73ffffffffffffffffffffffffffffffffffffffff1661087d61062a565b73ffffffffffffffffffffffffffffffffffffffff16146108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906111c8565b60405180910390fd5b61094c81610e26565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be90611248565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906111e8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b159190611268565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990611228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf9906111a8565b60405180910390fd5b610c0d838383610eea565b610c798160405180606001604052806026815260200161161c60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dbb9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d0e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dae9190611268565b60405180910390a3505050565b6000838311158290610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa9190611186565b60405180910390fd5b5082840390509392505050565b60008183610e1e91906112ba565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081359050610efe816115ed565b92915050565b600081359050610f1381611604565b92915050565b600060208284031215610f2b57600080fd5b6000610f3984828501610eef565b91505092915050565b60008060408385031215610f5557600080fd5b6000610f6385828601610eef565b9250506020610f7485828601610eef565b9150509250929050565b600080600060608486031215610f9357600080fd5b6000610fa186828701610eef565b9350506020610fb286828701610eef565b9250506040610fc386828701610f04565b9150509250925092565b60008060408385031215610fe057600080fd5b6000610fee85828601610eef565b9250506020610fff85828601610f04565b9150509250929050565b61101281611310565b82525050565b61102181611322565b82525050565b60006110328261129e565b61103c81856112a9565b935061104c818560208601611365565b61105581611428565b840191505092915050565b600061106d6023836112a9565b915061107882611439565b604082019050919050565b60006110906026836112a9565b915061109b82611488565b604082019050919050565b60006110b36022836112a9565b91506110be826114d7565b604082019050919050565b60006110d66020836112a9565b91506110e182611526565b602082019050919050565b60006110f96025836112a9565b91506111048261154f565b604082019050919050565b600061111c6024836112a9565b91506111278261159e565b604082019050919050565b61113b8161134e565b82525050565b61114a81611358565b82525050565b60006020820190506111656000830184611009565b92915050565b60006020820190506111806000830184611018565b92915050565b600060208201905081810360008301526111a08184611027565b905092915050565b600060208201905081810360008301526111c181611060565b9050919050565b600060208201905081810360008301526111e181611083565b9050919050565b60006020820190508181036000830152611201816110a6565b9050919050565b60006020820190508181036000830152611221816110c9565b9050919050565b60006020820190508181036000830152611241816110ec565b9050919050565b600060208201905081810360008301526112618161110f565b9050919050565b600060208201905061127d6000830184611132565b92915050565b60006020820190506112986000830184611141565b92915050565b600081519050919050565b600082825260208201905092915050565b60006112c58261134e565b91506112d08361134e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611305576113046113ca565b5b828201905092915050565b600061131b8261132e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611383578082015181840152602081019050611368565b83811115611392576000848401525b50505050565b600060028204905060018216806113b057607f821691505b602082108114156113c4576113c36113f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6115f681611310565b811461160157600080fd5b50565b61160d8161134e565b811461161857600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122094398affc265213d2516a817c259b4504fce4bd696370d3220a20bfb0cec268164736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000002540be4000000000000000000000000009631b19fee5c20f314f4c5d63102a8f07e669733000000000000000000000000000000000000000000000000000000000000000b54574954544552444f4745000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b54574954544552444f4745000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): TWITTERDOGE
Arg [1] : symbol_ (string): TWITTERDOGE
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 10000000000
Arg [4] : receiveAddress (address): 0x9631b19fee5C20F314f4c5D63102A8F07E669733

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [4] : 0000000000000000000000009631b19fee5c20f314f4c5d63102a8f07e669733
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 54574954544552444f4745000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 54574954544552444f4745000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13430:8967:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14273:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16560:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15372:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17252:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15216:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18115:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15543:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5524:99;;;:::i;:::-;;4873:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14483:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18918:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15933:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16212:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5778:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14273:91;14318:13;14351:5;14344:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14273:91;:::o;16560:210::-;16679:4;16701:39;16710:12;:10;:12::i;:::-;16724:7;16733:6;16701:8;:39::i;:::-;16758:4;16751:11;;16560:210;;;;:::o;15372:108::-;15433:7;15460:12;;15453:19;;15372:108;:::o;17252:454::-;17392:4;17409:36;17419:6;17427:9;17438:6;17409:9;:36::i;:::-;17456:220;17479:6;17500:12;:10;:12::i;:::-;17527:138;17583:6;17527:138;;;;;;;;;;;;;;;;;:11;:19;17539:6;17527:19;;;;;;;;;;;;;;;:33;17547:12;:10;:12::i;:::-;17527:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;17456:8;:220::i;:::-;17694:4;17687:11;;17252:454;;;;;:::o;15216:91::-;15265:5;15290:9;;;;;;;;;;;15283:16;;15216:91;:::o;18115:300::-;18230:4;18252:133;18275:12;:10;:12::i;:::-;18302:7;18324:50;18363:10;18324:11;:25;18336:12;:10;:12::i;:::-;18324:25;;;;;;;;;;;;;;;:34;18350:7;18324:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18252:8;:133::i;:::-;18403:4;18396:11;;18115:300;;;;:::o;15543:177::-;15662:7;15694:9;:18;15704:7;15694:18;;;;;;;;;;;;;;;;15687:25;;15543:177;;;:::o;5524:99::-;5104:12;:10;:12::i;:::-;5093:23;;:7;:5;:7::i;:::-;:23;;;5085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5589:26:::1;5607:6;5589:9;:26::i;:::-;5524:99::o:0;4873:87::-;4919:7;4946:6;;;;;;;;;;;4939:13;;4873:87;:::o;14483:95::-;14530:13;14563:7;14556:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14483:95;:::o;18918:400::-;19038:4;19060:228;19083:12;:10;:12::i;:::-;19110:7;19132:145;19189:15;19132:145;;;;;;;;;;;;;;;;;:11;:25;19144:12;:10;:12::i;:::-;19132:25;;;;;;;;;;;;;;;:34;19158:7;19132:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;19060:8;:228::i;:::-;19306:4;19299:11;;18918:400;;;;:::o;15933:216::-;16055:4;16077:42;16087:12;:10;:12::i;:::-;16101:9;16112:6;16077:9;:42::i;:::-;16137:4;16130:11;;15933:216;;;;:::o;16212:201::-;16346:7;16378:11;:18;16390:5;16378:18;;;;;;;;;;;;;;;:27;16397:7;16378:27;;;;;;;;;;;;;;;;16371:34;;16212:201;;;;:::o;5778:192::-;5104:12;:10;:12::i;:::-;5093:23;;:7;:5;:7::i;:::-;:23;;;5085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5887:1:::1;5867:22;;:8;:22;;;;5859:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5943:19;5953:8;5943:9;:19::i;:::-;5778:192:::0;:::o;3591:98::-;3644:7;3671:10;3664:17;;3591:98;:::o;20856:380::-;21009:1;20992:19;;:5;:19;;;;20984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21090:1;21071:21;;:7;:21;;;;21063:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21174:6;21144:11;:18;21156:5;21144:18;;;;;;;;;;;;;;;:27;21163:7;21144:27;;;;;;;;;;;;;;;:36;;;;21212:7;21196:32;;21205:5;21196:32;;;21221:6;21196:32;;;;;;:::i;:::-;;;;;;;;20856:380;;;:::o;19808:610::-;19966:1;19948:20;;:6;:20;;;;19940:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20050:1;20029:23;;:9;:23;;;;20021:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20105:47;20126:6;20134:9;20145:6;20105:20;:47::i;:::-;20185:108;20221:6;20185:108;;;;;;;;;;;;;;;;;:9;:17;20195:6;20185:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;20165:9;:17;20175:6;20165:17;;;;;;;;;;;;;;;:128;;;;20327:32;20352:6;20327:9;:20;20337:9;20327:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20304:9;:20;20314:9;20304:20;;;;;;;;;;;;;;;:55;;;;20392:9;20375:35;;20384:6;20375:35;;;20403:6;20375:35;;;;;;:::i;:::-;;;;;;;;19808:610;;;:::o;11243:240::-;11363:7;11421:1;11416;:6;;11424:12;11408:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11463:1;11459;:5;11452:12;;11243:240;;;;;:::o;8964:98::-;9022:7;9053:1;9049;:5;;;;:::i;:::-;9042:12;;8964:98;;;;:::o;5978:173::-;6034:16;6053:6;;;;;;;;;;;6034:25;;6079:8;6070:6;;:17;;;;;;;;;;;;;;;;;;6134:8;6103:40;;6124:8;6103:40;;;;;;;;;;;;5978:173;;:::o;22269:125::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;2276:3;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:366::-;2700:3;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:366::-;3072:3;3093:67;3157:2;3152:3;3093:67;:::i;:::-;3086:74;;3169:93;3258:3;3169:93;:::i;:::-;3287:2;3282:3;3278:12;3271:19;;3076:220;;;:::o;3302:366::-;3444:3;3465:67;3529:2;3524:3;3465:67;:::i;:::-;3458:74;;3541:93;3630:3;3541:93;:::i;:::-;3659:2;3654:3;3650:12;3643:19;;3448:220;;;:::o;3674:366::-;3816:3;3837:67;3901:2;3896:3;3837:67;:::i;:::-;3830:74;;3913:93;4002:3;3913:93;:::i;:::-;4031:2;4026:3;4022:12;4015:19;;3820:220;;;:::o;4046:366::-;4188:3;4209:67;4273:2;4268:3;4209:67;:::i;:::-;4202:74;;4285:93;4374:3;4285:93;:::i;:::-;4403:2;4398:3;4394:12;4387:19;;4192:220;;;:::o;4418:366::-;4560:3;4581:67;4645:2;4640:3;4581:67;:::i;:::-;4574:74;;4657:93;4746:3;4657:93;:::i;:::-;4775:2;4770:3;4766:12;4759:19;;4564:220;;;:::o;4790:118::-;4877:24;4895:5;4877:24;:::i;:::-;4872:3;4865:37;4855:53;;:::o;4914:112::-;4997:22;5013:5;4997:22;:::i;:::-;4992:3;4985:35;4975:51;;:::o;5032:222::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:71;5244:1;5233:9;5229:17;5220:6;5176:71;:::i;:::-;5130:124;;;;:::o;5260:210::-;5347:4;5385:2;5374:9;5370:18;5362:26;;5398:65;5460:1;5449:9;5445:17;5436:6;5398:65;:::i;:::-;5352:118;;;;:::o;5476:313::-;5589:4;5627:2;5616:9;5612:18;5604:26;;5676:9;5670:4;5666:20;5662:1;5651:9;5647:17;5640:47;5704:78;5777:4;5768:6;5704:78;:::i;:::-;5696:86;;5594:195;;;;:::o;5795:419::-;5961:4;5999:2;5988:9;5984:18;5976:26;;6048:9;6042:4;6038:20;6034:1;6023:9;6019:17;6012:47;6076:131;6202:4;6076:131;:::i;:::-;6068:139;;5966:248;;;:::o;6220:419::-;6386:4;6424:2;6413:9;6409:18;6401:26;;6473:9;6467:4;6463:20;6459:1;6448:9;6444:17;6437:47;6501:131;6627:4;6501:131;:::i;:::-;6493:139;;6391:248;;;:::o;6645:419::-;6811:4;6849:2;6838:9;6834:18;6826:26;;6898:9;6892:4;6888:20;6884:1;6873:9;6869:17;6862:47;6926:131;7052:4;6926:131;:::i;:::-;6918:139;;6816:248;;;:::o;7070:419::-;7236:4;7274:2;7263:9;7259:18;7251:26;;7323:9;7317:4;7313:20;7309:1;7298:9;7294:17;7287:47;7351:131;7477:4;7351:131;:::i;:::-;7343:139;;7241:248;;;:::o;7495:419::-;7661:4;7699:2;7688:9;7684:18;7676:26;;7748:9;7742:4;7738:20;7734:1;7723:9;7719:17;7712:47;7776:131;7902:4;7776:131;:::i;:::-;7768:139;;7666:248;;;:::o;7920:419::-;8086:4;8124:2;8113:9;8109:18;8101:26;;8173:9;8167:4;8163:20;8159:1;8148:9;8144:17;8137:47;8201:131;8327:4;8201:131;:::i;:::-;8193:139;;8091:248;;;:::o;8345:222::-;8438:4;8476:2;8465:9;8461:18;8453:26;;8489:71;8557:1;8546:9;8542:17;8533:6;8489:71;:::i;:::-;8443:124;;;;:::o;8573:214::-;8662:4;8700:2;8689:9;8685:18;8677:26;;8713:67;8777:1;8766:9;8762:17;8753:6;8713:67;:::i;:::-;8667:120;;;;:::o;8793:99::-;8845:6;8879:5;8873:12;8863:22;;8852:40;;;:::o;8898:169::-;8982:11;9016:6;9011:3;9004:19;9056:4;9051:3;9047:14;9032:29;;8994:73;;;;:::o;9073:305::-;9113:3;9132:20;9150:1;9132:20;:::i;:::-;9127:25;;9166:20;9184:1;9166:20;:::i;:::-;9161:25;;9320:1;9252:66;9248:74;9245:1;9242:81;9239:2;;;9326:18;;:::i;:::-;9239:2;9370:1;9367;9363:9;9356:16;;9117:261;;;;:::o;9384:96::-;9421:7;9450:24;9468:5;9450:24;:::i;:::-;9439:35;;9429:51;;;:::o;9486:90::-;9520:7;9563:5;9556:13;9549:21;9538:32;;9528:48;;;:::o;9582:126::-;9619:7;9659:42;9652:5;9648:54;9637:65;;9627:81;;;:::o;9714:77::-;9751:7;9780:5;9769:16;;9759:32;;;:::o;9797:86::-;9832:7;9872:4;9865:5;9861:16;9850:27;;9840:43;;;:::o;9889:307::-;9957:1;9967:113;9981:6;9978:1;9975:13;9967:113;;;10066:1;10061:3;10057:11;10051:18;10047:1;10042:3;10038:11;10031:39;10003:2;10000:1;9996:10;9991:15;;9967:113;;;10098:6;10095:1;10092:13;10089:2;;;10178:1;10169:6;10164:3;10160:16;10153:27;10089:2;9938:258;;;;:::o;10202:320::-;10246:6;10283:1;10277:4;10273:12;10263:22;;10330:1;10324:4;10320:12;10351:18;10341:2;;10407:4;10399:6;10395:17;10385:27;;10341:2;10469;10461:6;10458:14;10438:18;10435:38;10432:2;;;10488:18;;:::i;:::-;10432:2;10253:269;;;;:::o;10528:180::-;10576:77;10573:1;10566:88;10673:4;10670:1;10663:15;10697:4;10694:1;10687:15;10714:180;10762:77;10759:1;10752:88;10859:4;10856:1;10849:15;10883:4;10880:1;10873:15;10900:102;10941:6;10992:2;10988:7;10983:2;10976:5;10972:14;10968:28;10958:38;;10948:54;;;:::o;11008:222::-;11148:34;11144:1;11136:6;11132:14;11125:58;11217:5;11212:2;11204:6;11200:15;11193:30;11114:116;:::o;11236:225::-;11376:34;11372:1;11364:6;11360:14;11353:58;11445:8;11440:2;11432:6;11428:15;11421:33;11342:119;:::o;11467:221::-;11607:34;11603:1;11595:6;11591:14;11584:58;11676:4;11671:2;11663:6;11659:15;11652:29;11573:115;:::o;11694:182::-;11834:34;11830:1;11822:6;11818:14;11811:58;11800:76;:::o;11882:224::-;12022:34;12018:1;12010:6;12006:14;11999:58;12091:7;12086:2;12078:6;12074:15;12067:32;11988:118;:::o;12112:223::-;12252:34;12248:1;12240:6;12236:14;12229:58;12321:6;12316:2;12308:6;12304:15;12297:31;12218:117;:::o;12341:122::-;12414:24;12432:5;12414:24;:::i;:::-;12407:5;12404:35;12394:2;;12453:1;12450;12443:12;12394:2;12384:79;:::o;12469:122::-;12542:24;12560:5;12542:24;:::i;:::-;12535:5;12532:35;12522:2;;12581:1;12578;12571:12;12522:2;12512:79;:::o

Swarm Source

ipfs://94398affc265213d2516a817c259b4504fce4bd696370d3220a20bfb0cec2681
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.