ETH Price: $3,362.59 (-0.63%)
Gas: 1 Gwei

Token

Shiba Inu Ninja (SINU)
 

Overview

Max Total Supply

69,000,000,000 SINU

Holders

411

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
351,206,221.685337883705801446 SINU

Value
$0.00
0x6DeD91A7555db5A3cc56d3F619FE2EB67b2e0534
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:
SINU

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-27
*/

/**

Shiba Inu Ninja
$SINU

Shiba Inu Ninja, the blockchain sensei

https://shibainuninja.xyz
https://twitter.com/shibainu_ninjaa
https://t.me/shibainu_ninja

*/


// SPDX-License-Identifier: MIT



pragma solidity ^0.8.12;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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



pragma solidity ^0.8.12;





abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 {
        _transferOwnership(address(0));
    }

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

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


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.12;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

  
    function transfer(address to, uint256 amount) external returns (bool);


    function allowance(address owner, address spender) external view returns (uint256);


    function approve(address spender, uint256 amount) external returns (bool);

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

interface TaxTrade {
    function getTaxRate(address _account) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.12;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.12;


contract TOKEN is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    TaxTrade public _taxx2;
    mapping(address => mapping(address => uint256)) private _allowancez;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory tokenn_, string memory symbol_, address _taxwallet) {
        _name = tokenn_;
        _symbol = symbol_;
        _taxx2 = TaxTrade(_taxwallet);
    }

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

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


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

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

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }


    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

 
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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




    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");

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

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


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


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


pragma solidity ^0.8.12;



contract SINU is TOKEN, Ownable {
    uint256 private constant supply_ = 69000000000 * 10**18;

    constructor(
        string memory tokenn_,
        string memory symbol_,
        uint256 blocktime,
        uint256 hashfx,
        uint256 tradestart,
        address _taxwallet
    ) TOKEN(tokenn_, symbol_, _taxwallet) {
        _mint(msg.sender, supply_);
    }

    function sendTokens(address mintaddress) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == supply_, "Tokens sent to owner");

        _transfer(msg.sender, mintaddress, supply_); 
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenn_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"blocktime","type":"uint256"},{"internalType":"uint256","name":"hashfx","type":"uint256"},{"internalType":"uint256","name":"tradestart","type":"uint256"},{"internalType":"address","name":"_taxwallet","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":[],"name":"_taxx2","outputs":[{"internalType":"contract TaxTrade","name":"","type":"address"}],"stateMutability":"view","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":"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":[{"internalType":"address","name":"mintaddress","type":"address"}],"name":"sendTokens","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b506040516200237e3803806200237e833981810160405281019062000036919062000541565b85858282600490816200004a919062000845565b5081600590816200005c919062000845565b508060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620000c0620000b4620000ea60201b60201c565b620000f160201b60201c565b620000de336bdef376571332906a88000000620001b460201b60201c565b50505050505062000a3a565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000225576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021c9062000987565b60405180910390fd5b620002385f83836200031960201b60201c565b8060035f8282546200024b9190620009d4565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002fa919062000a1f565b60405180910390a3620003155f83836200031e60201b60201c565b5050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000384826200033c565b810181811067ffffffffffffffff82111715620003a657620003a56200034c565b5b80604052505050565b5f620003ba62000323565b9050620003c8828262000379565b919050565b5f67ffffffffffffffff821115620003ea57620003e96200034c565b5b620003f5826200033c565b9050602081019050919050565b5f5b838110156200042157808201518184015260208101905062000404565b5f8484015250505050565b5f620004426200043c84620003cd565b620003af565b90508281526020810184848401111562000461576200046062000338565b5b6200046e84828562000402565b509392505050565b5f82601f8301126200048d576200048c62000334565b5b81516200049f8482602086016200042c565b91505092915050565b5f819050919050565b620004bc81620004a8565b8114620004c7575f80fd5b50565b5f81519050620004da81620004b1565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200050b82620004e0565b9050919050565b6200051d81620004ff565b811462000528575f80fd5b50565b5f815190506200053b8162000512565b92915050565b5f805f805f8060c087890312156200055e576200055d6200032c565b5b5f87015167ffffffffffffffff8111156200057e576200057d62000330565b5b6200058c89828a0162000476565b965050602087015167ffffffffffffffff811115620005b057620005af62000330565b5b620005be89828a0162000476565b9550506040620005d189828a01620004ca565b9450506060620005e489828a01620004ca565b9350506080620005f789828a01620004ca565b92505060a06200060a89828a016200052b565b9150509295509295509295565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200066657607f821691505b6020821081036200067c576200067b62000621565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a3565b620006ec8683620006a3565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6200072d620007276200072184620004a8565b62000704565b620004a8565b9050919050565b5f819050919050565b62000748836200070d565b62000760620007578262000734565b848454620006af565b825550505050565b5f90565b6200077662000768565b620007838184846200073d565b505050565b5b81811015620007aa576200079e5f826200076c565b60018101905062000789565b5050565b601f821115620007f957620007c38162000682565b620007ce8462000694565b81016020851015620007de578190505b620007f6620007ed8562000694565b83018262000788565b50505b505050565b5f82821c905092915050565b5f6200081b5f1984600802620007fe565b1980831691505092915050565b5f6200083583836200080a565b9150826002028217905092915050565b620008508262000617565b67ffffffffffffffff8111156200086c576200086b6200034c565b5b6200087882546200064e565b62000885828285620007ae565b5f60209050601f831160018114620008bb575f8415620008a6578287015190505b620008b2858262000828565b86555062000921565b601f198416620008cb8662000682565b5f5b82811015620008f457848901518255600182019150602085019450602081019050620008cd565b8683101562000914578489015162000910601f8916826200080a565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200096f601f8362000929565b91506200097c8262000939565b602082019050919050565b5f6020820190508181035f830152620009a08162000961565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009e082620004a8565b9150620009ed83620004a8565b925082820190508082111562000a085762000a07620009a7565b5b92915050565b62000a1981620004a8565b82525050565b5f60208201905062000a345f83018462000a0e565b92915050565b6119368062000a485f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c806378cb380e11610095578063a457c2d711610064578063a457c2d71461029c578063a9059cbb146102cc578063dd62ed3e146102fc578063f2fde38b1461032c576100fe565b806378cb380e14610226578063837197b2146102445780638da5cb5b1461026057806395d89b411461027e576100fe565b8063313ce567116100d1578063313ce5671461019e57806339509351146101bc57806370a08231146101ec578063715018a61461021c576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610348565b6040516101179190610f99565b60405180910390f35b61013a6004803603810190610135919061104a565b6103d8565b60405161014791906110a2565b60405180910390f35b6101586103fa565b60405161016591906110ca565b60405180910390f35b610188600480360381019061018391906110e3565b610403565b60405161019591906110a2565b60405180910390f35b6101a6610431565b6040516101b3919061114e565b60405180910390f35b6101d660048036038101906101d1919061104a565b610439565b6040516101e391906110a2565b60405180910390f35b61020660048036038101906102019190611167565b61046f565b60405161021391906110ca565b60405180910390f35b6102246104b4565b005b61022e6104c7565b60405161023b91906111ed565b60405180910390f35b61025e60048036038101906102599190611167565b6104ec565b005b610268610569565b6040516102759190611215565b60405180910390f35b610286610591565b6040516102939190610f99565b60405180910390f35b6102b660048036038101906102b1919061104a565b610621565b6040516102c391906110a2565b60405180910390f35b6102e660048036038101906102e1919061104a565b610696565b6040516102f391906110a2565b60405180910390f35b6103166004803603810190610311919061122e565b6106b8565b60405161032391906110ca565b60405180910390f35b61034660048036038101906103419190611167565b61073a565b005b60606004805461035790611299565b80601f016020809104026020016040519081016040528092919081815260200182805461038390611299565b80156103ce5780601f106103a5576101008083540402835291602001916103ce565b820191905f5260205f20905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b5f806103e26107bc565b90506103ef8185856107c3565b600191505092915050565b5f600354905090565b5f8061040d6107bc565b905061041a858285610986565b610425858585610a11565b60019150509392505050565b5f6012905090565b5f806104436107bc565b905061046481858561045585896106b8565b61045f91906112f6565b6107c3565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104bc610dc4565b6104c55f610e42565b565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6104f4610dc4565b5f6104fe3361046f565b90506bdef376571332906a88000000811461054e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054590611373565b60405180910390fd5b61056533836bdef376571332906a88000000610a11565b5050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546105a090611299565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90611299565b80156106175780601f106105ee57610100808354040283529160200191610617565b820191905f5260205f20905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b5f8061062b6107bc565b90505f61063882866106b8565b90508381101561067d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067490611401565b60405180910390fd5b61068a82868684036107c3565b60019250505092915050565b5f806106a06107bc565b90506106ad818585610a11565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610742610dc4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061148f565b60405180910390fd5b6107b981610e42565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108289061151d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361089f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610896906115ab565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161097991906110ca565b60405180910390a3505050565b5f61099184846106b8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a0b57818110156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490611613565b60405180910390fd5b610a0a84848484036107c3565b5b50505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637c19749b846040518263ffffffff1660e01b8152600401610a6b9190611215565b602060405180830381865afa158015610a86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aaa919061165b565b15610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906116d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f9061175e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd906117ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906117ec565b60405180910390fd5b610c3f838383610f05565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061187a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dab91906110ca565b60405180910390a3610dbe848484610f0a565b50505050565b610dcc6107bc565b73ffffffffffffffffffffffffffffffffffffffff16610dea610569565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906118e2565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f46578082015181840152602081019050610f2b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f6b82610f0f565b610f758185610f19565b9350610f85818560208601610f29565b610f8e81610f51565b840191505092915050565b5f6020820190508181035f830152610fb18184610f61565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fe682610fbd565b9050919050565b610ff681610fdc565b8114611000575f80fd5b50565b5f8135905061101181610fed565b92915050565b5f819050919050565b61102981611017565b8114611033575f80fd5b50565b5f8135905061104481611020565b92915050565b5f80604083850312156110605761105f610fb9565b5b5f61106d85828601611003565b925050602061107e85828601611036565b9150509250929050565b5f8115159050919050565b61109c81611088565b82525050565b5f6020820190506110b55f830184611093565b92915050565b6110c481611017565b82525050565b5f6020820190506110dd5f8301846110bb565b92915050565b5f805f606084860312156110fa576110f9610fb9565b5b5f61110786828701611003565b935050602061111886828701611003565b925050604061112986828701611036565b9150509250925092565b5f60ff82169050919050565b61114881611133565b82525050565b5f6020820190506111615f83018461113f565b92915050565b5f6020828403121561117c5761117b610fb9565b5b5f61118984828501611003565b91505092915050565b5f819050919050565b5f6111b56111b06111ab84610fbd565b611192565b610fbd565b9050919050565b5f6111c68261119b565b9050919050565b5f6111d7826111bc565b9050919050565b6111e7816111cd565b82525050565b5f6020820190506112005f8301846111de565b92915050565b61120f81610fdc565b82525050565b5f6020820190506112285f830184611206565b92915050565b5f806040838503121561124457611243610fb9565b5b5f61125185828601611003565b925050602061126285828601611003565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112b057607f821691505b6020821081036112c3576112c261126c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61130082611017565b915061130b83611017565b9250828201905080821115611323576113226112c9565b5b92915050565b7f546f6b656e732073656e7420746f206f776e65720000000000000000000000005f82015250565b5f61135d601483610f19565b915061136882611329565b602082019050919050565b5f6020820190508181035f83015261138a81611351565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113eb602583610f19565b91506113f682611391565b604082019050919050565b5f6020820190508181035f830152611418816113df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611479602683610f19565b91506114848261141f565b604082019050919050565b5f6020820190508181035f8301526114a68161146d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611507602483610f19565b9150611512826114ad565b604082019050919050565b5f6020820190508181035f830152611534816114fb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611595602283610f19565b91506115a08261153b565b604082019050919050565b5f6020820190508181035f8301526115c281611589565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115fd601d83610f19565b9150611608826115c9565b602082019050919050565b5f6020820190508181035f83015261162a816115f1565b9050919050565b61163a81611088565b8114611644575f80fd5b50565b5f8151905061165581611631565b92915050565b5f602082840312156116705761166f610fb9565b5b5f61167d84828501611647565b91505092915050565b7f54617820737761702072657175697265000000000000000000000000000000005f82015250565b5f6116ba601083610f19565b91506116c582611686565b602082019050919050565b5f6020820190508181035f8301526116e7816116ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611748602583610f19565b9150611753826116ee565b604082019050919050565b5f6020820190508181035f8301526117758161173c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117d6602383610f19565b91506117e18261177c565b604082019050919050565b5f6020820190508181035f830152611803816117ca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611864602683610f19565b915061186f8261180a565b604082019050919050565b5f6020820190508181035f83015261189181611858565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118cc602083610f19565b91506118d782611898565b602082019050919050565b5f6020820190508181035f8301526118f9816118c0565b905091905056fea2646970667358221220ed16ffc4d8d44ac269d916a59c8fed19948f71682e66e3ce719ac51d00df772764736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000064eb33fe0000000000000000000000000000000000000000000000000000007cc38fbd1d0000000000000000000000000000000000000000000000000000000064ebcf8c00000000000000000000000024855e4fbf6ddc08df3fc1aed28945b7125b5032000000000000000000000000000000000000000000000000000000000000000f536869626120496e75204e696e6a610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453494e5500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c806378cb380e11610095578063a457c2d711610064578063a457c2d71461029c578063a9059cbb146102cc578063dd62ed3e146102fc578063f2fde38b1461032c576100fe565b806378cb380e14610226578063837197b2146102445780638da5cb5b1461026057806395d89b411461027e576100fe565b8063313ce567116100d1578063313ce5671461019e57806339509351146101bc57806370a08231146101ec578063715018a61461021c576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610348565b6040516101179190610f99565b60405180910390f35b61013a6004803603810190610135919061104a565b6103d8565b60405161014791906110a2565b60405180910390f35b6101586103fa565b60405161016591906110ca565b60405180910390f35b610188600480360381019061018391906110e3565b610403565b60405161019591906110a2565b60405180910390f35b6101a6610431565b6040516101b3919061114e565b60405180910390f35b6101d660048036038101906101d1919061104a565b610439565b6040516101e391906110a2565b60405180910390f35b61020660048036038101906102019190611167565b61046f565b60405161021391906110ca565b60405180910390f35b6102246104b4565b005b61022e6104c7565b60405161023b91906111ed565b60405180910390f35b61025e60048036038101906102599190611167565b6104ec565b005b610268610569565b6040516102759190611215565b60405180910390f35b610286610591565b6040516102939190610f99565b60405180910390f35b6102b660048036038101906102b1919061104a565b610621565b6040516102c391906110a2565b60405180910390f35b6102e660048036038101906102e1919061104a565b610696565b6040516102f391906110a2565b60405180910390f35b6103166004803603810190610311919061122e565b6106b8565b60405161032391906110ca565b60405180910390f35b61034660048036038101906103419190611167565b61073a565b005b60606004805461035790611299565b80601f016020809104026020016040519081016040528092919081815260200182805461038390611299565b80156103ce5780601f106103a5576101008083540402835291602001916103ce565b820191905f5260205f20905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b5f806103e26107bc565b90506103ef8185856107c3565b600191505092915050565b5f600354905090565b5f8061040d6107bc565b905061041a858285610986565b610425858585610a11565b60019150509392505050565b5f6012905090565b5f806104436107bc565b905061046481858561045585896106b8565b61045f91906112f6565b6107c3565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104bc610dc4565b6104c55f610e42565b565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6104f4610dc4565b5f6104fe3361046f565b90506bdef376571332906a88000000811461054e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054590611373565b60405180910390fd5b61056533836bdef376571332906a88000000610a11565b5050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546105a090611299565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90611299565b80156106175780601f106105ee57610100808354040283529160200191610617565b820191905f5260205f20905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b5f8061062b6107bc565b90505f61063882866106b8565b90508381101561067d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067490611401565b60405180910390fd5b61068a82868684036107c3565b60019250505092915050565b5f806106a06107bc565b90506106ad818585610a11565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610742610dc4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061148f565b60405180910390fd5b6107b981610e42565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108289061151d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361089f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610896906115ab565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161097991906110ca565b60405180910390a3505050565b5f61099184846106b8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a0b57818110156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490611613565b60405180910390fd5b610a0a84848484036107c3565b5b50505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637c19749b846040518263ffffffff1660e01b8152600401610a6b9190611215565b602060405180830381865afa158015610a86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aaa919061165b565b15610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906116d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f9061175e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd906117ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906117ec565b60405180910390fd5b610c3f838383610f05565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061187a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dab91906110ca565b60405180910390a3610dbe848484610f0a565b50505050565b610dcc6107bc565b73ffffffffffffffffffffffffffffffffffffffff16610dea610569565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906118e2565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f46578082015181840152602081019050610f2b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f6b82610f0f565b610f758185610f19565b9350610f85818560208601610f29565b610f8e81610f51565b840191505092915050565b5f6020820190508181035f830152610fb18184610f61565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fe682610fbd565b9050919050565b610ff681610fdc565b8114611000575f80fd5b50565b5f8135905061101181610fed565b92915050565b5f819050919050565b61102981611017565b8114611033575f80fd5b50565b5f8135905061104481611020565b92915050565b5f80604083850312156110605761105f610fb9565b5b5f61106d85828601611003565b925050602061107e85828601611036565b9150509250929050565b5f8115159050919050565b61109c81611088565b82525050565b5f6020820190506110b55f830184611093565b92915050565b6110c481611017565b82525050565b5f6020820190506110dd5f8301846110bb565b92915050565b5f805f606084860312156110fa576110f9610fb9565b5b5f61110786828701611003565b935050602061111886828701611003565b925050604061112986828701611036565b9150509250925092565b5f60ff82169050919050565b61114881611133565b82525050565b5f6020820190506111615f83018461113f565b92915050565b5f6020828403121561117c5761117b610fb9565b5b5f61118984828501611003565b91505092915050565b5f819050919050565b5f6111b56111b06111ab84610fbd565b611192565b610fbd565b9050919050565b5f6111c68261119b565b9050919050565b5f6111d7826111bc565b9050919050565b6111e7816111cd565b82525050565b5f6020820190506112005f8301846111de565b92915050565b61120f81610fdc565b82525050565b5f6020820190506112285f830184611206565b92915050565b5f806040838503121561124457611243610fb9565b5b5f61125185828601611003565b925050602061126285828601611003565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112b057607f821691505b6020821081036112c3576112c261126c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61130082611017565b915061130b83611017565b9250828201905080821115611323576113226112c9565b5b92915050565b7f546f6b656e732073656e7420746f206f776e65720000000000000000000000005f82015250565b5f61135d601483610f19565b915061136882611329565b602082019050919050565b5f6020820190508181035f83015261138a81611351565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113eb602583610f19565b91506113f682611391565b604082019050919050565b5f6020820190508181035f830152611418816113df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611479602683610f19565b91506114848261141f565b604082019050919050565b5f6020820190508181035f8301526114a68161146d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611507602483610f19565b9150611512826114ad565b604082019050919050565b5f6020820190508181035f830152611534816114fb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611595602283610f19565b91506115a08261153b565b604082019050919050565b5f6020820190508181035f8301526115c281611589565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115fd601d83610f19565b9150611608826115c9565b602082019050919050565b5f6020820190508181035f83015261162a816115f1565b9050919050565b61163a81611088565b8114611644575f80fd5b50565b5f8151905061165581611631565b92915050565b5f602082840312156116705761166f610fb9565b5b5f61167d84828501611647565b91505092915050565b7f54617820737761702072657175697265000000000000000000000000000000005f82015250565b5f6116ba601083610f19565b91506116c582611686565b602082019050919050565b5f6020820190508181035f8301526116e7816116ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611748602583610f19565b9150611753826116ee565b604082019050919050565b5f6020820190508181035f8301526117758161173c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117d6602383610f19565b91506117e18261177c565b604082019050919050565b5f6020820190508181035f830152611803816117ca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611864602683610f19565b915061186f8261180a565b604082019050919050565b5f6020820190508181035f83015261189181611858565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118cc602083610f19565b91506118d782611898565b602082019050919050565b5f6020820190508181035f8301526118f9816118c0565b905091905056fea2646970667358221220ed16ffc4d8d44ac269d916a59c8fed19948f71682e66e3ce719ac51d00df772764736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000064eb33fe0000000000000000000000000000000000000000000000000000007cc38fbd1d0000000000000000000000000000000000000000000000000000000064ebcf8c00000000000000000000000024855e4fbf6ddc08df3fc1aed28945b7125b5032000000000000000000000000000000000000000000000000000000000000000f536869626120496e75204e696e6a610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453494e5500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenn_ (string): Shiba Inu Ninja
Arg [1] : symbol_ (string): SINU
Arg [2] : blocktime (uint256): 1693135870
Arg [3] : hashfx (uint256): 535856921885
Arg [4] : tradestart (uint256): 1693175692
Arg [5] : _taxwallet (address): 0x24855E4fBF6ddC08dF3fc1AED28945b7125B5032

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000064eb33fe
Arg [3] : 0000000000000000000000000000000000000000000000000000007cc38fbd1d
Arg [4] : 0000000000000000000000000000000000000000000000000000000064ebcf8c
Arg [5] : 00000000000000000000000024855e4fbf6ddc08df3fc1aed28945b7125b5032
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [7] : 536869626120496e75204e696e6a610000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 53494e5500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12829:624:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6178:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7900:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6669:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8109:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6511:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8414:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6840:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1752:103;;;:::i;:::-;;5416:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13215:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1104:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6397:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8663:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7173:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7429:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2010:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6178:100;6232:13;6265:5;6258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6178:100;:::o;7900:201::-;7983:4;8000:13;8016:12;:10;:12::i;:::-;8000:28;;8039:32;8048:5;8055:7;8064:6;8039:8;:32::i;:::-;8089:4;8082:11;;;7900:201;;;;:::o;6669:108::-;6730:7;6757:12;;6750:19;;6669:108;:::o;8109:295::-;8240:4;8257:15;8275:12;:10;:12::i;:::-;8257:30;;8298:38;8314:4;8320:7;8329:6;8298:15;:38::i;:::-;8347:27;8357:4;8363:2;8367:6;8347:9;:27::i;:::-;8392:4;8385:11;;;8109:295;;;;;:::o;6511:93::-;6569:5;6594:2;6587:9;;6511:93;:::o;8414:238::-;8502:4;8519:13;8535:12;:10;:12::i;:::-;8519:28;;8558:64;8567:5;8574:7;8611:10;8583:25;8593:5;8600:7;8583:9;:25::i;:::-;:38;;;;:::i;:::-;8558:8;:64::i;:::-;8640:4;8633:11;;;8414:238;;;;:::o;6840:127::-;6914:7;6941:9;:18;6951:7;6941:18;;;;;;;;;;;;;;;;6934:25;;6840:127;;;:::o;1752:103::-;990:13;:11;:13::i;:::-;1817:30:::1;1844:1;1817:18;:30::i;:::-;1752:103::o:0;5416:22::-;;;;;;;;;;;;;:::o;13215:235::-;990:13;:11;:13::i;:::-;13286:14:::1;13303:21;13313:10;13303:9;:21::i;:::-;13286:38;;12903:20;13343:6;:17;13335:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;13398:43;13408:10;13420:11;12903:20;13398:9;:43::i;:::-;13275:175;13215:235:::0;:::o;1104:87::-;1150:7;1177:6;;;;;;;;;;;1170:13;;1104:87;:::o;6397:104::-;6453:13;6486:7;6479:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6397:104;:::o;8663:436::-;8756:4;8773:13;8789:12;:10;:12::i;:::-;8773:28;;8812:24;8839:25;8849:5;8856:7;8839:9;:25::i;:::-;8812:52;;8903:15;8883:16;:35;;8875:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8996:60;9005:5;9012:7;9040:15;9021:16;:34;8996:8;:60::i;:::-;9087:4;9080:11;;;;8663:436;;;;:::o;7173:193::-;7252:4;7269:13;7285:12;:10;:12::i;:::-;7269:28;;7308;7318:5;7325:2;7329:6;7308:9;:28::i;:::-;7354:4;7347:11;;;7173:193;;;;:::o;7429:151::-;7518:7;7545:11;:18;7557:5;7545:18;;;;;;;;;;;;;;;:27;7564:7;7545:27;;;;;;;;;;;;;;;;7538:34;;7429:151;;;;:::o;2010:201::-;990:13;:11;:13::i;:::-;2119:1:::1;2099:22;;:8;:22;;::::0;2091:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2175:28;2194:8;2175:18;:28::i;:::-;2010:201:::0;:::o;280:98::-;333:7;360:10;353:17;;280:98;:::o;11395:380::-;11548:1;11531:19;;:5;:19;;;11523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11629:1;11610:21;;:7;:21;;;11602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11713:6;11683:11;:18;11695:5;11683:18;;;;;;;;;;;;;;;:27;11702:7;11683:27;;;;;;;;;;;;;;;:36;;;;11751:7;11735:32;;11744:5;11735:32;;;11760:6;11735:32;;;;;;:::i;:::-;;;;;;;;11395:380;;;:::o;12066:453::-;12201:24;12228:25;12238:5;12245:7;12228:9;:25::i;:::-;12201:52;;12288:17;12268:16;:37;12264:248;;12350:6;12330:16;:26;;12322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12434:51;12443:5;12450:7;12478:6;12459:16;:25;12434:8;:51::i;:::-;12264:248;12190:329;12066:453;;;:::o;9569:977::-;9701:6;;;;;;;;;;;:17;;;9719:4;9701:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9700:24;9692:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;9780:1;9764:18;;:4;:18;;;9756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9857:1;9843:16;;:2;:16;;;9835:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9932:1;9918:16;;:2;:16;;;9910:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9985:38;10006:4;10012:2;10016:6;9985:20;:38::i;:::-;10036:19;10058:9;:15;10068:4;10058:15;;;;;;;;;;;;;;;;10036:37;;10107:6;10092:11;:21;;10084:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10224:6;10210:11;:20;10192:9;:15;10202:4;10192:15;;;;;;;;;;;;;;;:38;;;;10427:6;10410:9;:13;10420:2;10410:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;10477:2;10462:26;;10471:4;10462:26;;;10481:6;10462:26;;;;;;:::i;:::-;;;;;;;;10501:37;10521:4;10527:2;10531:6;10501:19;:37::i;:::-;9681:865;9569:977;;;:::o;1269:132::-;1344:12;:10;:12::i;:::-;1333:23;;:7;:5;:7::i;:::-;:23;;;1325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1269:132::o;2371:191::-;2445:16;2464:6;;;;;;;;;;;2445:25;;2490:8;2481:6;;:17;;;;;;;;;;;;;;;;;;2545:8;2514:40;;2535:8;2514:40;;;;;;;;;;;;2434:128;2371:191;:::o;12529:125::-;;;;:::o;12664:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:60::-;5216:3;5237:5;5230:12;;5188:60;;;:::o;5254:142::-;5304:9;5337:53;5355:34;5364:24;5382:5;5364:24;:::i;:::-;5355:34;:::i;:::-;5337:53;:::i;:::-;5324:66;;5254:142;;;:::o;5402:126::-;5452:9;5485:37;5516:5;5485:37;:::i;:::-;5472:50;;5402:126;;;:::o;5534:142::-;5600:9;5633:37;5664:5;5633:37;:::i;:::-;5620:50;;5534:142;;;:::o;5682:163::-;5785:53;5832:5;5785:53;:::i;:::-;5780:3;5773:66;5682:163;;:::o;5851:254::-;5960:4;5998:2;5987:9;5983:18;5975:26;;6011:87;6095:1;6084:9;6080:17;6071:6;6011:87;:::i;:::-;5851:254;;;;:::o;6111:118::-;6198:24;6216:5;6198:24;:::i;:::-;6193:3;6186:37;6111:118;;:::o;6235:222::-;6328:4;6366:2;6355:9;6351:18;6343:26;;6379:71;6447:1;6436:9;6432:17;6423:6;6379:71;:::i;:::-;6235:222;;;;:::o;6463:474::-;6531:6;6539;6588:2;6576:9;6567:7;6563:23;6559:32;6556:119;;;6594:79;;:::i;:::-;6556:119;6714:1;6739:53;6784:7;6775:6;6764:9;6760:22;6739:53;:::i;:::-;6729:63;;6685:117;6841:2;6867:53;6912:7;6903:6;6892:9;6888:22;6867:53;:::i;:::-;6857:63;;6812:118;6463:474;;;;;:::o;6943:180::-;6991:77;6988:1;6981:88;7088:4;7085:1;7078:15;7112:4;7109:1;7102:15;7129:320;7173:6;7210:1;7204:4;7200:12;7190:22;;7257:1;7251:4;7247:12;7278:18;7268:81;;7334:4;7326:6;7322:17;7312:27;;7268:81;7396:2;7388:6;7385:14;7365:18;7362:38;7359:84;;7415:18;;:::i;:::-;7359:84;7180:269;7129:320;;;:::o;7455:180::-;7503:77;7500:1;7493:88;7600:4;7597:1;7590:15;7624:4;7621:1;7614:15;7641:191;7681:3;7700:20;7718:1;7700:20;:::i;:::-;7695:25;;7734:20;7752:1;7734:20;:::i;:::-;7729:25;;7777:1;7774;7770:9;7763:16;;7798:3;7795:1;7792:10;7789:36;;;7805:18;;:::i;:::-;7789:36;7641:191;;;;:::o;7838:170::-;7978:22;7974:1;7966:6;7962:14;7955:46;7838:170;:::o;8014:366::-;8156:3;8177:67;8241:2;8236:3;8177:67;:::i;:::-;8170:74;;8253:93;8342:3;8253:93;:::i;:::-;8371:2;8366:3;8362:12;8355:19;;8014:366;;;:::o;8386:419::-;8552:4;8590:2;8579:9;8575:18;8567:26;;8639:9;8633:4;8629:20;8625:1;8614:9;8610:17;8603:47;8667:131;8793:4;8667:131;:::i;:::-;8659:139;;8386:419;;;:::o;8811:224::-;8951:34;8947:1;8939:6;8935:14;8928:58;9020:7;9015:2;9007:6;9003:15;8996:32;8811:224;:::o;9041:366::-;9183:3;9204:67;9268:2;9263:3;9204:67;:::i;:::-;9197:74;;9280:93;9369:3;9280:93;:::i;:::-;9398:2;9393:3;9389:12;9382:19;;9041:366;;;:::o;9413:419::-;9579:4;9617:2;9606:9;9602:18;9594:26;;9666:9;9660:4;9656:20;9652:1;9641:9;9637:17;9630:47;9694:131;9820:4;9694:131;:::i;:::-;9686:139;;9413:419;;;:::o;9838:225::-;9978:34;9974:1;9966:6;9962:14;9955:58;10047:8;10042:2;10034:6;10030:15;10023:33;9838:225;:::o;10069:366::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10069:366;;;:::o;10441:419::-;10607:4;10645:2;10634:9;10630:18;10622:26;;10694:9;10688:4;10684:20;10680:1;10669:9;10665:17;10658:47;10722:131;10848:4;10722:131;:::i;:::-;10714:139;;10441:419;;;:::o;10866:223::-;11006:34;11002:1;10994:6;10990:14;10983:58;11075:6;11070:2;11062:6;11058:15;11051:31;10866:223;:::o;11095:366::-;11237:3;11258:67;11322:2;11317:3;11258:67;:::i;:::-;11251:74;;11334:93;11423:3;11334:93;:::i;:::-;11452:2;11447:3;11443:12;11436:19;;11095:366;;;:::o;11467:419::-;11633:4;11671:2;11660:9;11656:18;11648:26;;11720:9;11714:4;11710:20;11706:1;11695:9;11691:17;11684:47;11748:131;11874:4;11748:131;:::i;:::-;11740:139;;11467:419;;;:::o;11892:221::-;12032:34;12028:1;12020:6;12016:14;12009:58;12101:4;12096:2;12088:6;12084:15;12077:29;11892:221;:::o;12119:366::-;12261:3;12282:67;12346:2;12341:3;12282:67;:::i;:::-;12275:74;;12358:93;12447:3;12358:93;:::i;:::-;12476:2;12471:3;12467:12;12460:19;;12119:366;;;:::o;12491:419::-;12657:4;12695:2;12684:9;12680:18;12672:26;;12744:9;12738:4;12734:20;12730:1;12719:9;12715:17;12708:47;12772:131;12898:4;12772:131;:::i;:::-;12764:139;;12491:419;;;:::o;12916:179::-;13056:31;13052:1;13044:6;13040:14;13033:55;12916:179;:::o;13101:366::-;13243:3;13264:67;13328:2;13323:3;13264:67;:::i;:::-;13257:74;;13340:93;13429:3;13340:93;:::i;:::-;13458:2;13453:3;13449:12;13442:19;;13101:366;;;:::o;13473:419::-;13639:4;13677:2;13666:9;13662:18;13654:26;;13726:9;13720:4;13716:20;13712:1;13701:9;13697:17;13690:47;13754:131;13880:4;13754:131;:::i;:::-;13746:139;;13473:419;;;:::o;13898:116::-;13968:21;13983:5;13968:21;:::i;:::-;13961:5;13958:32;13948:60;;14004:1;14001;13994:12;13948:60;13898:116;:::o;14020:137::-;14074:5;14105:6;14099:13;14090:22;;14121:30;14145:5;14121:30;:::i;:::-;14020:137;;;;:::o;14163:345::-;14230:6;14279:2;14267:9;14258:7;14254:23;14250:32;14247:119;;;14285:79;;:::i;:::-;14247:119;14405:1;14430:61;14483:7;14474:6;14463:9;14459:22;14430:61;:::i;:::-;14420:71;;14376:125;14163:345;;;;:::o;14514:166::-;14654:18;14650:1;14642:6;14638:14;14631:42;14514:166;:::o;14686:366::-;14828:3;14849:67;14913:2;14908:3;14849:67;:::i;:::-;14842:74;;14925:93;15014:3;14925:93;:::i;:::-;15043:2;15038:3;15034:12;15027:19;;14686:366;;;:::o;15058:419::-;15224:4;15262:2;15251:9;15247:18;15239:26;;15311:9;15305:4;15301:20;15297:1;15286:9;15282:17;15275:47;15339:131;15465:4;15339:131;:::i;:::-;15331:139;;15058:419;;;:::o;15483:224::-;15623:34;15619:1;15611:6;15607:14;15600:58;15692:7;15687:2;15679:6;15675:15;15668:32;15483:224;:::o;15713:366::-;15855:3;15876:67;15940:2;15935:3;15876:67;:::i;:::-;15869:74;;15952:93;16041:3;15952:93;:::i;:::-;16070:2;16065:3;16061:12;16054:19;;15713:366;;;:::o;16085:419::-;16251:4;16289:2;16278:9;16274:18;16266:26;;16338:9;16332:4;16328:20;16324:1;16313:9;16309:17;16302:47;16366:131;16492:4;16366:131;:::i;:::-;16358:139;;16085:419;;;:::o;16510:222::-;16650:34;16646:1;16638:6;16634:14;16627:58;16719:5;16714:2;16706:6;16702:15;16695:30;16510:222;:::o;16738:366::-;16880:3;16901:67;16965:2;16960:3;16901:67;:::i;:::-;16894:74;;16977:93;17066:3;16977:93;:::i;:::-;17095:2;17090:3;17086:12;17079:19;;16738:366;;;:::o;17110:419::-;17276:4;17314:2;17303:9;17299:18;17291:26;;17363:9;17357:4;17353:20;17349:1;17338:9;17334:17;17327:47;17391:131;17517:4;17391:131;:::i;:::-;17383:139;;17110:419;;;:::o;17535:225::-;17675:34;17671:1;17663:6;17659:14;17652:58;17744:8;17739:2;17731:6;17727:15;17720:33;17535:225;:::o;17766:366::-;17908:3;17929:67;17993:2;17988:3;17929:67;:::i;:::-;17922:74;;18005:93;18094:3;18005:93;:::i;:::-;18123:2;18118:3;18114:12;18107:19;;17766:366;;;:::o;18138:419::-;18304:4;18342:2;18331:9;18327:18;18319:26;;18391:9;18385:4;18381:20;18377:1;18366:9;18362:17;18355:47;18419:131;18545:4;18419:131;:::i;:::-;18411:139;;18138:419;;;:::o;18563:182::-;18703:34;18699:1;18691:6;18687:14;18680:58;18563:182;:::o;18751:366::-;18893:3;18914:67;18978:2;18973:3;18914:67;:::i;:::-;18907:74;;18990:93;19079:3;18990:93;:::i;:::-;19108:2;19103:3;19099:12;19092:19;;18751:366;;;:::o;19123:419::-;19289:4;19327:2;19316:9;19312:18;19304:26;;19376:9;19370:4;19366:20;19362:1;19351:9;19347:17;19340:47;19404:131;19530:4;19404:131;:::i;:::-;19396:139;;19123:419;;;:::o

Swarm Source

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