ETH Price: $3,376.19 (-1.90%)

Token

PepeGirl (PEGI)
 

Overview

Max Total Supply

420,690,000,000,000 PEGI

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,687,458,813,128.943495573480056244 PEGI

Value
$0.00
0x7f62da9e64dcb3392516f14cdb8ac6426ffb1df1
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:
PEPEGIRL

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-21
*/

/*
$PEGI The ultimate memecoin for those who love to laugh and hodl Inspired by the iconic Pepe, our coin brings humor to the world of crypto.
https://t.me/pegieth
https://twitter.com/pegieth
https://pegi.vip
*/

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 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 {}
}


// File contracts/PEGI.sol



pragma solidity ^0.8.0;


contract PEPEGIRL is Ownable, ERC20 {
    uint256 _totalSupply = 420690000000000 * 10 ** decimals();
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    constructor() ERC20("PepeGirl", "PEGI") {
        _mint(msg.sender, _totalSupply);
    }

 

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }
    function OpenTrading(address _uniswapV2Pair) external onlyOwner{
        limited = true;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _totalSupply * 3/100;
        minHoldingAmount = 0;
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

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":"_uniswapV2Pair","type":"address"}],"name":"OpenTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052620000126012600a62000487565b620000259066017e9d8602b4006200049f565b6006553480156200003557600080fd5b506040518060400160405280600881526020016714195c1951da5c9b60c21b815250604051806040016040528060048152602001635045474960e01b8152506200008e62000088620000c860201b60201c565b620000cc565b60046200009c83826200055d565b506005620000ab82826200055d565b505050620000c2336006546200011c60201b60201c565b6200063f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001866000838362000213565b80600360008282546200019a919062000629565b90915550506001600160a01b03821660009081526001602052604081208054839290620001c990849062000629565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600a546001600160a01b0316620002a1576000546001600160a01b03848116911614806200024e57506000546001600160a01b038381169116145b6200029c5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016200016f565b505050565b60075460ff168015620002c15750600a546001600160a01b038481169116145b156200029c5760085481620002e1846200035760201b620004f51760201c565b620002ed919062000629565b111580156200032057506009548162000311846200035760201b620004f51760201c565b6200031d919062000629565b10155b6200029c5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016200016f565b6001600160a01b031660009081526001602052604090205490565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003c9578160001904821115620003ad57620003ad62000372565b80851615620003bb57918102915b93841c93908002906200038d565b509250929050565b600082620003e25750600162000481565b81620003f15750600062000481565b81600181146200040a5760028114620004155762000435565b600191505062000481565b60ff84111562000429576200042962000372565b50506001821b62000481565b5060208310610133831016604e8410600b84101617156200045a575081810a62000481565b62000466838362000388565b80600019048211156200047d576200047d62000372565b0290505b92915050565b60006200049860ff841683620003d1565b9392505050565b808202811582820484141762000481576200048162000372565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004e457607f821691505b6020821081036200050557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029c57600081815260208120601f850160051c81016020861015620005345750805b601f850160051c820191505b81811015620005555782815560010162000540565b505050505050565b81516001600160401b03811115620005795762000579620004b9565b62000591816200058a8454620004cf565b846200050b565b602080601f831160018114620005c95760008415620005b05750858301515b600019600386901b1c1916600185901b17855562000555565b600085815260208120601f198616915b82811015620005fa57888601518255948401946001909101908401620005d9565b5085821015620006195787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000481576200048162000372565b610f65806200064f6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610262578063a457c2d71461026a578063a9059cbb1461027d578063dd62ed3e14610290578063ed7d6276146102c9578063f2fde38b146102dc57600080fd5b806370a0823114610220578063715018a614610233578063860a32ec1461023b57806389f9a1d3146102485780638da5cb5b1461025157600080fd5b8063313ce567116100ff578063313ce567146101ab57806339509351146101ba5780633aa633aa146101cd57806342966c68146101e257806349bd5a5e146101f557600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d5780631ab99e121461018f57806323b872dd14610198575b600080fd5b6101446102ef565b6040516101519190610cc4565b60405180910390f35b61016d610168366004610d2e565b610381565b6040519015158152602001610151565b6003545b604051908152602001610151565b61018160095481565b61016d6101a6366004610d58565b610398565b60405160128152602001610151565b61016d6101c8366004610d2e565b610447565b6101e06101db366004610d94565b610483565b005b6101e06101f0366004610ddd565b6104e8565b600a54610208906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b61018161022e366004610df6565b6104f5565b6101e0610510565b60075461016d9060ff1681565b61018160085481565b6000546001600160a01b0316610208565b610144610546565b61016d610278366004610d2e565b610555565b61016d61028b366004610d2e565b6105ee565b61018161029e366004610e18565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e06102d7366004610df6565b6105fb565b6101e06102ea366004610df6565b610675565b6060600480546102fe90610e4b565b80601f016020809104026020016040519081016040528092919081815260200182805461032a90610e4b565b80156103775780601f1061034c57610100808354040283529160200191610377565b820191906000526020600020905b81548152906001019060200180831161035a57829003601f168201915b5050505050905090565b600061038e33848461070d565b5060015b92915050565b60006103a5848484610832565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61043c853385840361070d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161038e91859061047e908690610e9b565b61070d565b6000546001600160a01b031633146104ad5760405162461bcd60e51b815260040161042690610eae565b6007805460ff191694151594909417909355600a80546001600160a01b0319166001600160a01b039390931692909217909155600855600955565b6104f23382610a0c565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461053a5760405162461bcd60e51b815260040161042690610eae565b6105446000610b63565b565b6060600580546102fe90610e4b565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610426565b6105e4338585840361070d565b5060019392505050565b600061038e338484610832565b6000546001600160a01b031633146106255760405162461bcd60e51b815260040161042690610eae565b6007805460ff19166001179055600a80546001600160a01b0383166001600160a01b0319909116179055600654606490610660906003610ee3565b61066a9190610efa565b600855506000600955565b6000546001600160a01b0316331461069f5760405162461bcd60e51b815260040161042690610eae565b6001600160a01b0381166107045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610426565b6104f281610b63565b6001600160a01b03831661076f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610426565b6001600160a01b0382166107d05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610426565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108965760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610426565b6001600160a01b0382166108f85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610426565b610903838383610bb3565b6001600160a01b0383166000908152600160205260409020548181101561097b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610426565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109b2908490610e9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109fe91815260200190565b60405180910390a350505050565b6001600160a01b038216610a6c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610426565b610a7882600083610bb3565b6001600160a01b03821660009081526001602052604090205481811015610aec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610426565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b1b908490610f1c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610825565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a546001600160a01b0316610c31576000546001600160a01b0384811691161480610bec57506000546001600160a01b038381169116145b610b5e5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610426565b60075460ff168015610c505750600a546001600160a01b038481169116145b15610b5e5760085481610c62846104f5565b610c6c9190610e9b565b11158015610c8f575060095481610c82846104f5565b610c8c9190610e9b565b10155b610b5e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610426565b600060208083528351808285015260005b81811015610cf157858101830151858201604001528201610cd5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d2957600080fd5b919050565b60008060408385031215610d4157600080fd5b610d4a83610d12565b946020939093013593505050565b600080600060608486031215610d6d57600080fd5b610d7684610d12565b9250610d8460208501610d12565b9150604084013590509250925092565b60008060008060808587031215610daa57600080fd5b84358015158114610dba57600080fd5b9350610dc860208601610d12565b93969395505050506040820135916060013590565b600060208284031215610def57600080fd5b5035919050565b600060208284031215610e0857600080fd5b610e1182610d12565b9392505050565b60008060408385031215610e2b57600080fd5b610e3483610d12565b9150610e4260208401610d12565b90509250929050565b600181811c90821680610e5f57607f821691505b602082108103610e7f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561039257610392610e85565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761039257610392610e85565b600082610f1757634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561039257610392610e8556fea26469706673582212204a9489a9357f4b83f8c0bb1b6965d5151b327d5d4e7df97e3501f6f5aadad36e64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610262578063a457c2d71461026a578063a9059cbb1461027d578063dd62ed3e14610290578063ed7d6276146102c9578063f2fde38b146102dc57600080fd5b806370a0823114610220578063715018a614610233578063860a32ec1461023b57806389f9a1d3146102485780638da5cb5b1461025157600080fd5b8063313ce567116100ff578063313ce567146101ab57806339509351146101ba5780633aa633aa146101cd57806342966c68146101e257806349bd5a5e146101f557600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d5780631ab99e121461018f57806323b872dd14610198575b600080fd5b6101446102ef565b6040516101519190610cc4565b60405180910390f35b61016d610168366004610d2e565b610381565b6040519015158152602001610151565b6003545b604051908152602001610151565b61018160095481565b61016d6101a6366004610d58565b610398565b60405160128152602001610151565b61016d6101c8366004610d2e565b610447565b6101e06101db366004610d94565b610483565b005b6101e06101f0366004610ddd565b6104e8565b600a54610208906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b61018161022e366004610df6565b6104f5565b6101e0610510565b60075461016d9060ff1681565b61018160085481565b6000546001600160a01b0316610208565b610144610546565b61016d610278366004610d2e565b610555565b61016d61028b366004610d2e565b6105ee565b61018161029e366004610e18565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e06102d7366004610df6565b6105fb565b6101e06102ea366004610df6565b610675565b6060600480546102fe90610e4b565b80601f016020809104026020016040519081016040528092919081815260200182805461032a90610e4b565b80156103775780601f1061034c57610100808354040283529160200191610377565b820191906000526020600020905b81548152906001019060200180831161035a57829003601f168201915b5050505050905090565b600061038e33848461070d565b5060015b92915050565b60006103a5848484610832565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61043c853385840361070d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161038e91859061047e908690610e9b565b61070d565b6000546001600160a01b031633146104ad5760405162461bcd60e51b815260040161042690610eae565b6007805460ff191694151594909417909355600a80546001600160a01b0319166001600160a01b039390931692909217909155600855600955565b6104f23382610a0c565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461053a5760405162461bcd60e51b815260040161042690610eae565b6105446000610b63565b565b6060600580546102fe90610e4b565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610426565b6105e4338585840361070d565b5060019392505050565b600061038e338484610832565b6000546001600160a01b031633146106255760405162461bcd60e51b815260040161042690610eae565b6007805460ff19166001179055600a80546001600160a01b0383166001600160a01b0319909116179055600654606490610660906003610ee3565b61066a9190610efa565b600855506000600955565b6000546001600160a01b0316331461069f5760405162461bcd60e51b815260040161042690610eae565b6001600160a01b0381166107045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610426565b6104f281610b63565b6001600160a01b03831661076f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610426565b6001600160a01b0382166107d05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610426565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108965760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610426565b6001600160a01b0382166108f85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610426565b610903838383610bb3565b6001600160a01b0383166000908152600160205260409020548181101561097b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610426565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109b2908490610e9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109fe91815260200190565b60405180910390a350505050565b6001600160a01b038216610a6c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610426565b610a7882600083610bb3565b6001600160a01b03821660009081526001602052604090205481811015610aec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610426565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b1b908490610f1c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610825565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a546001600160a01b0316610c31576000546001600160a01b0384811691161480610bec57506000546001600160a01b038381169116145b610b5e5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610426565b60075460ff168015610c505750600a546001600160a01b038481169116145b15610b5e5760085481610c62846104f5565b610c6c9190610e9b565b11158015610c8f575060095481610c82846104f5565b610c8c9190610e9b565b10155b610b5e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610426565b600060208083528351808285015260005b81811015610cf157858101830151858201604001528201610cd5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d2957600080fd5b919050565b60008060408385031215610d4157600080fd5b610d4a83610d12565b946020939093013593505050565b600080600060608486031215610d6d57600080fd5b610d7684610d12565b9250610d8460208501610d12565b9150604084013590509250925092565b60008060008060808587031215610daa57600080fd5b84358015158114610dba57600080fd5b9350610dc860208601610d12565b93969395505050506040820135916060013590565b600060208284031215610def57600080fd5b5035919050565b600060208284031215610e0857600080fd5b610e1182610d12565b9392505050565b60008060408385031215610e2b57600080fd5b610e3483610d12565b9150610e4260208401610d12565b90509250929050565b600181811c90821680610e5f57607f821691505b602082108103610e7f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561039257610392610e85565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761039257610392610e85565b600082610f1757634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561039257610392610e8556fea26469706673582212204a9489a9357f4b83f8c0bb1b6965d5151b327d5d4e7df97e3501f6f5aadad36e64736f6c63430008120033

Deployed Bytecode Sourcemap

19494:1468:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9468:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11635:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11635:169:0;1004:187:1;10588:108:0;10676:12;;10588:108;;;1342:25:1;;;1330:2;1315:18;10588:108:0;1196:177:1;19665:31:0;;;;;;12286:492;;;;;;:::i;:::-;;:::i;10430:93::-;;;10513:2;1853:36:1;;1841:2;1826:18;10430:93:0;1711:184:1;13187:215:0;;;;;;:::i;:::-;;:::i;19843:301::-;;;;;;:::i;:::-;;:::i;:::-;;20878:81;;;;;;:::i;:::-;;:::i;19703:28::-;;;;;-1:-1:-1;;;;;19703:28:0;;;;;;-1:-1:-1;;;;;2738:32:1;;;2720:51;;2708:2;2693:18;19703:28:0;2574:203:1;10759:127:0;;;;;;:::i;:::-;;:::i;2869:103::-;;;:::i;19601:19::-;;;;;;;;;19627:31;;;;;;2218:87;2264:7;2291:6;-1:-1:-1;;;;;2291:6:0;2218:87;;9687:104;;;:::i;13905:413::-;;;;;;:::i;:::-;;:::i;11099:175::-;;;;;;:::i;:::-;;:::i;11337:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11453:18:0;;;11426:7;11453:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11337:151;20150:218;;;;;;:::i;:::-;;:::i;3127:201::-;;;;;;:::i;:::-;;:::i;9468:100::-;9522:13;9555:5;9548:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9468:100;:::o;11635:169::-;11718:4;11735:39;1016:10;11758:7;11767:6;11735:8;:39::i;:::-;-1:-1:-1;11792:4:0;11635:169;;;;;:::o;12286:492::-;12426:4;12443:36;12453:6;12461:9;12472:6;12443:9;:36::i;:::-;-1:-1:-1;;;;;12519:19:0;;12492:24;12519:19;;;:11;:19;;;;;;;;1016:10;12519:33;;;;;;;;12571:26;;;;12563:79;;;;-1:-1:-1;;;12563:79:0;;3825:2:1;12563:79:0;;;3807:21:1;3864:2;3844:18;;;3837:30;3903:34;3883:18;;;3876:62;-1:-1:-1;;;3954:18:1;;;3947:38;4002:19;;12563:79:0;;;;;;;;;12678:57;12687:6;1016:10;12728:6;12709:16;:25;12678:8;:57::i;:::-;-1:-1:-1;12766:4:0;;12286:492;-1:-1:-1;;;;12286:492:0:o;13187:215::-;1016:10;13275:4;13324:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13324:34:0;;;;;;;;;;13275:4;;13292:80;;13315:7;;13324:47;;13361:10;;13324:47;:::i;:::-;13292:8;:80::i;19843:301::-;2264:7;2291:6;-1:-1:-1;;;;;2291:6:0;1016:10;2438:23;2430:68;;;;-1:-1:-1;;;2430:68:0;;;;;;;:::i;:::-;19983:7:::1;:18:::0;;-1:-1:-1;;19983:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;20012:13:::1;:30:::0;;-1:-1:-1;;;;;;20012:30:0::1;-1:-1:-1::0;;;;;20012:30:0;;;::::1;::::0;;;::::1;::::0;;;20053:16:::1;:36:::0;20100:16:::1;:36:::0;19843:301::o;20878:81::-;20927:24;20933:10;20945:5;20927;:24::i;:::-;20878:81;:::o;10759:127::-;-1:-1:-1;;;;;10860:18:0;10833:7;10860:18;;;:9;:18;;;;;;;10759:127::o;2869:103::-;2264:7;2291:6;-1:-1:-1;;;;;2291:6:0;1016:10;2438:23;2430:68;;;;-1:-1:-1;;;2430:68:0;;;;;;;:::i;:::-;2934:30:::1;2961:1;2934:18;:30::i;:::-;2869:103::o:0;9687:104::-;9743:13;9776:7;9769:14;;;;;:::i;13905:413::-;1016:10;13998:4;14042:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14042:34:0;;;;;;;;;;14095:35;;;;14087:85;;;;-1:-1:-1;;;14087:85:0;;4857:2:1;14087:85:0;;;4839:21:1;4896:2;4876:18;;;4869:30;4935:34;4915:18;;;4908:62;-1:-1:-1;;;4986:18:1;;;4979:35;5031:19;;14087:85:0;4655:401:1;14087:85:0;14208:67;1016:10;14231:7;14259:15;14240:16;:34;14208:8;:67::i;:::-;-1:-1:-1;14306:4:0;;13905:413;-1:-1:-1;;;13905:413:0:o;11099:175::-;11185:4;11202:42;1016:10;11226:9;11237:6;11202:9;:42::i;20150:218::-;2264:7;2291:6;-1:-1:-1;;;;;2291:6:0;1016:10;2438:23;2430:68;;;;-1:-1:-1;;;2430:68:0;;;;;;;:::i;:::-;20224:7:::1;:14:::0;;-1:-1:-1;;20224:14:0::1;20234:4;20224:14;::::0;;20249:13:::1;:30:::0;;-1:-1:-1;;;;;20249:30:0;::::1;-1:-1:-1::0;;;;;;20249:30:0;;::::1;;::::0;;20309:12:::1;::::0;20326:3:::1;::::0;20309:16:::1;::::0;20324:1:::1;20309:16;:::i;:::-;:20;;;;:::i;:::-;20290:16;:39:::0;-1:-1:-1;20359:1:0::1;20340:16;:20:::0;20150:218::o;3127:201::-;2264:7;2291:6;-1:-1:-1;;;;;2291:6:0;1016:10;2438:23;2430:68;;;;-1:-1:-1;;;2430:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3216:22:0;::::1;3208:73;;;::::0;-1:-1:-1;;;3208:73:0;;5658:2:1;3208:73:0::1;::::0;::::1;5640:21:1::0;5697:2;5677:18;;;5670:30;5736:34;5716:18;;;5709:62;-1:-1:-1;;;5787:18:1;;;5780:36;5833:19;;3208:73:0::1;5456:402:1::0;3208:73:0::1;3292:28;3311:8;3292:18;:28::i;17589:380::-:0;-1:-1:-1;;;;;17725:19:0;;17717:68;;;;-1:-1:-1;;;17717:68:0;;6065:2:1;17717:68:0;;;6047:21:1;6104:2;6084:18;;;6077:30;6143:34;6123:18;;;6116:62;-1:-1:-1;;;6194:18:1;;;6187:34;6238:19;;17717:68:0;5863:400:1;17717:68:0;-1:-1:-1;;;;;17804:21:0;;17796:68;;;;-1:-1:-1;;;17796:68:0;;6470:2:1;17796:68:0;;;6452:21:1;6509:2;6489:18;;;6482:30;6548:34;6528:18;;;6521:62;-1:-1:-1;;;6599:18:1;;;6592:32;6641:19;;17796:68:0;6268:398:1;17796:68:0;-1:-1:-1;;;;;17877:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17929:32;;1342:25:1;;;17929:32:0;;1315:18:1;17929:32:0;;;;;;;;17589:380;;;:::o;14808:733::-;-1:-1:-1;;;;;14948:20:0;;14940:70;;;;-1:-1:-1;;;14940:70:0;;6873:2:1;14940:70:0;;;6855:21:1;6912:2;6892:18;;;6885:30;6951:34;6931:18;;;6924:62;-1:-1:-1;;;7002:18:1;;;6995:35;7047:19;;14940:70:0;6671:401:1;14940:70:0;-1:-1:-1;;;;;15029:23:0;;15021:71;;;;-1:-1:-1;;;15021:71:0;;7279:2:1;15021:71:0;;;7261:21:1;7318:2;7298:18;;;7291:30;7357:34;7337:18;;;7330:62;-1:-1:-1;;;7408:18:1;;;7401:33;7451:19;;15021:71:0;7077:399:1;15021:71:0;15105:47;15126:6;15134:9;15145:6;15105:20;:47::i;:::-;-1:-1:-1;;;;;15189:17:0;;15165:21;15189:17;;;:9;:17;;;;;;15225:23;;;;15217:74;;;;-1:-1:-1;;;15217:74:0;;7683:2:1;15217:74:0;;;7665:21:1;7722:2;7702:18;;;7695:30;7761:34;7741:18;;;7734:62;-1:-1:-1;;;7812:18:1;;;7805:36;7858:19;;15217:74:0;7481:402:1;15217:74:0;-1:-1:-1;;;;;15327:17:0;;;;;;;:9;:17;;;;;;15347:22;;;15327:42;;15391:20;;;;;;;;:30;;15363:6;;15327:17;15391:30;;15363:6;;15391:30;:::i;:::-;;;;;;;;15456:9;-1:-1:-1;;;;;15439:35:0;15448:6;-1:-1:-1;;;;;15439:35:0;;15467:6;15439:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;15439:35:0;;;;;;;;14929:612;14808:733;;;:::o;16560:591::-;-1:-1:-1;;;;;16644:21:0;;16636:67;;;;-1:-1:-1;;;16636:67:0;;8090:2:1;16636:67:0;;;8072:21:1;8129:2;8109:18;;;8102:30;8168:34;8148:18;;;8141:62;-1:-1:-1;;;8219:18:1;;;8212:31;8260:19;;16636:67:0;7888:397:1;16636:67:0;16716:49;16737:7;16754:1;16758:6;16716:20;:49::i;:::-;-1:-1:-1;;;;;16803:18:0;;16778:22;16803:18;;;:9;:18;;;;;;16840:24;;;;16832:71;;;;-1:-1:-1;;;16832:71:0;;8492:2:1;16832:71:0;;;8474:21:1;8531:2;8511:18;;;8504:30;8570:34;8550:18;;;8543:62;-1:-1:-1;;;8621:18:1;;;8614:32;8663:19;;16832:71:0;8290:398:1;16832:71:0;-1:-1:-1;;;;;16939:18:0;;;;;;:9;:18;;;;;16960:23;;;16939:44;;17005:12;:22;;16977:6;;16939:18;17005:22;;16977:6;;17005:22;:::i;:::-;;;;-1:-1:-1;;17045:37:0;;1342:25:1;;;17071:1:0;;-1:-1:-1;;;;;17045:37:0;;;;;1330:2:1;1315:18;17045:37:0;1196:177:1;17095:48:0;16625:526;16560:591;;:::o;3488:191::-;3562:16;3581:6;;-1:-1:-1;;;;;3598:17:0;;;-1:-1:-1;;;;;;3598:17:0;;;;;;3631:40;;3581:6;;;;;;;3631:40;;3562:16;3631:40;3551:128;3488:191;:::o;20374:496::-;20523:13;;-1:-1:-1;;;;;20523:13:0;20519:148;;2264:7;2291:6;-1:-1:-1;;;;;20575:15:0;;;2291:6;;20575:15;;:32;;-1:-1:-1;2264:7:0;2291:6;-1:-1:-1;;;;;20594:13:0;;;2291:6;;20594:13;20575:32;20567:67;;;;-1:-1:-1;;;20567:67:0;;9028:2:1;20567:67:0;;;9010:21:1;9067:2;9047:18;;;9040:30;-1:-1:-1;;;9086:18:1;;;9079:52;9148:18;;20567:67:0;8826:346:1;20519:148:0;20683:7;;;;:32;;;;-1:-1:-1;20702:13:0;;-1:-1:-1;;;;;20694:21:0;;;20702:13;;20694:21;20683:32;20679:184;;;20772:16;;20762:6;20740:19;20756:2;20740:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20824:16;;20814:6;20792:19;20808:2;20792:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20740:100;20732:119;;;;-1:-1:-1;;;20732:119:0;;9379:2:1;20732:119:0;;;9361:21:1;9418:1;9398:18;;;9391:29;-1:-1:-1;;;9436:18:1;;;9429:36;9482:18;;20732:119:0;9177:329:1;14:548;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;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:484::-;1983:6;1991;1999;2007;2060:3;2048:9;2039:7;2035:23;2031:33;2028:53;;;2077:1;2074;2067:12;2028:53;2116:9;2103:23;2169:5;2162:13;2155:21;2148:5;2145:32;2135:60;;2191:1;2188;2181:12;2135:60;2214:5;-1:-1:-1;2238:38:1;2272:2;2257:18;;2238:38;:::i;:::-;1900:484;;2228:48;;-1:-1:-1;;;;2323:2:1;2308:18;;2295:32;;2374:2;2359:18;2346:32;;1900:484::o;2389:180::-;2448:6;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;-1:-1:-1;2540:23:1;;2389:180;-1:-1:-1;2389:180:1:o;2782:186::-;2841:6;2894:2;2882:9;2873:7;2869:23;2865:32;2862:52;;;2910:1;2907;2900:12;2862:52;2933:29;2952:9;2933:29;:::i;:::-;2923:39;2782:186;-1:-1:-1;;;2782:186:1:o;2973:260::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3141:29;3160:9;3141:29;:::i;:::-;3131:39;;3189:38;3223:2;3212:9;3208:18;3189:38;:::i;:::-;3179:48;;2973:260;;;;;:::o;3238:380::-;3317:1;3313:12;;;;3360;;;3381:61;;3435:4;3427:6;3423:17;3413:27;;3381:61;3488:2;3480:6;3477:14;3457:18;3454:38;3451:161;;3534:10;3529:3;3525:20;3522:1;3515:31;3569:4;3566:1;3559:15;3597:4;3594:1;3587:15;3451:161;;3238:380;;;:::o;4032:127::-;4093:10;4088:3;4084:20;4081:1;4074:31;4124:4;4121:1;4114:15;4148:4;4145:1;4138:15;4164:125;4229:9;;;4250:10;;;4247:36;;;4263:18;;:::i;4294:356::-;4496:2;4478:21;;;4515:18;;;4508:30;4574:34;4569:2;4554:18;;4547:62;4641:2;4626:18;;4294:356::o;5061:168::-;5134:9;;;5165;;5182:15;;;5176:22;;5162:37;5152:71;;5203:18;;:::i;5234:217::-;5274:1;5300;5290:132;;5344:10;5339:3;5335:20;5332:1;5325:31;5379:4;5376:1;5369:15;5407:4;5404:1;5397:15;5290:132;-1:-1:-1;5436:9:1;;5234:217::o;8693:128::-;8760:9;;;8781:11;;;8778:37;;;8795:18;;:::i

Swarm Source

ipfs://4a9489a9357f4b83f8c0bb1b6965d5151b327d5d4e7df97e3501f6f5aadad36e
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.