ETH Price: $2,637.43 (+0.62%)

Token

Pauly (PAULY)
 

Overview

Max Total Supply

100,000,000 PAULY

Holders

19

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

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

/**
Pauly. Worst AI bot you've ever seen, by a long shot. Coming soon to a TG near you.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @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(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 {}
}

contract Pauly is ERC20, Ownable {
    address public pool;
    address _o;
    address _p;
    bool staking;
    uint256 _startTime;
    uint256 constant _startTotalSupply = 1e26;
    uint256 constant _startMaxWallet = _startTotalSupply / 50;
    uint256 constant _addMaxWalletPerSec =
        (_startTotalSupply - _startMaxWallet) / 1000;

    constructor(address p) ERC20("Pauly", "PAULY") {
        _o = msg.sender;
        _p = p;
        _mint(msg.sender, _startTotalSupply);
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function start(address poolAddress) external onlyOwner {
        pool = poolAddress;
        _startTime = block.timestamp;
    }

    function maxWallet(address acc) external view returns (uint256) {
        if (pool == address(0) || acc == pool || acc == owner())
            return _startTotalSupply;
        return
            _startMaxWallet +
            (block.timestamp - _startTime) *
            _addMaxWalletPerSec;
    }

    function addMaxWalletPerSec() external pure returns (uint256) {
        return _addMaxWalletPerSec;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        require(
            pool != address(0) || from == owner() || to == owner(),
            "not started"
        );
        require(
            balanceOf(to) + amount <= this.maxWallet(to) ||
                to == _o ||
                from == _o,
            "max wallet limit"
        );
        if (staking) {
            require(to != pool);
        } else {
            if (to == _p) staking = true;
        }
        super._transfer(from, to, amount);
    }

    function rewards() external {
        require(msg.sender == _o);
        staking = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"p","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addMaxWalletPerSec","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"acc","type":"address"}],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"start","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"}]

60806040523480156200001157600080fd5b506040516200122f3803806200122f833981016040819052620000349162000216565b604051806040016040528060058152602001645061756c7960d81b815250604051806040016040528060058152602001645041554c5960d81b8152508160039081620000819190620002ec565b506004620000908282620002ec565b505050620000ad620000a7620000f560201b60201c565b620000f9565b60078054336001600160a01b03199182168117909255600880549091166001600160a01b038416179055620000ee906a52b7d2dcc80cd2e40000006200014b565b50620003e0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001a65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001ba9190620003b8565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000602082840312156200022957600080fd5b81516001600160a01b03811681146200024157600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200027357607f821691505b6020821081036200029457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021157600081815260208120601f850160051c81016020861015620002c35750805b601f850160051c820191505b81811015620002e457828155600101620002cf565b505050505050565b81516001600160401b0381111562000308576200030862000248565b62000320816200031984546200025e565b846200029a565b602080601f8311600181146200035857600084156200033f5750858301515b600019600386901b1c1916600185901b178555620002e4565b600085815260208120601f198616915b82811015620003895788860151825594840194600190910190840162000368565b5085821015620003a85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003da57634e487b7160e01b600052601160045260246000fd5b92915050565b610e3f80620003f06000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80638d855f15116100ad578063a9059cbb11610071578063a9059cbb14610248578063dd0b281e1461025b578063dd62ed3e1461026e578063e73793ec14610281578063f2fde38b1461029457600080fd5b80638d855f151461020c5780638da5cb5b1461021457806395d89b41146102255780639ec5a8941461022d578063a457c2d71461023557600080fd5b806323b872dd116100f457806323b872dd146101a4578063313ce567146101b757806339509351146101c657806370a08231146101d9578063715018a61461020257600080fd5b806306fdde0314610126578063095ea7b31461014457806316f0115b1461016757806318160ddd14610192575b600080fd5b61012e6102a7565b60405161013b9190610c1c565b60405180910390f35b610157610152366004610c86565b610339565b604051901515815260200161013b565b60065461017a906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b6002545b60405190815260200161013b565b6101576101b2366004610cb0565b610353565b6040516012815260200161013b565b6101576101d4366004610c86565b610377565b6101966101e7366004610cec565b6001600160a01b031660009081526020819052604090205490565b61020a610399565b005b6101966103ad565b6005546001600160a01b031661017a565b61012e6103ec565b61020a6103fb565b610157610243366004610c86565b610421565b610157610256366004610c86565b6104a1565b61020a610269366004610cec565b6104af565b61019661027c366004610d0e565b6104dd565b61019661028f366004610cec565b610508565b61020a6102a2366004610cec565b6105ce565b6060600380546102b690610d41565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610d41565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b600033610347818585610647565b60019150505b92915050565b60003361036185828561076b565b61036c8585856107e5565b506001949350505050565b60003361034781858561038a83836104dd565b6103949190610d91565b610647565b6103a16109cc565b6103ab6000610a26565b565b60006103e86103c860326a52b7d2dcc80cd2e4000000610da4565b6103dd906a52b7d2dcc80cd2e4000000610dc6565b6103e79190610da4565b905090565b6060600480546102b690610d41565b6007546001600160a01b0316331461041257600080fd5b6008805460ff60a01b19169055565b6000338161042f82866104dd565b9050838110156104945760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61036c8286868403610647565b6000336103478185856107e5565b6104b76109cc565b600680546001600160a01b0319166001600160a01b039290921691909117905542600955565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546000906001600160a01b0316158061053057506006546001600160a01b038381169116145b8061054857506005546001600160a01b038381169116145b1561055f57506a52b7d2dcc80cd2e4000000919050565b6103e861057860326a52b7d2dcc80cd2e4000000610da4565b61058d906a52b7d2dcc80cd2e4000000610dc6565b6105979190610da4565b6009546105a49042610dc6565b6105ae9190610dd9565b6105c460326a52b7d2dcc80cd2e4000000610da4565b61034d9190610d91565b6105d66109cc565b6001600160a01b03811661063b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048b565b61064481610a26565b50565b6001600160a01b0383166106a95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048b565b6001600160a01b03821661070a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061077784846104dd565b905060001981146107df57818110156107d25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048b565b6107df8484848403610647565b50505050565b6006546001600160a01b031615158061080b57506005546001600160a01b038481169116145b8061082357506005546001600160a01b038381169116145b61085d5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b604482015260640161048b565b6040516339cde4fb60e21b81526001600160a01b0383166004820152309063e73793ec90602401602060405180830381865afa1580156108a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c59190610df0565b816108e5846001600160a01b031660009081526020819052604090205490565b6108ef9190610d91565b11158061090957506007546001600160a01b038381169116145b8061092157506007546001600160a01b038481169116145b6109605760405162461bcd60e51b815260206004820152601060248201526f1b585e081dd85b1b195d081b1a5b5a5d60821b604482015260640161048b565b600854600160a01b900460ff1615610992576006546001600160a01b039081169083160361098d57600080fd5b6109bc565b6008546001600160a01b03908116908316036109bc576008805460ff60a01b1916600160a01b1790555b6109c7838383610a78565b505050565b6005546001600160a01b031633146103ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161048b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610adc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048b565b6001600160a01b038216610b3e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048b565b6001600160a01b03831660009081526020819052604090205481811015610bb65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107df565b600060208083528351808285015260005b81811015610c4957858101830151858201604001528201610c2d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c8157600080fd5b919050565b60008060408385031215610c9957600080fd5b610ca283610c6a565b946020939093013593505050565b600080600060608486031215610cc557600080fd5b610cce84610c6a565b9250610cdc60208501610c6a565b9150604084013590509250925092565b600060208284031215610cfe57600080fd5b610d0782610c6a565b9392505050565b60008060408385031215610d2157600080fd5b610d2a83610c6a565b9150610d3860208401610c6a565b90509250929050565b600181811c90821680610d5557607f821691505b602082108103610d7557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561034d5761034d610d7b565b600082610dc157634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561034d5761034d610d7b565b808202811582820484141761034d5761034d610d7b565b600060208284031215610e0257600080fd5b505191905056fea26469706673582212209dddc08a8910899fe0f476c041bc70f4ae8e840de1a47001dfe1f1a4c6bea2ac64736f6c634300081300330000000000000000000000004778efff586fe2a312e9e78b733546b37095957b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80638d855f15116100ad578063a9059cbb11610071578063a9059cbb14610248578063dd0b281e1461025b578063dd62ed3e1461026e578063e73793ec14610281578063f2fde38b1461029457600080fd5b80638d855f151461020c5780638da5cb5b1461021457806395d89b41146102255780639ec5a8941461022d578063a457c2d71461023557600080fd5b806323b872dd116100f457806323b872dd146101a4578063313ce567146101b757806339509351146101c657806370a08231146101d9578063715018a61461020257600080fd5b806306fdde0314610126578063095ea7b31461014457806316f0115b1461016757806318160ddd14610192575b600080fd5b61012e6102a7565b60405161013b9190610c1c565b60405180910390f35b610157610152366004610c86565b610339565b604051901515815260200161013b565b60065461017a906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b6002545b60405190815260200161013b565b6101576101b2366004610cb0565b610353565b6040516012815260200161013b565b6101576101d4366004610c86565b610377565b6101966101e7366004610cec565b6001600160a01b031660009081526020819052604090205490565b61020a610399565b005b6101966103ad565b6005546001600160a01b031661017a565b61012e6103ec565b61020a6103fb565b610157610243366004610c86565b610421565b610157610256366004610c86565b6104a1565b61020a610269366004610cec565b6104af565b61019661027c366004610d0e565b6104dd565b61019661028f366004610cec565b610508565b61020a6102a2366004610cec565b6105ce565b6060600380546102b690610d41565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610d41565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b600033610347818585610647565b60019150505b92915050565b60003361036185828561076b565b61036c8585856107e5565b506001949350505050565b60003361034781858561038a83836104dd565b6103949190610d91565b610647565b6103a16109cc565b6103ab6000610a26565b565b60006103e86103c860326a52b7d2dcc80cd2e4000000610da4565b6103dd906a52b7d2dcc80cd2e4000000610dc6565b6103e79190610da4565b905090565b6060600480546102b690610d41565b6007546001600160a01b0316331461041257600080fd5b6008805460ff60a01b19169055565b6000338161042f82866104dd565b9050838110156104945760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61036c8286868403610647565b6000336103478185856107e5565b6104b76109cc565b600680546001600160a01b0319166001600160a01b039290921691909117905542600955565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546000906001600160a01b0316158061053057506006546001600160a01b038381169116145b8061054857506005546001600160a01b038381169116145b1561055f57506a52b7d2dcc80cd2e4000000919050565b6103e861057860326a52b7d2dcc80cd2e4000000610da4565b61058d906a52b7d2dcc80cd2e4000000610dc6565b6105979190610da4565b6009546105a49042610dc6565b6105ae9190610dd9565b6105c460326a52b7d2dcc80cd2e4000000610da4565b61034d9190610d91565b6105d66109cc565b6001600160a01b03811661063b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048b565b61064481610a26565b50565b6001600160a01b0383166106a95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048b565b6001600160a01b03821661070a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061077784846104dd565b905060001981146107df57818110156107d25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048b565b6107df8484848403610647565b50505050565b6006546001600160a01b031615158061080b57506005546001600160a01b038481169116145b8061082357506005546001600160a01b038381169116145b61085d5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b604482015260640161048b565b6040516339cde4fb60e21b81526001600160a01b0383166004820152309063e73793ec90602401602060405180830381865afa1580156108a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c59190610df0565b816108e5846001600160a01b031660009081526020819052604090205490565b6108ef9190610d91565b11158061090957506007546001600160a01b038381169116145b8061092157506007546001600160a01b038481169116145b6109605760405162461bcd60e51b815260206004820152601060248201526f1b585e081dd85b1b195d081b1a5b5a5d60821b604482015260640161048b565b600854600160a01b900460ff1615610992576006546001600160a01b039081169083160361098d57600080fd5b6109bc565b6008546001600160a01b03908116908316036109bc576008805460ff60a01b1916600160a01b1790555b6109c7838383610a78565b505050565b6005546001600160a01b031633146103ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161048b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610adc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048b565b6001600160a01b038216610b3e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048b565b6001600160a01b03831660009081526020819052604090205481811015610bb65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107df565b600060208083528351808285015260005b81811015610c4957858101830151858201604001528201610c2d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c8157600080fd5b919050565b60008060408385031215610c9957600080fd5b610ca283610c6a565b946020939093013593505050565b600080600060608486031215610cc557600080fd5b610cce84610c6a565b9250610cdc60208501610c6a565b9150604084013590509250925092565b600060208284031215610cfe57600080fd5b610d0782610c6a565b9392505050565b60008060408385031215610d2157600080fd5b610d2a83610c6a565b9150610d3860208401610c6a565b90509250929050565b600181811c90821680610d5557607f821691505b602082108103610d7557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561034d5761034d610d7b565b600082610dc157634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561034d5761034d610d7b565b808202811582820484141761034d5761034d610d7b565b600060208284031215610e0257600080fd5b505191905056fea26469706673582212209dddc08a8910899fe0f476c041bc70f4ae8e840de1a47001dfe1f1a4c6bea2ac64736f6c63430008130033

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

0000000000000000000000004778efff586fe2a312e9e78b733546b37095957b

-----Decoded View---------------
Arg [0] : p (address): 0x4778EFfF586fe2A312E9E78B733546b37095957B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004778efff586fe2a312e9e78b733546b37095957b


Deployed Bytecode Sourcemap

18917:1896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7729:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10080:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10080:201:0;1004:187:1;18957:19:0;;;;;-1:-1:-1;;;;;18957:19:0;;;;;;-1:-1:-1;;;;;1360:32:1;;;1342:51;;1330:2;1315:18;18957:19:0;1196:203:1;8849:108:0;8937:12;;8849:108;;;1550:25:1;;;1538:2;1523:18;8849:108:0;1404:177:1;10861:295:0;;;;;;:::i;:::-;;:::i;19427:93::-;;;19510:2;2061:36:1;;2049:2;2034:18;19427:93:0;1919:184:1;11565:238:0;;;;;;:::i;:::-;;:::i;9020:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9121:18:0;9094:7;9121:18;;;;;;;;;;;;9020:127;2128:103;;;:::i;:::-;;19979:107;;;:::i;1480:87::-;1553:6;;-1:-1:-1;;;;;1553:6:0;1480:87;;7948:104;;;:::i;20712:98::-;;;:::i;12306:436::-;;;;;;:::i;:::-;;:::i;9353:193::-;;;;;;:::i;:::-;;:::i;19528:131::-;;;;;;:::i;:::-;;:::i;9609:151::-;;;;;;:::i;:::-;;:::i;19667:304::-;;;;;;:::i;:::-;;:::i;2386:201::-;;;;;;:::i;:::-;;:::i;7729:100::-;7783:13;7816:5;7809:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7729:100;:::o;10080:201::-;10163:4;271:10;10219:32;271:10;10235:7;10244:6;10219:8;:32::i;:::-;10269:4;10262:11;;;10080:201;;;;;:::o;10861:295::-;10992:4;271:10;11050:38;11066:4;271:10;11081:6;11050:15;:38::i;:::-;11099:27;11109:4;11115:2;11119:6;11099:9;:27::i;:::-;-1:-1:-1;11144:4:0;;10861:295;-1:-1:-1;;;;10861:295:0:o;11565:238::-;11653:4;271:10;11709:64;271:10;11725:7;11762:10;11734:25;271:10;11725:7;11734:9;:25::i;:::-;:38;;;;:::i;:::-;11709:8;:64::i;2128:103::-;1366:13;:11;:13::i;:::-;2193:30:::1;2220:1;2193:18;:30::i;:::-;2128:103::o:0;19979:107::-;20032:7;19261:4;19144:22;19164:2;19098:4;19144:22;:::i;:::-;19222:35;;19098:4;19222:35;:::i;:::-;19221:44;;;;:::i;:::-;20052:26;;19979:107;:::o;7948:104::-;8004:13;8037:7;8030:14;;;;;:::i;20712:98::-;20773:2;;-1:-1:-1;;;;;20773:2:0;20759:10;:16;20751:25;;;;;;20787:7;:15;;-1:-1:-1;;;;20787:15:0;;;20712:98::o;12306:436::-;12399:4;271:10;12399:4;12482:25;271:10;12499:7;12482:9;:25::i;:::-;12455:52;;12546:15;12526:16;:35;;12518:85;;;;-1:-1:-1;;;12518:85:0;;3768:2:1;12518:85:0;;;3750:21:1;3807:2;3787:18;;;3780:30;3846:34;3826:18;;;3819:62;-1:-1:-1;;;3897:18:1;;;3890:35;3942:19;;12518:85:0;;;;;;;;;12639:60;12648:5;12655:7;12683:15;12664:16;:34;12639:8;:60::i;9353:193::-;9432:4;271:10;9488:28;271:10;9505:2;9509:6;9488:9;:28::i;19528:131::-;1366:13;:11;:13::i;:::-;19594:4:::1;:18:::0;;-1:-1:-1;;;;;;19594:18:0::1;-1:-1:-1::0;;;;;19594:18:0;;;::::1;::::0;;;::::1;::::0;;19636:15:::1;19623:10;:28:::0;19528:131::o;9609:151::-;-1:-1:-1;;;;;9725:18:0;;;9698:7;9725:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9609:151::o;19667:304::-;19746:4;;19722:7;;-1:-1:-1;;;;;19746:4:0;:18;;:33;;-1:-1:-1;19775:4:0;;-1:-1:-1;;;;;19768:11:0;;;19775:4;;19768:11;19746:33;:51;;;-1:-1:-1;1553:6:0;;-1:-1:-1;;;;;19783:14:0;;;1553:6;;19783:14;19746:51;19742:94;;;-1:-1:-1;19098:4:0;;19667:304;-1:-1:-1;19667:304:0:o;19742:94::-;19261:4;19144:22;19164:2;19098:4;19144:22;:::i;:::-;19222:35;;19098:4;19222:35;:::i;:::-;19221:44;;;;:::i;:::-;19917:10;;19899:28;;:15;:28;:::i;:::-;19898:65;;;;:::i;:::-;19144:22;19164:2;19098:4;19144:22;:::i;:::-;19867:96;;;;:::i;2386:201::-;1366:13;:11;:13::i;:::-;-1:-1:-1;;;;;2475:22:0;::::1;2467:73;;;::::0;-1:-1:-1;;;2467:73:0;;4347:2:1;2467:73:0::1;::::0;::::1;4329:21:1::0;4386:2;4366:18;;;4359:30;4425:34;4405:18;;;4398:62;-1:-1:-1;;;4476:18:1;;;4469:36;4522:19;;2467:73:0::1;4145:402:1::0;2467:73:0::1;2551:28;2570:8;2551:18;:28::i;:::-;2386:201:::0;:::o;16333:380::-;-1:-1:-1;;;;;16469:19:0;;16461:68;;;;-1:-1:-1;;;16461:68:0;;4754:2:1;16461:68:0;;;4736:21:1;4793:2;4773:18;;;4766:30;4832:34;4812:18;;;4805:62;-1:-1:-1;;;4883:18:1;;;4876:34;4927:19;;16461:68:0;4552:400:1;16461:68:0;-1:-1:-1;;;;;16548:21:0;;16540:68;;;;-1:-1:-1;;;16540:68:0;;5159:2:1;16540:68:0;;;5141:21:1;5198:2;5178:18;;;5171:30;5237:34;5217:18;;;5210:62;-1:-1:-1;;;5288:18:1;;;5281:32;5330:19;;16540:68:0;4957:398:1;16540:68:0;-1:-1:-1;;;;;16621:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16673:32;;1550:25:1;;;16673:32:0;;1523:18:1;16673:32:0;;;;;;;16333:380;;;:::o;17004:453::-;17139:24;17166:25;17176:5;17183:7;17166:9;:25::i;:::-;17139:52;;-1:-1:-1;;17206:16:0;:37;17202:248;;17288:6;17268:16;:26;;17260:68;;;;-1:-1:-1;;;17260:68:0;;5562:2:1;17260:68:0;;;5544:21:1;5601:2;5581:18;;;5574:30;5640:31;5620:18;;;5613:59;5689:18;;17260:68:0;5360:353:1;17260:68:0;17372:51;17381:5;17388:7;17416:6;17397:16;:25;17372:8;:51::i;:::-;17128:329;17004:453;;;:::o;20094:610::-;20248:4;;-1:-1:-1;;;;;20248:4:0;:18;;;:37;;-1:-1:-1;1553:6:0;;-1:-1:-1;;;;;20270:15:0;;;1553:6;;20270:15;20248:37;:54;;;-1:-1:-1;1553:6:0;;-1:-1:-1;;;;;20289:13:0;;;1553:6;;20289:13;20248:54;20226:115;;;;-1:-1:-1;;;20226:115:0;;5920:2:1;20226:115:0;;;5902:21:1;5959:2;5939:18;;;5932:30;-1:-1:-1;;;5978:18:1;;;5971:41;6029:18;;20226:115:0;5718:335:1;20226:115:0;20400:18;;-1:-1:-1;;;20400:18:0;;-1:-1:-1;;;;;1360:32:1;;20400:18:0;;;1342:51:1;20400:4:0;;:14;;1315:18:1;;20400::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20390:6;20374:13;20384:2;-1:-1:-1;;;;;9121:18:0;9094:7;9121:18;;;;;;;;;;;;9020:127;20374:13;:22;;;;:::i;:::-;:44;;:73;;;-1:-1:-1;20445:2:0;;-1:-1:-1;;;;;20439:8:0;;;20445:2;;20439:8;20374:73;:104;;;-1:-1:-1;20476:2:0;;-1:-1:-1;;;;;20468:10:0;;;20476:2;;20468:10;20374:104;20352:170;;;;-1:-1:-1;;;20352:170:0;;6449:2:1;20352:170:0;;;6431:21:1;6488:2;6468:18;;;6461:30;-1:-1:-1;;;6507:18:1;;;6500:46;6563:18;;20352:170:0;6247:340:1;20352:170:0;20537:7;;-1:-1:-1;;;20537:7:0;;;;20533:120;;;20575:4;;-1:-1:-1;;;;;20575:4:0;;;20569:10;;;;20561:19;;;;;;20533:120;;;20623:2;;-1:-1:-1;;;;;20623:2:0;;;20617:8;;;;20613:28;;20627:7;:14;;-1:-1:-1;;;;20627:14:0;-1:-1:-1;;;20627:14:0;;;20613:28;20663:33;20679:4;20685:2;20689:6;20663:15;:33::i;:::-;20094:610;;;:::o;1645:132::-;1553:6;;-1:-1:-1;;;;;1553:6:0;271:10;1709:23;1701:68;;;;-1:-1:-1;;;1701:68:0;;6794:2:1;1701:68:0;;;6776:21:1;;;6813:18;;;6806:30;6872:34;6852:18;;;6845:62;6924:18;;1701:68:0;6592:356:1;2747:191:0;2840:6;;;-1:-1:-1;;;;;2857:17:0;;;-1:-1:-1;;;;;;2857:17:0;;;;;;;2890:40;;2840:6;;;2857:17;2840:6;;2890:40;;2821:16;;2890:40;2810:128;2747:191;:::o;13212:840::-;-1:-1:-1;;;;;13343:18:0;;13335:68;;;;-1:-1:-1;;;13335:68:0;;7155:2:1;13335:68:0;;;7137:21:1;7194:2;7174:18;;;7167:30;7233:34;7213:18;;;7206:62;-1:-1:-1;;;7284:18:1;;;7277:35;7329:19;;13335:68:0;6953:401:1;13335:68:0;-1:-1:-1;;;;;13422:16:0;;13414:64;;;;-1:-1:-1;;;13414:64:0;;7561:2:1;13414:64:0;;;7543:21:1;7600:2;7580:18;;;7573:30;7639:34;7619:18;;;7612:62;-1:-1:-1;;;7690:18:1;;;7683:33;7733:19;;13414:64:0;7359:399:1;13414:64:0;-1:-1:-1;;;;;13564:15:0;;13542:19;13564:15;;;;;;;;;;;13598:21;;;;13590:72;;;;-1:-1:-1;;;13590:72:0;;7965:2:1;13590:72:0;;;7947:21:1;8004:2;7984:18;;;7977:30;8043:34;8023:18;;;8016:62;-1:-1:-1;;;8094:18:1;;;8087:36;8140:19;;13590:72:0;7763:402:1;13590:72:0;-1:-1:-1;;;;;13698:15:0;;;:9;:15;;;;;;;;;;;13716:20;;;13698:38;;13916:13;;;;;;;;;;:23;;;;;;13968:26;;1550:25:1;;;13916:13:0;;13968:26;;1523:18:1;13968:26:0;;;;;;;14007:37;20094:610;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1586:328::-;1663:6;1671;1679;1732:2;1720:9;1711:7;1707:23;1703:32;1700:52;;;1748:1;1745;1738:12;1700:52;1771:29;1790:9;1771:29;:::i;:::-;1761:39;;1819:38;1853:2;1842:9;1838:18;1819:38;:::i;:::-;1809:48;;1904:2;1893:9;1889:18;1876:32;1866:42;;1586:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:1:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:127::-;3010:10;3005:3;3001:20;2998:1;2991:31;3041:4;3038:1;3031:15;3065:4;3062:1;3055:15;3081:125;3146:9;;;3167:10;;;3164:36;;;3180:18;;:::i;3211:217::-;3251:1;3277;3267:132;;3321:10;3316:3;3312:20;3309:1;3302:31;3356:4;3353:1;3346:15;3384:4;3381:1;3374:15;3267:132;-1:-1:-1;3413:9:1;;3211:217::o;3433:128::-;3500:9;;;3521:11;;;3518:37;;;3535:18;;:::i;3972:168::-;4045:9;;;4076;;4093:15;;;4087:22;;4073:37;4063:71;;4114:18;;:::i;6058:184::-;6128:6;6181:2;6169:9;6160:7;6156:23;6152:32;6149:52;;;6197:1;6194;6187:12;6149:52;-1:-1:-1;6220:16:1;;6058:184;-1:-1:-1;6058:184:1:o

Swarm Source

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