ETH Price: $3,377.93 (-1.92%)
Gas: 2 Gwei

Token

JizzRocket (JIZZ)
 

Overview

Max Total Supply

69,000,000,000 JIZZ

Holders

1,391

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
JIZZ

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 6969 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

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

    function WETH() external pure returns (address);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
}

contract JIZZ is Context, IERC20, IERC20Metadata, Ownable {

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // Anti bot
    mapping(address => uint256) public _blockNumberByAddress;
    bool public antiBotsActive = false;
    mapping(address => bool) public isContractExempt;
    uint public blockCooldownAmount = 1;


    /**
     * @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() {
        _name = "JizzRocket";
        _symbol = "JIZZ";
        uint e_totalSupply = 69_000_000_000 ether;
        
        // Anti bot
        isContractExempt[address(this)] = true;

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

        _beforeTokenTransfer(from, to, amount);

        // bots don't get jizz
        if(antiBotsActive)
        {
            if(!isContractExempt[from] && !isContractExempt[to])
            {
                address human = ensureOneHuman(from, to);
                ensureMaxTxFrequency(human);
                _blockNumberByAddress[human] = block.number;
            }
        }
        // 

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

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

    // anti bot
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function ensureOneHuman(address _to, address _from) internal virtual returns (address) {
        require(!isContract(_to) || !isContract(_from), "No bots are allowed JIZZ!");
        if (isContract(_to)) return _from;
        else return _to;
    }

    function ensureMaxTxFrequency(address addr) internal virtual {
        bool isAllowed = _blockNumberByAddress[addr] == 0 ||
            ((_blockNumberByAddress[addr] + blockCooldownAmount) < (block.number + 1));
        require(isAllowed, "Max tx frequency exceeded!");
    }

    function setAntiBotsActive(bool value) external onlyOwner {
        antiBotsActive = value;
    }

    function setBlockCooldown(uint value) external onlyOwner {
        blockCooldownAmount = value;
    }

    function setContractExempt(address account, bool value) external onlyOwner {
        isContractExempt[account] = value;
    }
    // End anti bot
}

Contract Security Audit

Contract ABI

[{"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":"","type":"address"}],"name":"_blockNumberByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"blockCooldownAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isContractExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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"}]

60806040526007805460ff1916905560016009553480156200002057600080fd5b506200002c33620000c2565b60408051808201909152600a815269129a5e9e949bd8dad95d60b21b60208201526004906200005c9082620002a3565b506040805180820190915260048152632524ad2d60e11b6020820152600590620000879082620002a3565b50306000908152600860205260409020805460ff191660011790556bdef376571332906a88000000620000bb338262000112565b5062000397565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200016d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018191906200036f565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b09084906200036f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022a57607f821691505b6020821081036200024b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001fa57600081815260208120601f850160051c810160208610156200027a5750805b601f850160051c820191505b818110156200029b5782815560010162000286565b505050505050565b81516001600160401b03811115620002bf57620002bf620001ff565b620002d781620002d0845462000215565b8462000251565b602080601f8311600181146200030f5760008415620002f65750858301515b600019600386901b1c1916600185901b1785556200029b565b600085815260208120601f198616915b8281101562000340578886015182559484019460019091019084016200031f565b50858210156200035f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200039157634e487b7160e01b600052601160045260246000fd5b92915050565b61121c80620003a76000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c8063715018a6116100d85780639686d3221161008c578063dd62ed3e11610066578063dd62ed3e14610309578063f2fde38b1461034f578063f6887cd31461036257600080fd5b80639686d322146102d0578063a457c2d7146102e3578063a9059cbb146102f657600080fd5b806380f68310116100bd57806380f683101461028d5780638da5cb5b146102a057806395d89b41146102c857600080fd5b8063715018a61461026557806377a59f001461026d57600080fd5b806323b872dd1161012f5780633950935111610114578063395093511461020f57806341f20b681461022257806370a082311461022f57600080fd5b806323b872dd146101ed578063313ce5671461020057600080fd5b806313c72aed1161016057806313c72aed146101bd57806318160ddd146101d25780631868aadf146101e457600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610385565b6040516101919190610f9b565b60405180910390f35b6101ad6101a8366004611030565b610417565b6040519015158152602001610191565b6101d06101cb36600461105a565b610431565b005b6003545b604051908152602001610191565b6101d660095481565b6101ad6101fb366004611073565b6104a2565b60405160128152602001610191565b6101ad61021d366004611030565b6104c6565b6007546101ad9060ff1681565b6101d661023d3660046110af565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101d0610512565b6101d661027b3660046110af565b60066020526000908152604090205481565b6101d061029b3660046110e1565b610585565b60005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610191565b61018461061d565b6101d06102de3660046110fc565b61062c565b6101ad6102f1366004611030565b6106e9565b6101ad610304366004611030565b6107a0565b6101d661031736600461112f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6101d061035d3660046110af565b6107ae565b6101ad6103703660046110af565b60086020526000908152604090205460ff1681565b60606004805461039490611159565b80601f01602080910402602001604051908101604052809291908181526020018280546103c090611159565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b6000336104258185856108aa565b60019150505b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461049d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600955565b6000336104b0858285610a29565b6104bb858585610ae6565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610425908290869061050d9087906111ac565b6108aa565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b6105836000610df6565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606005805461039490611159565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156107935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610494565b6104bb82868684036108aa565b600033610425818585610ae6565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b73ffffffffffffffffffffffffffffffffffffffff811661089e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610494565b6108a781610df6565b50565b73ffffffffffffffffffffffffffffffffffffffff83166109325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff82166109bb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ae05781811015610ad35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610494565b610ae084848484036108aa565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b6f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff8216610bf85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610494565b60075460ff1615610ca35773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16158015610c5f575073ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604090205460ff16155b15610ca3576000610c708484610e6b565b9050610c7b81610edb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610d3f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610d839084906111ac565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de991815260200190565b60405180910390a3610ae0565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610e7a5750813b155b610ec65760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f776564204a495a5a21000000000000006044820152606401610494565b823b15610ed457508061042b565b508161042b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260408120541580610f485750610f134360016111ac565b60095473ffffffffffffffffffffffffffffffffffffffff8416600090815260066020526040902054610f4691906111ac565b105b905080610f975760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e6379206578636565646564210000000000006044820152606401610494565b5050565b600060208083528351808285015260005b81811015610fc857858101830151858201604001528201610fac565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461102b57600080fd5b919050565b6000806040838503121561104357600080fd5b61104c83611007565b946020939093013593505050565b60006020828403121561106c57600080fd5b5035919050565b60008060006060848603121561108857600080fd5b61109184611007565b925061109f60208501611007565b9150604084013590509250925092565b6000602082840312156110c157600080fd5b6110ca82611007565b9392505050565b8035801515811461102b57600080fd5b6000602082840312156110f357600080fd5b6110ca826110d1565b6000806040838503121561110f57600080fd5b61111883611007565b9150611126602084016110d1565b90509250929050565b6000806040838503121561114257600080fd5b61114b83611007565b915061112660208401611007565b600181811c9082168061116d57607f821691505b6020821081036111a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8082018082111561042b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212205fc099a63e053dc0f0e652c0fed7a0ff05bd4afb472b2c4341518154837c6ce164736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101775760003560e01c8063715018a6116100d85780639686d3221161008c578063dd62ed3e11610066578063dd62ed3e14610309578063f2fde38b1461034f578063f6887cd31461036257600080fd5b80639686d322146102d0578063a457c2d7146102e3578063a9059cbb146102f657600080fd5b806380f68310116100bd57806380f683101461028d5780638da5cb5b146102a057806395d89b41146102c857600080fd5b8063715018a61461026557806377a59f001461026d57600080fd5b806323b872dd1161012f5780633950935111610114578063395093511461020f57806341f20b681461022257806370a082311461022f57600080fd5b806323b872dd146101ed578063313ce5671461020057600080fd5b806313c72aed1161016057806313c72aed146101bd57806318160ddd146101d25780631868aadf146101e457600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610385565b6040516101919190610f9b565b60405180910390f35b6101ad6101a8366004611030565b610417565b6040519015158152602001610191565b6101d06101cb36600461105a565b610431565b005b6003545b604051908152602001610191565b6101d660095481565b6101ad6101fb366004611073565b6104a2565b60405160128152602001610191565b6101ad61021d366004611030565b6104c6565b6007546101ad9060ff1681565b6101d661023d3660046110af565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101d0610512565b6101d661027b3660046110af565b60066020526000908152604090205481565b6101d061029b3660046110e1565b610585565b60005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610191565b61018461061d565b6101d06102de3660046110fc565b61062c565b6101ad6102f1366004611030565b6106e9565b6101ad610304366004611030565b6107a0565b6101d661031736600461112f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6101d061035d3660046110af565b6107ae565b6101ad6103703660046110af565b60086020526000908152604090205460ff1681565b60606004805461039490611159565b80601f01602080910402602001604051908101604052809291908181526020018280546103c090611159565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b6000336104258185856108aa565b60019150505b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461049d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600955565b6000336104b0858285610a29565b6104bb858585610ae6565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610425908290869061050d9087906111ac565b6108aa565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b6105836000610df6565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606005805461039490611159565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156107935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610494565b6104bb82868684036108aa565b600033610425818585610ae6565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b73ffffffffffffffffffffffffffffffffffffffff811661089e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610494565b6108a781610df6565b50565b73ffffffffffffffffffffffffffffffffffffffff83166109325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff82166109bb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ae05781811015610ad35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610494565b610ae084848484036108aa565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b6f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff8216610bf85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610494565b60075460ff1615610ca35773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16158015610c5f575073ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604090205460ff16155b15610ca3576000610c708484610e6b565b9050610c7b81610edb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610d3f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610d839084906111ac565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de991815260200190565b60405180910390a3610ae0565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610e7a5750813b155b610ec65760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f776564204a495a5a21000000000000006044820152606401610494565b823b15610ed457508061042b565b508161042b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260408120541580610f485750610f134360016111ac565b60095473ffffffffffffffffffffffffffffffffffffffff8416600090815260066020526040902054610f4691906111ac565b105b905080610f975760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e6379206578636565646564210000000000006044820152606401610494565b5050565b600060208083528351808285015260005b81811015610fc857858101830151858201604001528201610fac565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461102b57600080fd5b919050565b6000806040838503121561104357600080fd5b61104c83611007565b946020939093013593505050565b60006020828403121561106c57600080fd5b5035919050565b60008060006060848603121561108857600080fd5b61109184611007565b925061109f60208501611007565b9150604084013590509250925092565b6000602082840312156110c157600080fd5b6110ca82611007565b9392505050565b8035801515811461102b57600080fd5b6000602082840312156110f357600080fd5b6110ca826110d1565b6000806040838503121561110f57600080fd5b61111883611007565b9150611126602084016110d1565b90509250929050565b6000806040838503121561114257600080fd5b61114b83611007565b915061112660208401611007565b600181811c9082168061116d57607f821691505b6020821081036111a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8082018082111561042b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212205fc099a63e053dc0f0e652c0fed7a0ff05bd4afb472b2c4341518154837c6ce164736f6c63430008110033

Deployed Bytecode Sourcemap

5587:13444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6738:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9089:201;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;9089:201:0;1086:187:1;18769:103:0;;;;;;:::i;:::-;;:::i;:::-;;7858:108;7946:12;;7858:108;;;1609:25:1;;;1597:2;1582:18;7858:108:0;1463:177:1;6053:35:0;;;;;;9870:295;;;;;;:::i;:::-;;:::i;7700:93::-;;;7783:2;2120:36:1;;2108:2;2093:18;7700:93:0;1978:184:1;10574:240:0;;;;;;:::i;:::-;;:::i;5957:34::-;;;;;;;;;8029:127;;;;;;:::i;:::-;8130:18;;8103:7;8130:18;;;:9;:18;;;;;;;8029:127;4435:103;;;:::i;5894:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18662:99;;;;;;:::i;:::-;;:::i;3784:87::-;3830:7;3857:6;3784:87;;3857:6;;;;2854:74:1;;2842:2;2827:18;3784:87:0;2708:226:1;6957:104:0;;;:::i;18880:127::-;;;;;;:::i;:::-;;:::i;11317:438::-;;;;;;:::i;:::-;;:::i;8362:193::-;;;;;;:::i;:::-;;:::i;8618:151::-;;;;;;:::i;:::-;8734:18;;;;8707:7;8734:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8618:151;4693:201;;;;;;:::i;:::-;;:::i;5998:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6738:100;6792:13;6825:5;6818:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6738:100;:::o;9089:201::-;9172:4;173:10;9228:32;173:10;9244:7;9253:6;9228:8;:32::i;:::-;9278:4;9271:11;;;9089:201;;;;;:::o;18769:103::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;;;;;;;;;18837:19:::1;:27:::0;18769:103::o;9870:295::-;10001:4;173:10;10059:38;10075:4;173:10;10090:6;10059:15;:38::i;:::-;10108:27;10118:4;10124:2;10128:6;10108:9;:27::i;:::-;-1:-1:-1;10153:4:0;;9870:295;-1:-1:-1;;;;9870:295:0:o;10574:240::-;173:10;10662:4;10743:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;10662:4;;173:10;10718:66;;173:10;;10743:27;;:40;;10773:10;;10743:40;:::i;:::-;10718:8;:66::i;4435:103::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;3905:356:1;3996:68:0;4500:30:::1;4527:1;4500:18;:30::i;:::-;4435:103::o:0;18662:99::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;3905:356:1;3996:68:0;18731:14:::1;:22:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;18662:99::o;6957:104::-;7013:13;7046:7;7039:14;;;;;:::i;18880:127::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;3905:356:1;3996:68:0;18966:25:::1;::::0;;;::::1;;::::0;;;:16:::1;:25;::::0;;;;:33;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;18880:127::o;11317:438::-;173:10;11410:4;11493:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;11410:4;;173:10;11539:35;;;;11531:85;;;;-1:-1:-1;;;11531:85:0;;4752:2:1;11531:85:0;;;4734:21:1;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;4901:7;4881:18;;;4874:35;4926:19;;11531:85:0;4550:401:1;11531:85:0;11652:60;11661:5;11668:7;11696:15;11677:16;:34;11652:8;:60::i;8362:193::-;8441:4;173:10;8497:28;173:10;8514:2;8518:6;8497:9;:28::i;4693:201::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;3905:356:1;3996:68:0;4782:22:::1;::::0;::::1;4774:73;;;::::0;-1:-1:-1;;;4774:73:0;;5158:2:1;4774:73:0::1;::::0;::::1;5140:21:1::0;5197:2;5177:18;;;5170:30;5236:34;5216:18;;;5209:62;5307:8;5287:18;;;5280:36;5333:19;;4774:73:0::1;4956:402:1::0;4774:73:0::1;4858:28;4877:8;4858:18;:28::i;:::-;4693:201:::0;:::o;15313:380::-;15449:19;;;15441:68;;;;-1:-1:-1;;;15441:68:0;;5565:2:1;15441:68:0;;;5547:21:1;5604:2;5584:18;;;5577:30;5643:34;5623:18;;;5616:62;5714:6;5694:18;;;5687:34;5738:19;;15441:68:0;5363:400:1;15441:68:0;15528:21;;;15520:68;;;;-1:-1:-1;;;15520:68:0;;5970:2:1;15520:68:0;;;5952:21:1;6009:2;5989:18;;;5982:30;6048:34;6028:18;;;6021:62;6119:4;6099:18;;;6092:32;6141:19;;15520:68:0;5768:398:1;15520:68:0;15601:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15653:32;;1609:25:1;;;15653:32:0;;1582:18:1;15653:32:0;;;;;;;15313:380;;;:::o;15980:453::-;8734:18;;;;16115:24;8734:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;16202:17;16182:37;;16178:248;;16264:6;16244:16;:26;;16236:68;;;;-1:-1:-1;;;16236:68:0;;6373:2:1;16236:68:0;;;6355:21:1;6412:2;6392:18;;;6385:30;6451:31;6431:18;;;6424:59;6500:18;;16236:68:0;6171:353:1;16236:68:0;16348:51;16357:5;16364:7;16392:6;16373:16;:25;16348:8;:51::i;:::-;16104:329;15980:453;;;:::o;12234:1031::-;12365:18;;;12357:68;;;;-1:-1:-1;;;12357:68:0;;6731:2:1;12357:68:0;;;6713:21:1;6770:2;6750:18;;;6743:30;6809:34;6789:18;;;6782:62;6880:7;6860:18;;;6853:35;6905:19;;12357:68:0;6529:401:1;12357:68:0;12444:16;;;12436:64;;;;-1:-1:-1;;;12436:64:0;;7137:2:1;12436:64:0;;;7119:21:1;7176:2;7156:18;;;7149:30;7215:34;7195:18;;;7188:62;7286:5;7266:18;;;7259:33;7309:19;;12436:64:0;6935:399:1;12436:64:0;12599:14;;;;12596:303;;;12643:22;;;;;;;:16;:22;;;;;;;;12642:23;:48;;;;-1:-1:-1;12670:20:0;;;;;;;:16;:20;;;;;;;;12669:21;12642:48;12639:249;;;12724:13;12740:24;12755:4;12761:2;12740:14;:24::i;:::-;12724:40;;12783:27;12804:5;12783:20;:27::i;:::-;12829:28;;;;;;:21;:28;;;;;12860:12;12829:43;;12639:249;12946:15;;;12924:19;12946:15;;;:9;:15;;;;;;12980:21;;;;12972:72;;;;-1:-1:-1;;;12972:72:0;;7541:2:1;12972:72:0;;;7523:21:1;7580:2;7560:18;;;7553:30;7619:34;7599:18;;;7592:62;7690:8;7670:18;;;7663:36;7716:19;;12972:72:0;7339:402:1;12972:72:0;13080:15;;;;;;;;:9;:15;;;;;;13098:20;;;13080:38;;13140:13;;;;;;;;:23;;13112:6;;13080:15;13140:23;;13112:6;;13140:23;:::i;:::-;;;;;;;;13196:2;13181:26;;13190:4;13181:26;;;13200:6;13181:26;;;;1609:25:1;;1597:2;1582:18;;1463:177;13181:26:0;;;;;;;;13220:37;17033:125;5054:191;5128:16;5147:6;;;5164:17;;;;;;;;;;5197:40;;5147:6;;;;;;;5197:40;;5128:16;5197:40;5117:128;5054:191;:::o;18115:252::-;18193:7;18043:20;;18091:8;;18221:38;;-1:-1:-1;18043:20:0;;18091:8;18221:38;18213:76;;;;-1:-1:-1;;;18213:76:0;;7948:2:1;18213:76:0;;;7930:21:1;7987:2;7967:18;;;7960:30;8026:27;8006:18;;;7999:55;8071:18;;18213:76:0;7746:349:1;18213:76:0;18043:20;;18091:8;18300:59;;-1:-1:-1;18328:5:0;18321:12;;18300:59;-1:-1:-1;18356:3:0;18349:10;;18375:279;18464:27;;;18447:14;18464:27;;;:21;:27;;;;;;:32;;:123;;-1:-1:-1;18569:16:0;:12;18584:1;18569:16;:::i;:::-;18545:19;;18515:27;;;;;;;:21;:27;;;;;;:49;;18545:19;18515:49;:::i;:::-;18514:72;18464:123;18447:140;;18606:9;18598:48;;;;-1:-1:-1;;;18598:48:0;;8302:2:1;18598:48:0;;;8284:21:1;8341:2;8321:18;;;8314:30;8380:28;8360:18;;;8353:56;8426:18;;18598:48:0;8100:350:1;18598:48:0;18436:218;18375:279;:::o;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1278:180::-;1337:6;1390:2;1378:9;1369:7;1365:23;1361:32;1358:52;;;1406:1;1403;1396:12;1358:52;-1:-1:-1;1429:23:1;;1278:180;-1:-1:-1;1278:180:1:o;1645:328::-;1722:6;1730;1738;1791:2;1779:9;1770:7;1766:23;1762:32;1759:52;;;1807:1;1804;1797:12;1759:52;1830:29;1849:9;1830:29;:::i;:::-;1820:39;;1878:38;1912:2;1901:9;1897:18;1878:38;:::i;:::-;1868:48;;1963:2;1952:9;1948:18;1935:32;1925:42;;1645:328;;;;;:::o;2167:186::-;2226:6;2279:2;2267:9;2258:7;2254:23;2250:32;2247:52;;;2295:1;2292;2285:12;2247:52;2318:29;2337:9;2318:29;:::i;:::-;2308:39;2167:186;-1:-1:-1;;;2167:186:1:o;2358:160::-;2423:20;;2479:13;;2472:21;2462:32;;2452:60;;2508:1;2505;2498:12;2523:180;2579:6;2632:2;2620:9;2611:7;2607:23;2603:32;2600:52;;;2648:1;2645;2638:12;2600:52;2671:26;2687:9;2671:26;:::i;2939:254::-;3004:6;3012;3065:2;3053:9;3044:7;3040:23;3036:32;3033:52;;;3081:1;3078;3071:12;3033:52;3104:29;3123:9;3104:29;:::i;:::-;3094:39;;3152:35;3183:2;3172:9;3168:18;3152:35;:::i;:::-;3142:45;;2939:254;;;;;:::o;3198:260::-;3266:6;3274;3327:2;3315:9;3306:7;3302:23;3298:32;3295:52;;;3343:1;3340;3333:12;3295:52;3366:29;3385:9;3366:29;:::i;:::-;3356:39;;3414:38;3448:2;3437:9;3433:18;3414:38;:::i;3463:437::-;3542:1;3538:12;;;;3585;;;3606:61;;3660:4;3652:6;3648:17;3638:27;;3606:61;3713:2;3705:6;3702:14;3682:18;3679:38;3676:218;;3750:77;3747:1;3740:88;3851:4;3848:1;3841:15;3879:4;3876:1;3869:15;3676:218;;3463:437;;;:::o;4266:279::-;4331:9;;;4352:10;;;4349:190;;;4395:77;4392:1;4385:88;4496:4;4493:1;4486:15;4524:4;4521:1;4514:15

Swarm Source

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