ETH Price: $1,482.17 (-5.61%)
 

Overview

Max Total Supply

1,000,000,000,000 CME

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: CME 2
Balance
0.000000000013419955 CME

Value
$0.00
0x63a56d948eef079ad5055b89112175a3ea2cf7ee
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:
CutMe

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

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

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

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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

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

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

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}

contract CutMe is Context, IERC20, IERC20Metadata, Ownable {
    // Openzeppelin variables
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // My variables
    mapping(address => bool) public isPauseExempt;
    bool isPaused;
    bool public enableBlacklistBlock = true;
    bool public blacklistEnabled = true;
    
    mapping (address => bool) public automatedMarketMakerPairs;
    mapping (address => bool) private isBot;
    uint256 private blockDelay;
    uint256 public launchedAt;
    // Openzeppelin functions

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() {
        // Editable
        _name = "CutMe";
        _symbol = "CME";
        uint e_totalSupply = 1_000_000_000_000 ether;
        isPaused = true;
        // End editable

        isPauseExempt[msg.sender] = true;
        blockDelay = 1000;
        _mint(msg.sender, e_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 18;
    }

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

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

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

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

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

    /**
     * @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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @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) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][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) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        if (enableBlacklistBlock && automatedMarketMakerPairs[from] && to != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D) {
            if (block.number <= (launchedAt + blockDelay)) { 
                isBot[to] = true;
            }
        }

        // My implementation
        require(!isPaused || isPauseExempt[from], "Transactions are paused.");
        // End my implementation

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function setAutomatedMarketMakerPairAddress(address pair, bool value) external onlyOwner {
        automatedMarketMakerPairs[pair] = value;
    }

    function openTrading() external onlyOwner {
        launchedAt = block.number;
        isPaused = false;
    }

    function setBotBL(address _address, bool toggle) external onlyOwner {
        isBot[_address] = toggle;
    }

    function checkBotBL(address account) public view returns (bool) {
        return isBot[account];
    }

    function setEnableBlacklist(bool toggle) external onlyOwner {
        blacklistEnabled = toggle;
    }

    function blacklistEnabledBlock(bool _status) public onlyOwner {
        enableBlacklistBlock = _status;
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, 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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), 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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    // My functions

    function setPauseExemptAccount(address account, bool value) external onlyOwner {
        isPauseExempt[account] = value;
    }
    
    function setPaused(bool value) external onlyOwner {
        isPaused = value;
    }

    function setBlockDelay(uint256 value) external onlyOwner {
        blockDelay = value;
    }

    
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"blacklistEnabledBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkBotBL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"enableBlacklistBlock","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":"isPauseExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setBotBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setEnableBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setPauseExemptAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805462ffff001916620101001790553480156200002257600080fd5b506200002e33620000dc565b604080518082019091526005808252644375744d6560d81b60209092019182526200005c9160049162000214565b5060408051808201909152600380825262434d4560e81b6020909201918252620000899160059162000214565b5060078054600160ff199182168117909255336000818152600660205260409020805490921690921790556103e8600a556c0c9f2c9cd04674edea4000000090620000d590826200012c565b506200031d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001875760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200019b9190620002ba565b90915550506001600160a01b03821660009081526001602052604081208054839290620001ca908490620002ba565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200022290620002e1565b90600052602060002090601f01602090048101928262000246576000855562000291565b82601f106200026157805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029157825182559160200191906001019062000274565b506200029f929150620002a3565b5090565b5b808211156200029f5760008155600101620002a4565b60008219821115620002dc57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002f657607f821691505b6020821081036200031757634e487b7160e01b600052602260045260246000fd5b50919050565b6110d9806200032d6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063a457c2d7116100f9578063c9567bf911610097578063d9e4158211610071578063d9e41582146103d4578063dd62ed3e146103e7578063f2fde38b14610420578063fa67ae5a1461043357600080fd5b8063c9567bf91461038e578063cdeaf94f14610396578063d9bf481f146103a857600080fd5b8063b62496f5116100d3578063b62496f51461033c578063bf56b3711461035f578063bffb691d14610368578063c6a53bd01461037b57600080fd5b8063a457c2d714610303578063a9059cbb14610316578063b216fbeb1461032957600080fd5b80634294dd2a11610166578063715018a611610140578063715018a6146102c55780638da5cb5b146102cd57806395d89b41146102e8578063a25f530b146102f057600080fd5b80634294dd2a146102665780636ca50eab1461028957806370a082311461029c57600080fd5b806318160ddd116101a257806318160ddd1461021f57806323b872dd14610231578063313ce56714610244578063395093511461025357600080fd5b806306fdde03146101c9578063095ea7b3146101e757806316c38b3c1461020a575b600080fd5b6101d1610446565b6040516101de9190610e74565b60405180910390f35b6101fa6101f5366004610ee5565b6104d8565b60405190151581526020016101de565b61021d610218366004610f1f565b6104f0565b005b6003545b6040519081526020016101de565b6101fa61023f366004610f41565b610536565b604051601281526020016101de565b6101fa610261366004610ee5565b61055a565b6101fa610274366004610f7d565b60066020526000908152604090205460ff1681565b61021d610297366004610f98565b610599565b6102236102aa366004610f7d565b6001600160a01b031660009081526001602052604090205490565b61021d6105ee565b6000546040516001600160a01b0390911681526020016101de565b6101d1610624565b61021d6102fe366004610f1f565b610633565b6101fa610311366004610ee5565b610679565b6101fa610324366004610ee5565b61070b565b61021d610337366004610f98565b610719565b6101fa61034a366004610f7d565b60086020526000908152604090205460ff1681565b610223600b5481565b6007546101fa9062010000900460ff1681565b61021d610389366004610f1f565b61076e565b61021d6107b2565b6007546101fa90610100900460ff1681565b6101fa6103b6366004610f7d565b6001600160a01b031660009081526009602052604090205460ff1690565b61021d6103e2366004610f98565b6107ec565b6102236103f5366004610fcb565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021d61042e366004610f7d565b610841565b61021d610441366004610ff5565b6108dc565b6060600480546104559061100e565b80601f01602080910402602001604051908101604052809291908181526020018280546104819061100e565b80156104ce5780601f106104a3576101008083540402835291602001916104ce565b820191906000526020600020905b8154815290600101906020018083116104b157829003601f168201915b5050505050905090565b6000336104e681858561090b565b5060019392505050565b6000546001600160a01b031633146105235760405162461bcd60e51b815260040161051a90611048565b60405180910390fd5b6007805460ff1916911515919091179055565b600033610544858285610a2f565b61054f858585610ac1565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906104e6908290869061059490879061107d565b61090b565b6000546001600160a01b031633146105c35760405162461bcd60e51b815260040161051a90611048565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146106185760405162461bcd60e51b815260040161051a90611048565b6106226000610e24565b565b6060600580546104559061100e565b6000546001600160a01b0316331461065d5760405162461bcd60e51b815260040161051a90611048565b60078054911515620100000262ff000019909216919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156106fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161051a565b61054f828686840361090b565b6000336104e6818585610ac1565b6000546001600160a01b031633146107435760405162461bcd60e51b815260040161051a90611048565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146107985760405162461bcd60e51b815260040161051a90611048565b600780549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146107dc5760405162461bcd60e51b815260040161051a90611048565b43600b556007805460ff19169055565b6000546001600160a01b031633146108165760405162461bcd60e51b815260040161051a90611048565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461086b5760405162461bcd60e51b815260040161051a90611048565b6001600160a01b0381166108d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051a565b6108d981610e24565b50565b6000546001600160a01b031633146109065760405162461bcd60e51b815260040161051a90611048565b600a55565b6001600160a01b03831661096d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161051a565b6001600160a01b0382166109ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161051a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610abb5781811015610aae5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161051a565b610abb848484840361090b565b50505050565b6001600160a01b038316610b255760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161051a565b6001600160a01b038216610b875760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161051a565b60075462010000900460ff1615610c0f576001600160a01b03831660009081526009602052604090205460ff16158015610bda57506001600160a01b03821660009081526009602052604090205460ff16155b610c0f5760405162461bcd60e51b815260040161051a90602080825260049082015263426f742160e01b604082015260600190565b600754610100900460ff168015610c3e57506001600160a01b03831660009081526008602052604090205460ff165b8015610c675750737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03831614155b15610ca657600a54600b54610c7c919061107d565b4311610ca6576001600160a01b0382166000908152600960205260409020805460ff191660011790555b60075460ff161580610cd057506001600160a01b03831660009081526006602052604090205460ff165b610d1c5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e7320617265207061757365642e0000000000000000604482015260640161051a565b6001600160a01b03831660009081526001602052604090205481811015610d945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161051a565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610dcb90849061107d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1791815260200190565b60405180910390a3610abb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610ea157858101830151858201604001528201610e85565b81811115610eb3576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ee057600080fd5b919050565b60008060408385031215610ef857600080fd5b610f0183610ec9565b946020939093013593505050565b80358015158114610ee057600080fd5b600060208284031215610f3157600080fd5b610f3a82610f0f565b9392505050565b600080600060608486031215610f5657600080fd5b610f5f84610ec9565b9250610f6d60208501610ec9565b9150604084013590509250925092565b600060208284031215610f8f57600080fd5b610f3a82610ec9565b60008060408385031215610fab57600080fd5b610fb483610ec9565b9150610fc260208401610f0f565b90509250929050565b60008060408385031215610fde57600080fd5b610fe783610ec9565b9150610fc260208401610ec9565b60006020828403121561100757600080fd5b5035919050565b600181811c9082168061102257607f821691505b60208210810361104257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561109e57634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212202e9339f04c4e7ff93089b7a7e7697a9d0b98246f2c78be84127447ad7002415264736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063a457c2d7116100f9578063c9567bf911610097578063d9e4158211610071578063d9e41582146103d4578063dd62ed3e146103e7578063f2fde38b14610420578063fa67ae5a1461043357600080fd5b8063c9567bf91461038e578063cdeaf94f14610396578063d9bf481f146103a857600080fd5b8063b62496f5116100d3578063b62496f51461033c578063bf56b3711461035f578063bffb691d14610368578063c6a53bd01461037b57600080fd5b8063a457c2d714610303578063a9059cbb14610316578063b216fbeb1461032957600080fd5b80634294dd2a11610166578063715018a611610140578063715018a6146102c55780638da5cb5b146102cd57806395d89b41146102e8578063a25f530b146102f057600080fd5b80634294dd2a146102665780636ca50eab1461028957806370a082311461029c57600080fd5b806318160ddd116101a257806318160ddd1461021f57806323b872dd14610231578063313ce56714610244578063395093511461025357600080fd5b806306fdde03146101c9578063095ea7b3146101e757806316c38b3c1461020a575b600080fd5b6101d1610446565b6040516101de9190610e74565b60405180910390f35b6101fa6101f5366004610ee5565b6104d8565b60405190151581526020016101de565b61021d610218366004610f1f565b6104f0565b005b6003545b6040519081526020016101de565b6101fa61023f366004610f41565b610536565b604051601281526020016101de565b6101fa610261366004610ee5565b61055a565b6101fa610274366004610f7d565b60066020526000908152604090205460ff1681565b61021d610297366004610f98565b610599565b6102236102aa366004610f7d565b6001600160a01b031660009081526001602052604090205490565b61021d6105ee565b6000546040516001600160a01b0390911681526020016101de565b6101d1610624565b61021d6102fe366004610f1f565b610633565b6101fa610311366004610ee5565b610679565b6101fa610324366004610ee5565b61070b565b61021d610337366004610f98565b610719565b6101fa61034a366004610f7d565b60086020526000908152604090205460ff1681565b610223600b5481565b6007546101fa9062010000900460ff1681565b61021d610389366004610f1f565b61076e565b61021d6107b2565b6007546101fa90610100900460ff1681565b6101fa6103b6366004610f7d565b6001600160a01b031660009081526009602052604090205460ff1690565b61021d6103e2366004610f98565b6107ec565b6102236103f5366004610fcb565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021d61042e366004610f7d565b610841565b61021d610441366004610ff5565b6108dc565b6060600480546104559061100e565b80601f01602080910402602001604051908101604052809291908181526020018280546104819061100e565b80156104ce5780601f106104a3576101008083540402835291602001916104ce565b820191906000526020600020905b8154815290600101906020018083116104b157829003601f168201915b5050505050905090565b6000336104e681858561090b565b5060019392505050565b6000546001600160a01b031633146105235760405162461bcd60e51b815260040161051a90611048565b60405180910390fd5b6007805460ff1916911515919091179055565b600033610544858285610a2f565b61054f858585610ac1565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906104e6908290869061059490879061107d565b61090b565b6000546001600160a01b031633146105c35760405162461bcd60e51b815260040161051a90611048565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146106185760405162461bcd60e51b815260040161051a90611048565b6106226000610e24565b565b6060600580546104559061100e565b6000546001600160a01b0316331461065d5760405162461bcd60e51b815260040161051a90611048565b60078054911515620100000262ff000019909216919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156106fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161051a565b61054f828686840361090b565b6000336104e6818585610ac1565b6000546001600160a01b031633146107435760405162461bcd60e51b815260040161051a90611048565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146107985760405162461bcd60e51b815260040161051a90611048565b600780549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146107dc5760405162461bcd60e51b815260040161051a90611048565b43600b556007805460ff19169055565b6000546001600160a01b031633146108165760405162461bcd60e51b815260040161051a90611048565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461086b5760405162461bcd60e51b815260040161051a90611048565b6001600160a01b0381166108d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051a565b6108d981610e24565b50565b6000546001600160a01b031633146109065760405162461bcd60e51b815260040161051a90611048565b600a55565b6001600160a01b03831661096d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161051a565b6001600160a01b0382166109ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161051a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610abb5781811015610aae5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161051a565b610abb848484840361090b565b50505050565b6001600160a01b038316610b255760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161051a565b6001600160a01b038216610b875760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161051a565b60075462010000900460ff1615610c0f576001600160a01b03831660009081526009602052604090205460ff16158015610bda57506001600160a01b03821660009081526009602052604090205460ff16155b610c0f5760405162461bcd60e51b815260040161051a90602080825260049082015263426f742160e01b604082015260600190565b600754610100900460ff168015610c3e57506001600160a01b03831660009081526008602052604090205460ff165b8015610c675750737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03831614155b15610ca657600a54600b54610c7c919061107d565b4311610ca6576001600160a01b0382166000908152600960205260409020805460ff191660011790555b60075460ff161580610cd057506001600160a01b03831660009081526006602052604090205460ff165b610d1c5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e7320617265207061757365642e0000000000000000604482015260640161051a565b6001600160a01b03831660009081526001602052604090205481811015610d945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161051a565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610dcb90849061107d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1791815260200190565b60405180910390a3610abb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610ea157858101830151858201604001528201610e85565b81811115610eb3576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ee057600080fd5b919050565b60008060408385031215610ef857600080fd5b610f0183610ec9565b946020939093013593505050565b80358015158114610ee057600080fd5b600060208284031215610f3157600080fd5b610f3a82610f0f565b9392505050565b600080600060608486031215610f5657600080fd5b610f5f84610ec9565b9250610f6d60208501610ec9565b9150604084013590509250925092565b600060208284031215610f8f57600080fd5b610f3a82610ec9565b60008060408385031215610fab57600080fd5b610fb483610ec9565b9150610fc260208401610f0f565b90509250929050565b60008060408385031215610fde57600080fd5b610fe783610ec9565b9150610fc260208401610ec9565b60006020828403121561100757600080fd5b5035919050565b600181811c9082168061102257607f821691505b60208210810361104257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561109e57634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212202e9339f04c4e7ff93089b7a7e7697a9d0b98246f2c78be84127447ad7002415264736f6c634300080d0033

Deployed Bytecode Sourcemap

5252:13811:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6669:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9020:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9020:201:0;1053:187:1;18865:85:0;;;;;;:::i;:::-;;:::i;:::-;;7789:108;7877:12;;7789:108;;;1741:25:1;;;1729:2;1714:18;7789:108:0;1595:177:1;9801:295:0;;;;;;:::i;:::-;;:::i;7631:93::-;;;7714:2;2252:36:1;;2240:2;2225:18;7631:93:0;2110:184:1;10505:240:0;;;;;;:::i;:::-;;:::i;5595:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18725:128;;;;;;:::i;:::-;;:::i;7960:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8061:18:0;8034:7;8061:18;;;:9;:18;;;;;;;7960:127;4435:103;;;:::i;3784:87::-;3830:7;3857:6;3784:87;;-1:-1:-1;;;;;3857:6:0;;;2895:51:1;;2883:2;2868:18;3784:87:0;2749:203:1;6888:104:0;;;:::i;13850:::-;;;;;;:::i;:::-;;:::i;11248:438::-;;;;;;:::i;:::-;;:::i;8293:193::-;;;;;;:::i;:::-;;:::i;13619:111::-;;;;;;:::i;:::-;;:::i;5761:58::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5905:25;;;;;;5713:35;;;;;;;;;;;;13962:111;;;;;;:::i;:::-;;:::i;13498:113::-;;;:::i;5667:39::-;;;;;;;;;;;;13738:104;;;;;;:::i;:::-;-1:-1:-1;;;;;13820:14:0;13796:4;13820:14;;;:5;:14;;;;;;;;;13738:104;13343:147;;;;;;:::i;:::-;;:::i;8549:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8665:18:0;;;8638:7;8665:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8549:151;4693:201;;;;;;:::i;:::-;;:::i;18958:94::-;;;;;;:::i;:::-;;:::i;6669:100::-;6723:13;6756:5;6749:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6669:100;:::o;9020:201::-;9103:4;173:10;9159:32;173:10;9175:7;9184:6;9159:8;:32::i;:::-;-1:-1:-1;9209:4:0;;9020:201;-1:-1:-1;;;9020:201:0:o;18865:85::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;;;;;;;;;18926:8:::1;:16:::0;;-1:-1:-1;;18926:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18865:85::o;9801:295::-;9932:4;173:10;9990:38;10006:4;173:10;10021:6;9990:15;:38::i;:::-;10039:27;10049:4;10055:2;10059:6;10039:9;:27::i;:::-;-1:-1:-1;10084:4:0;;9801:295;-1:-1:-1;;;;9801:295:0:o;10505:240::-;173:10;10593:4;10674:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10674:27:0;;;;;;;;;;10593:4;;173:10;10649:66;;173:10;;10674:27;;:40;;10704:10;;10674:40;:::i;:::-;10649:8;:66::i;18725:128::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18815:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:30;;-1:-1:-1;;18815:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18725:128::o;4435:103::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;4500:30:::1;4527:1;4500:18;:30::i;:::-;4435:103::o:0;6888:104::-;6944:13;6977:7;6970:14;;;;;:::i;13850:104::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;13921:16:::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;13921:25:0;;::::1;::::0;;;::::1;::::0;;13850:104::o;11248:438::-;173:10;11341:4;11424:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11424:27:0;;;;;;;;;;11341:4;;173:10;11470:35;;;;11462:85;;;;-1:-1:-1;;;11462:85:0;;4585:2:1;11462:85:0;;;4567:21:1;4624:2;4604:18;;;4597:30;4663:34;4643:18;;;4636:62;-1:-1:-1;;;4714:18:1;;;4707:35;4759:19;;11462:85:0;4383:401:1;11462:85:0;11583:60;11592:5;11599:7;11627:15;11608:16;:34;11583:8;:60::i;8293:193::-;8372:4;173:10;8428:28;173:10;8445:2;8449:6;8428:9;:28::i;13619:111::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13698:15:0;;;::::1;;::::0;;;:5:::1;:15;::::0;;;;:24;;-1:-1:-1;;13698:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;13619:111::o;13962:::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;14035:20:::1;:30:::0;;;::::1;;;;-1:-1:-1::0;;14035:30:0;;::::1;::::0;;;::::1;::::0;;13962:111::o;13498:113::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;13564:12:::1;13551:10;:25:::0;13587:8:::1;:16:::0;;-1:-1:-1;;13587:16:0::1;::::0;;13498:113::o;13343:147::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13443:31:0;;;::::1;;::::0;;;:25:::1;:31;::::0;;;;:39;;-1:-1:-1;;13443:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;13343:147::o;4693:201::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4782:22:0;::::1;4774:73;;;::::0;-1:-1:-1;;;4774:73:0;;4991:2:1;4774:73:0::1;::::0;::::1;4973:21:1::0;5030:2;5010:18;;;5003:30;5069:34;5049:18;;;5042:62;-1:-1:-1;;;5120:18:1;;;5113:36;5166:19;;4774:73:0::1;4789:402:1::0;4774:73:0::1;4858:28;4877:8;4858:18;:28::i;:::-;4693:201:::0;:::o;18958:94::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;19026:10:::1;:18:::0;18958:94::o;16121:380::-;-1:-1:-1;;;;;16257:19:0;;16249:68;;;;-1:-1:-1;;;16249:68:0;;5398:2:1;16249:68:0;;;5380:21:1;5437:2;5417:18;;;5410:30;5476:34;5456:18;;;5449:62;-1:-1:-1;;;5527:18:1;;;5520:34;5571:19;;16249:68:0;5196:400:1;16249:68:0;-1:-1:-1;;;;;16336:21:0;;16328:68;;;;-1:-1:-1;;;16328:68:0;;5803:2:1;16328:68:0;;;5785:21:1;5842:2;5822:18;;;5815:30;5881:34;5861:18;;;5854:62;-1:-1:-1;;;5932:18:1;;;5925:32;5974:19;;16328:68:0;5601:398:1;16328:68:0;-1:-1:-1;;;;;16409:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16461:32;;1741:25:1;;;16461:32:0;;1714:18:1;16461:32:0;;;;;;;16121:380;;;:::o;16788:453::-;-1:-1:-1;;;;;8665:18:0;;;16923:24;8665:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;16990:37:0;;16986:248;;17072:6;17052:16;:26;;17044:68;;;;-1:-1:-1;;;17044:68:0;;6206:2:1;17044:68:0;;;6188:21:1;6245:2;6225:18;;;6218:30;6284:31;6264:18;;;6257:59;6333:18;;17044:68:0;6004:353:1;17044:68:0;17156:51;17165:5;17172:7;17200:6;17181:16;:25;17156:8;:51::i;:::-;16912:329;16788:453;;;:::o;12165:1170::-;-1:-1:-1;;;;;12296:18:0;;12288:68;;;;-1:-1:-1;;;12288:68:0;;6564:2:1;12288:68:0;;;6546:21:1;6603:2;6583:18;;;6576:30;6642:34;6622:18;;;6615:62;-1:-1:-1;;;6693:18:1;;;6686:35;6738:19;;12288:68:0;6362:401:1;12288:68:0;-1:-1:-1;;;;;12375:16:0;;12367:64;;;;-1:-1:-1;;;12367:64:0;;6970:2:1;12367:64:0;;;6952:21:1;7009:2;6989:18;;;6982:30;7048:34;7028:18;;;7021:62;-1:-1:-1;;;7099:18:1;;;7092:33;7142:19;;12367:64:0;6768:399:1;12367:64:0;12446:16;;;;;;;12442:93;;;-1:-1:-1;;;;;12489:11:0;;;;;;:5;:11;;;;;;;;12488:12;:26;;;;-1:-1:-1;;;;;;12505:9:0;;;;;;:5;:9;;;;;;;;12504:10;12488:26;12479:44;;;;-1:-1:-1;;;12479:44:0;;;;;;7374:2:1;7356:21;;;7413:1;7393:18;;;7386:29;-1:-1:-1;;;7446:2:1;7431:18;;7424:34;7490:2;7475:18;;7172:327;12479:44:0;12602:20;;;;;;;:55;;;;-1:-1:-1;;;;;;12626:31:0;;;;;;:25;:31;;;;;;;;12602:55;:107;;;;-1:-1:-1;12667:42:0;-1:-1:-1;;;;;12661:48:0;;;;12602:107;12598:238;;;12760:10;;12747;;:23;;;;:::i;:::-;12730:12;:41;12726:99;;-1:-1:-1;;;;;12793:9:0;;;;;;:5;:9;;;;;:16;;-1:-1:-1;;12793:16:0;12805:4;12793:16;;;12726:99;12887:8;;;;12886:9;;:32;;-1:-1:-1;;;;;;12899:19:0;;;;;;:13;:19;;;;;;;;12886:32;12878:69;;;;-1:-1:-1;;;12878:69:0;;7706:2:1;12878:69:0;;;7688:21:1;7745:2;7725:18;;;7718:30;7784:26;7764:18;;;7757:54;7828:18;;12878:69:0;7504:348:1;12878:69:0;-1:-1:-1;;;;;13016:15:0;;12994:19;13016:15;;;:9;:15;;;;;;13050:21;;;;13042:72;;;;-1:-1:-1;;;13042:72:0;;8059:2:1;13042:72:0;;;8041:21:1;8098:2;8078:18;;;8071:30;8137:34;8117:18;;;8110:62;-1:-1:-1;;;8188:18:1;;;8181:36;8234:19;;13042:72:0;7857:402:1;13042:72:0;-1:-1:-1;;;;;13150:15:0;;;;;;;:9;:15;;;;;;13168:20;;;13150:38;;13210:13;;;;;;;;:23;;13182:6;;13150:15;13210:23;;13182:6;;13210:23;:::i;:::-;;;;;;;;13266:2;-1:-1:-1;;;;;13251:26:0;13260:4;-1:-1:-1;;;;;13251:26:0;;13270:6;13251:26;;;;1741:25:1;;1729:2;1714:18;;1595:177;13251:26:0;;;;;;;;13290:37;17841:125;5054:191;5128:16;5147:6;;-1:-1:-1;;;;;5164:17:0;;;-1:-1:-1;;;;;;5164:17:0;;;;;;5197:40;;5147:6;;;;;;;5197:40;;5128:16;5197:40;5117:128;5054:191;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:160::-;1310:20;;1366:13;;1359:21;1349:32;;1339:60;;1395:1;1392;1385:12;1410:180;1466:6;1519:2;1507:9;1498:7;1494:23;1490:32;1487:52;;;1535:1;1532;1525:12;1487:52;1558:26;1574:9;1558:26;:::i;:::-;1548:36;1410:180;-1:-1:-1;;;1410:180:1:o;1777:328::-;1854:6;1862;1870;1923:2;1911:9;1902:7;1898:23;1894:32;1891:52;;;1939:1;1936;1929:12;1891:52;1962:29;1981:9;1962:29;:::i;:::-;1952:39;;2010:38;2044:2;2033:9;2029:18;2010:38;:::i;:::-;2000:48;;2095:2;2084:9;2080:18;2067:32;2057:42;;1777:328;;;;;:::o;2299:186::-;2358:6;2411:2;2399:9;2390:7;2386:23;2382:32;2379:52;;;2427:1;2424;2417:12;2379:52;2450:29;2469:9;2450:29;:::i;2490:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;;2703:35;2734:2;2723:9;2719:18;2703:35;:::i;:::-;2693:45;;2490:254;;;;;:::o;2957:260::-;3025:6;3033;3086:2;3074:9;3065:7;3061:23;3057:32;3054:52;;;3102:1;3099;3092:12;3054:52;3125:29;3144:9;3125:29;:::i;:::-;3115:39;;3173:38;3207:2;3196:9;3192:18;3173:38;:::i;3222:180::-;3281:6;3334:2;3322:9;3313:7;3309:23;3305:32;3302:52;;;3350:1;3347;3340:12;3302:52;-1:-1:-1;3373:23:1;;3222:180;-1:-1:-1;3222:180:1:o;3407:380::-;3486:1;3482:12;;;;3529;;;3550:61;;3604:4;3596:6;3592:17;3582:27;;3550:61;3657:2;3649:6;3646:14;3626:18;3623:38;3620:161;;3703:10;3698:3;3694:20;3691:1;3684:31;3738:4;3735:1;3728:15;3766:4;3763:1;3756:15;3620:161;;3407:380;;;:::o;3792:356::-;3994:2;3976:21;;;4013:18;;;4006:30;4072:34;4067:2;4052:18;;4045:62;4139:2;4124:18;;3792:356::o;4153:225::-;4193:3;4224:1;4220:6;4217:1;4214:13;4211:136;;;4269:10;4264:3;4260:20;4257:1;4250:31;4304:4;4301:1;4294:15;4332:4;4329:1;4322:15;4211:136;-1:-1:-1;4363:9:1;;4153:225::o

Swarm Source

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