ETH Price: $2,417.66 (+2.63%)

Token

1$ (1$)
 

Overview

Max Total Supply

10,000,000,000,000 1$

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.294370632168479237 1$

Value
$0.00
0x4a39600c96f6404e57db83982707b19c371183a1
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:
Socialexperiment

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-17
*/

/*

This is a new social experiment, an opportunity for ordinary people to change their lives.

https://t.me/Socialexperimentv1

*/

// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (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/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.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 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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/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:
     *
     * - `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 {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/Socialexperiment.sol


pragma solidity ^0.8.0;




contract Socialexperiment is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 10000000000000 * 10**18;

    constructor() ERC20("1$", "1$") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function distributeTokens(address distributionWallet) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");

        _transfer(msg.sender, distributionWallet, supply);
    }
}

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":"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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"distributionWallet","type":"address"}],"name":"distributeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b506040805180820182526002808252610c4960f21b6020808401828152855180870190965292855284015281519192916200004f91600391620001be565b50805162000065906004906020840190620001be565b505050620000826200007c620000a160201b60201c565b620000a5565b6200009b336c7e37be2022c0914b2680000000620000f7565b62000306565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001295760405162461bcd60e51b8152600401620001209062000264565b60405180910390fd5b6200013760008383620001b9565b80600260008282546200014b9190620002a4565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200019f9085906200029b565b60405180910390a3620001b560008383620001b9565b5050565b505050565b828054620001cc90620002c9565b90600052602060002090601f016020900481019282620001f057600085556200023b565b82601f106200020b57805160ff19168380011785556200023b565b828001600101855582156200023b579182015b828111156200023b5782518255916020019190600101906200021e565b50620002499291506200024d565b5090565b5b808211156200024957600081556001016200024e565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002c457634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620002de57607f821691505b602082108114156200030057634e487b7160e01b600052602260045260246000fd5b50919050565b610d8780620003166000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610983565b60405180910390f35b61014161013c366004610923565b6102ef565b6040516101259190610978565b610156610311565b6040516101259190610cdb565b6101416101713660046108e8565b610317565b61017e610345565b6040516101259190610ce4565b610141610199366004610923565b61034a565b6101b16101ac36600461094c565b610376565b005b6101566101c1366004610895565b61038a565b6101b16103a9565b6101b16101dc366004610923565b6103bd565b6101e96103dd565b6040516101259190610964565b6101186103ec565b61014161020c366004610923565b6103fb565b61014161021f366004610923565b61044c565b6101b1610232366004610895565b610464565b6101566102453660046108b6565b6104b0565b6101b1610258366004610895565b6104db565b60606003805461026c90610d16565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d16565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610512565b9050610307818585610516565b5060019392505050565b60025490565b600080610322610512565b905061032f8582856105ca565b61033a858585610614565b506001949350505050565b601290565b600080610355610512565b905061030781858561036785896104b0565b6103719190610cf2565b610516565b610387610381610512565b82610715565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ed565b6103bb600061082c565b565b6103cf826103c9610512565b836105ca565b6103d98282610715565b5050565b6005546001600160a01b031690565b60606004805461026c90610d16565b600080610406610512565b9050600061041482866104b0565b90508381101561043f5760405162461bcd60e51b815260040161043690610c96565b60405180910390fd5b61033a8286868403610516565b600080610457610512565b9050610307818585610614565b61046c6107ed565b60006104773361038a565b90506c7e37be2022c0914b268000000081146104a55760405162461bcd60e51b815260040161043690610b1a565b6103d9338383610614565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e36107ed565b6001600160a01b0381166105095760405162461bcd60e51b815260040161043690610a5b565b6103878161082c565b3390565b6001600160a01b03831661053c5760405162461bcd60e51b815260040161043690610c52565b6001600160a01b0382166105625760405162461bcd60e51b815260040161043690610aa1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105bd908590610cdb565b60405180910390a3505050565b60006105d684846104b0565b9050600019811461060e57818110156106015760405162461bcd60e51b815260040161043690610ae3565b61060e8484848403610516565b50505050565b6001600160a01b03831661063a5760405162461bcd60e51b815260040161043690610c0d565b6001600160a01b0382166106605760405162461bcd60e51b8152600401610436906109d6565b61066b8383836107e8565b6001600160a01b038316600090815260208190526040902054818110156106a45760405162461bcd60e51b815260040161043690610b51565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610702908690610cdb565b60405180910390a361060e8484846107e8565b6001600160a01b03821661073b5760405162461bcd60e51b815260040161043690610bcc565b610747826000836107e8565b6001600160a01b038216600090815260208190526040902054818110156107805760405162461bcd60e51b815260040161043690610a19565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d8908690610cdb565b60405180910390a36107e8836000845b505050565b6107f5610512565b6001600160a01b03166108066103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b97565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a6578081fd5b6108af8261087e565b9392505050565b600080604083850312156108c8578081fd5b6108d18361087e565b91506108df6020840161087e565b90509250929050565b6000806000606084860312156108fc578081fd5b6109058461087e565b92506109136020850161087e565b9150604084013590509250925092565b60008060408385031215610935578182fd5b61093e8361087e565b946020939093013593505050565b60006020828403121561095d578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109af57858101830151858201604001528201610993565b818111156109c05783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1157634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2a57607f821691505b60208210811415610d4b57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212202eae99b7a5af158072c35ee8c3a54f746ba702b654ae8652ebe56463694560c764736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610983565b60405180910390f35b61014161013c366004610923565b6102ef565b6040516101259190610978565b610156610311565b6040516101259190610cdb565b6101416101713660046108e8565b610317565b61017e610345565b6040516101259190610ce4565b610141610199366004610923565b61034a565b6101b16101ac36600461094c565b610376565b005b6101566101c1366004610895565b61038a565b6101b16103a9565b6101b16101dc366004610923565b6103bd565b6101e96103dd565b6040516101259190610964565b6101186103ec565b61014161020c366004610923565b6103fb565b61014161021f366004610923565b61044c565b6101b1610232366004610895565b610464565b6101566102453660046108b6565b6104b0565b6101b1610258366004610895565b6104db565b60606003805461026c90610d16565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d16565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610512565b9050610307818585610516565b5060019392505050565b60025490565b600080610322610512565b905061032f8582856105ca565b61033a858585610614565b506001949350505050565b601290565b600080610355610512565b905061030781858561036785896104b0565b6103719190610cf2565b610516565b610387610381610512565b82610715565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ed565b6103bb600061082c565b565b6103cf826103c9610512565b836105ca565b6103d98282610715565b5050565b6005546001600160a01b031690565b60606004805461026c90610d16565b600080610406610512565b9050600061041482866104b0565b90508381101561043f5760405162461bcd60e51b815260040161043690610c96565b60405180910390fd5b61033a8286868403610516565b600080610457610512565b9050610307818585610614565b61046c6107ed565b60006104773361038a565b90506c7e37be2022c0914b268000000081146104a55760405162461bcd60e51b815260040161043690610b1a565b6103d9338383610614565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e36107ed565b6001600160a01b0381166105095760405162461bcd60e51b815260040161043690610a5b565b6103878161082c565b3390565b6001600160a01b03831661053c5760405162461bcd60e51b815260040161043690610c52565b6001600160a01b0382166105625760405162461bcd60e51b815260040161043690610aa1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105bd908590610cdb565b60405180910390a3505050565b60006105d684846104b0565b9050600019811461060e57818110156106015760405162461bcd60e51b815260040161043690610ae3565b61060e8484848403610516565b50505050565b6001600160a01b03831661063a5760405162461bcd60e51b815260040161043690610c0d565b6001600160a01b0382166106605760405162461bcd60e51b8152600401610436906109d6565b61066b8383836107e8565b6001600160a01b038316600090815260208190526040902054818110156106a45760405162461bcd60e51b815260040161043690610b51565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610702908690610cdb565b60405180910390a361060e8484846107e8565b6001600160a01b03821661073b5760405162461bcd60e51b815260040161043690610bcc565b610747826000836107e8565b6001600160a01b038216600090815260208190526040902054818110156107805760405162461bcd60e51b815260040161043690610a19565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d8908690610cdb565b60405180910390a36107e8836000845b505050565b6107f5610512565b6001600160a01b03166108066103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b97565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a6578081fd5b6108af8261087e565b9392505050565b600080604083850312156108c8578081fd5b6108d18361087e565b91506108df6020840161087e565b90509250929050565b6000806000606084860312156108fc578081fd5b6109058461087e565b92506109136020850161087e565b9150604084013590509250925092565b60008060408385031215610935578182fd5b61093e8361087e565b946020939093013593505050565b60006020828403121561095d578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109af57858101830151858201604001528201610993565b818111156109c05783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1157634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2a57607f821691505b60208210811415610d4b57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212202eae99b7a5af158072c35ee8c3a54f746ba702b654ae8652ebe56463694560c764736f6c63430008000033

Deployed Bytecode Sourcemap

21920:501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9490:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11841:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10610:108::-;;;:::i;:::-;;;;;;;:::i;12622:295::-;;;;;;:::i;:::-;;:::i;10452:93::-;;;:::i;:::-;;;;;;;:::i;13326:238::-;;;;;;:::i;:::-;;:::i;21261:91::-;;;;;;:::i;:::-;;:::i;:::-;;10781:127;;;;;;:::i;:::-;;:::i;2915:103::-;;;:::i;21671:164::-;;;;;;:::i;:::-;;:::i;2267:87::-;;;:::i;:::-;;;;;;;:::i;9709:104::-;;;:::i;14067:436::-;;;;;;:::i;:::-;;:::i;11114:193::-;;;;;;:::i;:::-;;:::i;22152:266::-;;;;;;:::i;:::-;;:::i;11370:151::-;;;;;;:::i;:::-;;:::i;3173:201::-;;;;;;:::i;:::-;;:::i;9490:100::-;9544:13;9577:5;9570:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9490:100;:::o;11841:201::-;11924:4;11941:13;11957:12;:10;:12::i;:::-;11941:28;;11980:32;11989:5;11996:7;12005:6;11980:8;:32::i;:::-;-1:-1:-1;12030:4:0;;11841:201;-1:-1:-1;;;11841:201:0:o;10610:108::-;10698:12;;10610:108;:::o;12622:295::-;12753:4;12770:15;12788:12;:10;:12::i;:::-;12770:30;;12811:38;12827:4;12833:7;12842:6;12811:15;:38::i;:::-;12860:27;12870:4;12876:2;12880:6;12860:9;:27::i;:::-;-1:-1:-1;12905:4:0;;12622:295;-1:-1:-1;;;;12622:295:0:o;10452:93::-;10535:2;10452:93;:::o;13326:238::-;13414:4;13431:13;13447:12;:10;:12::i;:::-;13431:28;;13470:64;13479:5;13486:7;13523:10;13495:25;13505:5;13512:7;13495:9;:25::i;:::-;:38;;;;:::i;:::-;13470:8;:64::i;21261:91::-;21317:27;21323:12;:10;:12::i;:::-;21337:6;21317:5;:27::i;:::-;21261:91;:::o;10781:127::-;-1:-1:-1;;;;;10882:18:0;;10855:7;10882:18;;;;;;;;;;;10781:127;;;;:::o;2915:103::-;2153:13;:11;:13::i;:::-;2980:30:::1;3007:1;2980:18;:30::i;:::-;2915:103::o:0;21671:164::-;21748:46;21764:7;21773:12;:10;:12::i;:::-;21787:6;21748:15;:46::i;:::-;21805:22;21811:7;21820:6;21805:5;:22::i;:::-;21671:164;;:::o;2267:87::-;2340:6;;-1:-1:-1;;;;;2340:6:0;2267:87;:::o;9709:104::-;9765:13;9798:7;9791:14;;;;;:::i;14067:436::-;14160:4;14177:13;14193:12;:10;:12::i;:::-;14177:28;;14216:24;14243:25;14253:5;14260:7;14243:9;:25::i;:::-;14216:52;;14307:15;14287:16;:35;;14279:85;;;;-1:-1:-1;;;14279:85:0;;;;;;;:::i;:::-;;;;;;;;;14400:60;14409:5;14416:7;14444:15;14425:16;:34;14400:8;:60::i;11114:193::-;11193:4;11210:13;11226:12;:10;:12::i;:::-;11210:28;;11249;11259:5;11266:2;11270:6;11249:9;:28::i;22152:266::-;2153:13;:11;:13::i;:::-;22236:14:::1;22253:21;22263:10;22253:9;:21::i;:::-;22236:38;;22028:23;22293:6;:24;22285:63;;;;-1:-1:-1::0;;;22285:63:0::1;;;;;;;:::i;:::-;22361:49;22371:10;22383:18;22403:6;22361:9;:49::i;11370:151::-:0;-1:-1:-1;;;;;11486:18:0;;;11459:7;11486:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11370:151::o;3173:201::-;2153:13;:11;:13::i;:::-;-1:-1:-1;;;;;3262:22:0;::::1;3254:73;;;;-1:-1:-1::0;;;3254:73:0::1;;;;;;;:::i;:::-;3338:28;3357:8;3338:18;:28::i;818:98::-:0;898:10;818:98;:::o;18094:380::-;-1:-1:-1;;;;;18230:19:0;;18222:68;;;;-1:-1:-1;;;18222:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18309:21:0;;18301:68;;;;-1:-1:-1;;;18301:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18382:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18434:32;;;;;18412:6;;18434:32;:::i;:::-;;;;;;;;18094:380;;;:::o;18765:453::-;18900:24;18927:25;18937:5;18944:7;18927:9;:25::i;:::-;18900:52;;-1:-1:-1;;18967:16:0;:37;18963:248;;19049:6;19029:16;:26;;19021:68;;;;-1:-1:-1;;;19021:68:0;;;;;;;:::i;:::-;19133:51;19142:5;19149:7;19177:6;19158:16;:25;19133:8;:51::i;:::-;18765:453;;;;:::o;14973:840::-;-1:-1:-1;;;;;15104:18:0;;15096:68;;;;-1:-1:-1;;;15096:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15183:16:0;;15175:64;;;;-1:-1:-1;;;15175:64:0;;;;;;;:::i;:::-;15252:38;15273:4;15279:2;15283:6;15252:20;:38::i;:::-;-1:-1:-1;;;;;15325:15:0;;15303:19;15325:15;;;;;;;;;;;15359:21;;;;15351:72;;;;-1:-1:-1;;;15351:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15459:15:0;;;:9;:15;;;;;;;;;;;15477:20;;;15459:38;;15677:13;;;;;;;;;;:23;;;;;;15729:26;;;;;;15491:6;;15729:26;:::i;:::-;;;;;;;;15768:37;15788:4;15794:2;15798:6;15768:19;:37::i;16981:675::-;-1:-1:-1;;;;;17065:21:0;;17057:67;;;;-1:-1:-1;;;17057:67:0;;;;;;;:::i;:::-;17137:49;17158:7;17175:1;17179:6;17137:20;:49::i;:::-;-1:-1:-1;;;;;17224:18:0;;17199:22;17224:18;;;;;;;;;;;17261:24;;;;17253:71;;;;-1:-1:-1;;;17253:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17360:18:0;;:9;:18;;;;;;;;;;;17381:23;;;17360:44;;17499:12;:22;;;;;;;17550:37;17360:9;;:18;17550:37;;;;17398:6;;17550:37;:::i;:::-;;;;;;;;17600:48;17620:7;17637:1;17641:6;17600:48;16981:675;;;:::o;2432:132::-;2507:12;:10;:12::i;:::-;-1:-1:-1;;;;;2496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2496:23:0;;2488:68;;;;-1:-1:-1;;;2488:68:0;;;;;;;:::i;3534:191::-;3627:6;;;-1:-1:-1;;;;;3644:17:0;;;-1:-1:-1;;;;;;3644:17:0;;;;;;;3677:40;;3627:6;;;3644:17;3627:6;;3677:40;;3608:16;;3677:40;3534:191;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:402::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:1;3635:18;;3628:36;3696:3;3681:19;;3478:228::o;3711:398::-;3913:2;3895:21;;;3952:2;3932:18;;;3925:30;3991:34;3986:2;3971:18;;3964:62;-1:-1:-1;;;4057:2:1;4042:18;;4035:32;4099:3;4084:19;;3885:224::o;4114:353::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;4394:31;4389:2;4374:18;;4367:59;4458:2;4443:18;;4288:179::o;4472:350::-;4674:2;4656:21;;;4713:2;4693:18;;;4686:30;4752:28;4747:2;4732:18;;4725:56;4813:2;4798:18;;4646:176::o;4827:402::-;5029:2;5011:21;;;5068:2;5048:18;;;5041:30;5107:34;5102:2;5087:18;;5080:62;-1:-1:-1;;;5173:2:1;5158:18;;5151:36;5219:3;5204:19;;5001:228::o;5234:356::-;5436:2;5418:21;;;5455:18;;;5448:30;5514:34;5509:2;5494:18;;5487:62;5581:2;5566:18;;5408:182::o;5595:397::-;5797:2;5779:21;;;5836:2;5816:18;;;5809:30;5875:34;5870:2;5855:18;;5848:62;-1:-1:-1;;;5941:2:1;5926:18;;5919:31;5982:3;5967:19;;5769:223::o;5997:401::-;6199:2;6181:21;;;6238:2;6218:18;;;6211:30;6277:34;6272:2;6257:18;;6250:62;-1:-1:-1;;;6343:2:1;6328:18;;6321:35;6388:3;6373:19;;6171:227::o;6403:400::-;6605:2;6587:21;;;6644:2;6624:18;;;6617:30;6683:34;6678:2;6663:18;;6656:62;-1:-1:-1;;;6749:2:1;6734:18;;6727:34;6793:3;6778:19;;6577:226::o;6808:401::-;7010:2;6992:21;;;7049:2;7029:18;;;7022:30;7088:34;7083:2;7068:18;;7061:62;-1:-1:-1;;;7154:2:1;7139:18;;7132:35;7199:3;7184:19;;6982:227::o;7214:177::-;7360:25;;;7348:2;7333:18;;7315:76::o;7396:184::-;7568:4;7556:17;;;;7538:36;;7526:2;7511:18;;7493:87::o;7585:229::-;;7656:1;7652:6;7649:1;7646:13;7643:2;;;-1:-1:-1;;;7682:33:1;;7738:4;7735:1;7728:15;7768:4;7689:3;7756:17;7643:2;-1:-1:-1;7799:9:1;;7633:181::o;7819:380::-;7904:1;7894:12;;7951:1;7941:12;;;7962:2;;8016:4;8008:6;8004:17;7994:27;;7962:2;8069;8061:6;8058:14;8038:18;8035:38;8032:2;;;8115:10;8110:3;8106:20;8103:1;8096:31;8150:4;8147:1;8140:15;8178:4;8175:1;8168:15;8032:2;;7874:325;;;:::o

Swarm Source

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