CRO Price: $0.08 (+3.19%)

Token

EREEK (EREEK)

Overview

Max Total Supply

1,000,000,000 EREEK

Holders

1,866

Total Transfers

-

Market

Price

$0.00 @ 0.000000 CRO

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
EreekCoin

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2024-04-01
*/

/**
 *Submitted for verification at cronoscan.com on 2024-03-21
*/

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


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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/access/Ownable.sol


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


pragma solidity ^0.8.2;

/**
      ___           ___           ___           ___           ___     
     /\  \         /\  \         /\  \         /\  \         /\__\    
    /::\  \       /::\  \       /::\  \       /::\  \       /:/  /    
   /:/\:\  \     /:/\:\  \     /:/\:\  \     /:/\:\  \     /:/__/     
  /::\~\:\  \   /::\~\:\  \   /::\~\:\  \   /::\~\:\  \   /::\__\____ 
 /:/\:\ \:\__\ /:/\:\ \:\__\ /:/\:\ \:\__\ /:/\:\ \:\__\ /:/\:::::\__\
 \:\~\:\ \/__/ \/_|::\/:/  / \:\~\:\ \/__/ \:\~\:\ \/__/ \/_|:|~~|~   
  \:\ \:\__\      |:|::/  /   \:\ \:\__\    \:\ \:\__\      |:|  |    
   \:\ \/__/      |:|\/__/     \:\ \/__/     \:\ \/__/      |:|  |    
    \:\__\        |:|  |        \:\__\        \:\__\        |:|  |    
     \/__/         \|__|         \/__/         \/__/         \|__|                                                                                                                   
 */

contract EreekCoin is ERC20, Ownable {
    bool internal locked;

    uint256 public constant TOTAL_SUPPLY = 1_000_000_000 * (10 ** 18);
    uint256 public constant SALE_SUPPLY = TOTAL_SUPPLY / 2; 

    uint256 public totalCROContributed = 0;
    uint256 public participants = 0;
    mapping(address => uint256) public croContributions;

    uint256 public startTimestamp = 1712156400; // Tue Apr 03 2024 15:00:00 GMT+0000;
    uint256 public endTimestamp = 1712156400 + 24 hours; // Thur Apr 04 2024 15:00:00 GMT+0000;

    error SaleNotStarted();
    error SaleAlreadyEnded();
    error ClaimNotStarted();
    error NoContribution();
    error InvalidTimestamps();
    error ReceiversAmountsMismatch();
    error NonReentrant();

    event ContributionUpdated(address indexed contributor, uint256 amountContributed, uint256 newTotalCROContributed);

    modifier nonReentrant{
        if( locked ) revert NonReentrant();
        locked = true;
        _;
        locked = false;
    }

    constructor() ERC20("EREEK", "EREEK") Ownable() {
        _mint(address(this), TOTAL_SUPPLY);
    }

    function isClaimable() public view returns(bool) {
        return block.timestamp > endTimestamp;
    }

    function unlock() public onlyOwner {
        if( locked )
            locked = ! locked;
    }

    function depositCRO() public payable nonReentrant {
        if (block.timestamp < startTimestamp || block.timestamp > endTimestamp )
            revert SaleNotStarted();
        if( croContributions[_msgSender()] == 0 )
            ++participants;
        croContributions[_msgSender()] += msg.value;
        totalCROContributed += msg.value;

        emit ContributionUpdated(_msgSender(), msg.value, totalCROContributed);
    }

    function getDistribution() public view returns(uint) {
        uint256 contribution = croContributions[_msgSender()];
        if( contribution > 0 )
            return contribution * SALE_SUPPLY / totalCROContributed;
        return 0;
    }

    function withdrawEreek() public nonReentrant {
        if (block.timestamp < endTimestamp) revert ClaimNotStarted();
        uint256 contribution = croContributions[_msgSender()];
        if (contribution == 0) revert NoContribution();
        uint256 claimableAmount = contribution * SALE_SUPPLY / totalCROContributed;
        croContributions[_msgSender()] = 0;
        _transfer(address(this), _msgSender(), claimableAmount);
    }

    function withdrawCro(uint256 amount, address receiver) public onlyOwner {
        (bool ok, ) = payable(receiver).call{value: amount}("");
        if (!ok) revert NoContribution();
    }

    function distributeEreek(address[] memory receivers, uint256[] memory amounts) public onlyOwner {
        if (receivers.length != amounts.length) revert ReceiversAmountsMismatch();
        for (uint256 i = 0; i < receivers.length; i++) {
            _transfer(address(this), receivers[i], amounts[i]);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ClaimNotStarted","type":"error"},{"inputs":[],"name":"InvalidTimestamps","type":"error"},{"inputs":[],"name":"NoContribution","type":"error"},{"inputs":[],"name":"NonReentrant","type":"error"},{"inputs":[],"name":"ReceiversAmountsMismatch","type":"error"},{"inputs":[],"name":"SaleAlreadyEnded","type":"error"},{"inputs":[],"name":"SaleNotStarted","type":"error"},{"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":"contributor","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountContributed","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalCROContributed","type":"uint256"}],"name":"ContributionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"SALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"","type":"address"}],"name":"croContributions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositCRO","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"distributeEreek","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDistribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isClaimable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"participants","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCROContributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"withdrawCro","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEreek","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600655600060075563660d6ef060095563660ec070600a553480156200002b57600080fd5b50604080518082018252600580825264455245454b60d81b6020808401828152855180870190965292855284015281519192916200006c91600391620001fb565b50805162000082906004906020840190620001fb565b5050506200009f62000099620000bd60201b60201c565b620000c1565b620000b7306b033b2e3c9fd0803ce800000062000113565b62000305565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200016e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001829190620002a1565b90915550506001600160a01b03821660009081526020819052604081208054839290620001b1908490620002a1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200020990620002c8565b90600052602060002090601f0160209004810192826200022d576000855562000278565b82601f106200024857805160ff191683800117855562000278565b8280016001018555821562000278579182015b82811115620002785782518255916020019190600101906200025b565b50620002869291506200028a565b5090565b5b808211156200028657600081556001016200028b565b60008219821115620002c357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002dd57607f821691505b60208210811415620002ff57634e487b7160e01b600052602260045260246000fd5b50919050565b6113ca80620003156000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063a85adeab1161008a578063cbf6fff911610064578063cbf6fff914610489578063dd62ed3e1461049e578063e6fd48bc146104e4578063f2fde38b146104fa57600080fd5b8063a85adeab1461043d578063a9059cbb14610453578063b9d8f2de1461047357600080fd5b8063902d55a5116100c6578063902d55a5146103d357806395d89b41146103f3578063a457c2d714610408578063a69df4b51461042857600080fd5b8063715018a61461037f57806374478bb3146103945780638da5cb5b146103ab57600080fd5b8063313ce56711610159578063568f349711610133578063568f34971461030b578063594da0a31461032b5780636c4470fb1461033357806370a082311461034957600080fd5b8063313ce567146102a257806339509351146102be57806354a4e08a146102de57600080fd5b806318160ddd1161019557806318160ddd146102395780631cced51b1461025857806323b872dd1461026d5780632e55b5071461028d57600080fd5b806306fdde03146101bc57806309299101146101e7578063095ea7b314610209575b600080fd5b3480156101c857600080fd5b506101d161051a565b6040516101de9190610f9f565b60405180910390f35b3480156101f357600080fd5b50610207610202366004611010565b6105ac565b005b34801561021557600080fd5b5061022961022436600461103c565b610658565b60405190151581526020016101de565b34801561024557600080fd5b506002545b6040519081526020016101de565b34801561026457600080fd5b5061024a61066e565b34801561027957600080fd5b50610229610288366004611066565b6106c0565b34801561029957600080fd5b5061020761076a565b3480156102ae57600080fd5b50604051601281526020016101de565b3480156102ca57600080fd5b506102296102d936600461103c565b61085a565b3480156102ea57600080fd5b5061024a6102f93660046110a2565b60086020526000908152604090205481565b34801561031757600080fd5b5061020761032636600461119a565b610896565b61020761093d565b34801561033f57600080fd5b5061024a60075481565b34801561035557600080fd5b5061024a6103643660046110a2565b6001600160a01b031660009081526020819052604090205490565b34801561038b57600080fd5b50610207610a5d565b3480156103a057600080fd5b50600a544211610229565b3480156103b757600080fd5b506005546040516001600160a01b0390911681526020016101de565b3480156103df57600080fd5b5061024a6b033b2e3c9fd0803ce800000081565b3480156103ff57600080fd5b506101d1610a93565b34801561041457600080fd5b5061022961042336600461103c565b610aa2565b34801561043457600080fd5b50610207610b3b565b34801561044957600080fd5b5061024a600a5481565b34801561045f57600080fd5b5061022961046e36600461103c565b610b98565b34801561047f57600080fd5b5061024a60065481565b34801561049557600080fd5b5061024a610ba5565b3480156104aa57600080fd5b5061024a6104b936600461125a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104f057600080fd5b5061024a60095481565b34801561050657600080fd5b506102076105153660046110a2565b610bbf565b60606003805461052990611284565b80601f016020809104026020016040519081016040528092919081815260200182805461055590611284565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b6005546001600160a01b031633146105df5760405162461bcd60e51b81526004016105d6906112bf565b60405180910390fd5b6000816001600160a01b03168360405160006040518083038185875af1925050503d806000811461062c576040519150601f19603f3d011682016040523d82523d6000602084013e610631565b606091505b505090508061065357604051631971fbf360e21b815260040160405180910390fd5b505050565b6000610665338484610c5a565b50600192915050565b3360009081526008602052604081205480156106b85760065461069e60026b033b2e3c9fd0803ce800000061130a565b6106a8908361132c565b6106b2919061130a565b91505090565b600091505090565b60006106cd848484610d7e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107525760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016105d6565b61075f8533858403610c5a565b506001949350505050565b600554600160a01b900460ff1615610795576040516349cb68ab60e11b815260040160405180910390fd5b6005805460ff60a01b1916600160a01b179055600a544210156107cb57604051635874e70f60e11b815260040160405180910390fd5b33600090815260086020526040902054806107f957604051631971fbf360e21b815260040160405180910390fd5b60065460009061081660026b033b2e3c9fd0803ce800000061130a565b610820908461132c565b61082a919061130a565b3360008181526008602052604081205590915061084990309083610d7e565b50506005805460ff60a01b19169055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161066591859061089190869061134b565b610c5a565b6005546001600160a01b031633146108c05760405162461bcd60e51b81526004016105d6906112bf565b80518251146108e257604051634039866f60e01b815260040160405180910390fd5b60005b82518110156106535761092b3084838151811061090457610904611363565b602002602001015184848151811061091e5761091e611363565b6020026020010151610d7e565b8061093581611379565b9150506108e5565b600554600160a01b900460ff1615610968576040516349cb68ab60e11b815260040160405180910390fd5b6005805460ff60a01b1916600160a01b17905560095442108061098c5750600a5442115b156109aa576040516316851a3760e11b815260040160405180910390fd5b336000908152600860205260409020546109d2576007600081546109cd90611379565b909155505b33600090815260086020526040812080543492906109f190849061134b565b925050819055503460066000828254610a0a919061134b565b909155505060065460408051348152602081019290925233917f36c7c98dfe7e045d8de3e3a8ef7280d623eeb82e7ac5f92d4854297dd0781305910160405180910390a26005805460ff60a01b19169055565b6005546001600160a01b03163314610a875760405162461bcd60e51b81526004016105d6906112bf565b610a916000610f4d565b565b60606004805461052990611284565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105d6565b610b313385858403610c5a565b5060019392505050565b6005546001600160a01b03163314610b655760405162461bcd60e51b81526004016105d6906112bf565b600554600160a01b900460ff1615610a91576005805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000610665338484610d7e565b610bbc60026b033b2e3c9fd0803ce800000061130a565b81565b6005546001600160a01b03163314610be95760405162461bcd60e51b81526004016105d6906112bf565b6001600160a01b038116610c4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d6565b610c5781610f4d565b50565b6001600160a01b038316610cbc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d6565b6001600160a01b038216610d1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610de25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d6565b6001600160a01b038216610e445760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d6565b6001600160a01b03831660009081526020819052604090205481811015610ebc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ef390849061134b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3f91815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610fcc57858101830151858201604001528201610fb0565b81811115610fde576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461100b57600080fd5b919050565b6000806040838503121561102357600080fd5b8235915061103360208401610ff4565b90509250929050565b6000806040838503121561104f57600080fd5b61105883610ff4565b946020939093013593505050565b60008060006060848603121561107b57600080fd5b61108484610ff4565b925061109260208501610ff4565b9150604084013590509250925092565b6000602082840312156110b457600080fd5b6110bd82610ff4565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611103576111036110c4565b604052919050565b600067ffffffffffffffff821115611125576111256110c4565b5060051b60200190565b600082601f83011261114057600080fd5b813560206111556111508361110b565b6110da565b82815260059290921b8401810191818101908684111561117457600080fd5b8286015b8481101561118f5780358352918301918301611178565b509695505050505050565b600080604083850312156111ad57600080fd5b823567ffffffffffffffff808211156111c557600080fd5b818501915085601f8301126111d957600080fd5b813560206111e96111508361110b565b82815260059290921b8401810191818101908984111561120857600080fd5b948201945b8386101561122d5761121e86610ff4565b8252948201949082019061120d565b9650508601359250508082111561124357600080fd5b506112508582860161112f565b9150509250929050565b6000806040838503121561126d57600080fd5b61127683610ff4565b915061103360208401610ff4565b600181811c9082168061129857607f821691505b602082108114156112b957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261132757634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611346576113466112f4565b500290565b6000821982111561135e5761135e6112f4565b500190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561138d5761138d6112f4565b506001019056fea2646970667358221220b894c8a255c16cb18a1a88782ba989412c752c5cf9051eca3bdacb020e48bcdc64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063a85adeab1161008a578063cbf6fff911610064578063cbf6fff914610489578063dd62ed3e1461049e578063e6fd48bc146104e4578063f2fde38b146104fa57600080fd5b8063a85adeab1461043d578063a9059cbb14610453578063b9d8f2de1461047357600080fd5b8063902d55a5116100c6578063902d55a5146103d357806395d89b41146103f3578063a457c2d714610408578063a69df4b51461042857600080fd5b8063715018a61461037f57806374478bb3146103945780638da5cb5b146103ab57600080fd5b8063313ce56711610159578063568f349711610133578063568f34971461030b578063594da0a31461032b5780636c4470fb1461033357806370a082311461034957600080fd5b8063313ce567146102a257806339509351146102be57806354a4e08a146102de57600080fd5b806318160ddd1161019557806318160ddd146102395780631cced51b1461025857806323b872dd1461026d5780632e55b5071461028d57600080fd5b806306fdde03146101bc57806309299101146101e7578063095ea7b314610209575b600080fd5b3480156101c857600080fd5b506101d161051a565b6040516101de9190610f9f565b60405180910390f35b3480156101f357600080fd5b50610207610202366004611010565b6105ac565b005b34801561021557600080fd5b5061022961022436600461103c565b610658565b60405190151581526020016101de565b34801561024557600080fd5b506002545b6040519081526020016101de565b34801561026457600080fd5b5061024a61066e565b34801561027957600080fd5b50610229610288366004611066565b6106c0565b34801561029957600080fd5b5061020761076a565b3480156102ae57600080fd5b50604051601281526020016101de565b3480156102ca57600080fd5b506102296102d936600461103c565b61085a565b3480156102ea57600080fd5b5061024a6102f93660046110a2565b60086020526000908152604090205481565b34801561031757600080fd5b5061020761032636600461119a565b610896565b61020761093d565b34801561033f57600080fd5b5061024a60075481565b34801561035557600080fd5b5061024a6103643660046110a2565b6001600160a01b031660009081526020819052604090205490565b34801561038b57600080fd5b50610207610a5d565b3480156103a057600080fd5b50600a544211610229565b3480156103b757600080fd5b506005546040516001600160a01b0390911681526020016101de565b3480156103df57600080fd5b5061024a6b033b2e3c9fd0803ce800000081565b3480156103ff57600080fd5b506101d1610a93565b34801561041457600080fd5b5061022961042336600461103c565b610aa2565b34801561043457600080fd5b50610207610b3b565b34801561044957600080fd5b5061024a600a5481565b34801561045f57600080fd5b5061022961046e36600461103c565b610b98565b34801561047f57600080fd5b5061024a60065481565b34801561049557600080fd5b5061024a610ba5565b3480156104aa57600080fd5b5061024a6104b936600461125a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104f057600080fd5b5061024a60095481565b34801561050657600080fd5b506102076105153660046110a2565b610bbf565b60606003805461052990611284565b80601f016020809104026020016040519081016040528092919081815260200182805461055590611284565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b6005546001600160a01b031633146105df5760405162461bcd60e51b81526004016105d6906112bf565b60405180910390fd5b6000816001600160a01b03168360405160006040518083038185875af1925050503d806000811461062c576040519150601f19603f3d011682016040523d82523d6000602084013e610631565b606091505b505090508061065357604051631971fbf360e21b815260040160405180910390fd5b505050565b6000610665338484610c5a565b50600192915050565b3360009081526008602052604081205480156106b85760065461069e60026b033b2e3c9fd0803ce800000061130a565b6106a8908361132c565b6106b2919061130a565b91505090565b600091505090565b60006106cd848484610d7e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107525760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016105d6565b61075f8533858403610c5a565b506001949350505050565b600554600160a01b900460ff1615610795576040516349cb68ab60e11b815260040160405180910390fd5b6005805460ff60a01b1916600160a01b179055600a544210156107cb57604051635874e70f60e11b815260040160405180910390fd5b33600090815260086020526040902054806107f957604051631971fbf360e21b815260040160405180910390fd5b60065460009061081660026b033b2e3c9fd0803ce800000061130a565b610820908461132c565b61082a919061130a565b3360008181526008602052604081205590915061084990309083610d7e565b50506005805460ff60a01b19169055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161066591859061089190869061134b565b610c5a565b6005546001600160a01b031633146108c05760405162461bcd60e51b81526004016105d6906112bf565b80518251146108e257604051634039866f60e01b815260040160405180910390fd5b60005b82518110156106535761092b3084838151811061090457610904611363565b602002602001015184848151811061091e5761091e611363565b6020026020010151610d7e565b8061093581611379565b9150506108e5565b600554600160a01b900460ff1615610968576040516349cb68ab60e11b815260040160405180910390fd5b6005805460ff60a01b1916600160a01b17905560095442108061098c5750600a5442115b156109aa576040516316851a3760e11b815260040160405180910390fd5b336000908152600860205260409020546109d2576007600081546109cd90611379565b909155505b33600090815260086020526040812080543492906109f190849061134b565b925050819055503460066000828254610a0a919061134b565b909155505060065460408051348152602081019290925233917f36c7c98dfe7e045d8de3e3a8ef7280d623eeb82e7ac5f92d4854297dd0781305910160405180910390a26005805460ff60a01b19169055565b6005546001600160a01b03163314610a875760405162461bcd60e51b81526004016105d6906112bf565b610a916000610f4d565b565b60606004805461052990611284565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105d6565b610b313385858403610c5a565b5060019392505050565b6005546001600160a01b03163314610b655760405162461bcd60e51b81526004016105d6906112bf565b600554600160a01b900460ff1615610a91576005805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000610665338484610d7e565b610bbc60026b033b2e3c9fd0803ce800000061130a565b81565b6005546001600160a01b03163314610be95760405162461bcd60e51b81526004016105d6906112bf565b6001600160a01b038116610c4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d6565b610c5781610f4d565b50565b6001600160a01b038316610cbc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d6565b6001600160a01b038216610d1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610de25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d6565b6001600160a01b038216610e445760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d6565b6001600160a01b03831660009081526020819052604090205481811015610ebc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ef390849061134b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3f91815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610fcc57858101830151858201604001528201610fb0565b81811115610fde576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461100b57600080fd5b919050565b6000806040838503121561102357600080fd5b8235915061103360208401610ff4565b90509250929050565b6000806040838503121561104f57600080fd5b61105883610ff4565b946020939093013593505050565b60008060006060848603121561107b57600080fd5b61108484610ff4565b925061109260208501610ff4565b9150604084013590509250925092565b6000602082840312156110b457600080fd5b6110bd82610ff4565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611103576111036110c4565b604052919050565b600067ffffffffffffffff821115611125576111256110c4565b5060051b60200190565b600082601f83011261114057600080fd5b813560206111556111508361110b565b6110da565b82815260059290921b8401810191818101908684111561117457600080fd5b8286015b8481101561118f5780358352918301918301611178565b509695505050505050565b600080604083850312156111ad57600080fd5b823567ffffffffffffffff808211156111c557600080fd5b818501915085601f8301126111d957600080fd5b813560206111e96111508361110b565b82815260059290921b8401810191818101908984111561120857600080fd5b948201945b8386101561122d5761121e86610ff4565b8252948201949082019061120d565b9650508601359250508082111561124357600080fd5b506112508582860161112f565b9150509250929050565b6000806040838503121561126d57600080fd5b61127683610ff4565b915061103360208401610ff4565b600181811c9082168061129857607f821691505b602082108114156112b957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261132757634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611346576113466112f4565b500290565b6000821982111561135e5761135e6112f4565b500190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561138d5761138d6112f4565b506001019056fea2646970667358221220b894c8a255c16cb18a1a88782ba989412c752c5cf9051eca3bdacb020e48bcdc64736f6c634300080c0033

Deployed Bytecode Sourcemap

20188:3020:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6727:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22686:189;;;;;;;;;;-1:-1:-1;22686:189:0;;;;;:::i;:::-;;:::i;:::-;;8894:169;;;;;;;;;;-1:-1:-1;8894:169:0;;;;;:::i;:::-;;:::i;:::-;;;1477:14:1;;1470:22;1452:41;;1440:2;1425:18;8894:169:0;1312:187:1;7847:108:0;;;;;;;;;;-1:-1:-1;7935:12:0;;7847:108;;;1650:25:1;;;1638:2;1623:18;7847:108:0;1504:177:1;21983:246:0;;;;;;;;;;;;;:::i;9545:492::-;;;;;;;;;;-1:-1:-1;9545:492:0;;;;;:::i;:::-;;:::i;22237:441::-;;;;;;;;;;;;;:::i;7689:93::-;;;;;;;;;;-1:-1:-1;7689:93:0;;7772:2;2161:36:1;;2149:2;2134:18;7689:93:0;2019:184:1;10446:215:0;;;;;;;;;;-1:-1:-1;10446:215:0;;;;;:::i;:::-;;:::i;20480:51::-;;;;;;;;;;-1:-1:-1;20480:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;22883:322;;;;;;;;;;-1:-1:-1;22883:322:0;;;;;:::i;:::-;;:::i;21537:438::-;;;:::i;20442:31::-;;;;;;;;;;;;;;;;8018:127;;;;;;;;;;-1:-1:-1;8018:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8119:18:0;8092:7;8119:18;;;;;;;;;;;;8018:127;18401:103;;;;;;;;;;;;;:::i;21319:105::-;;;;;;;;;;-1:-1:-1;21404:12:0;;21386:15;:30;21319:105;;17750:87;;;;;;;;;;-1:-1:-1;17823:6:0;;17750:87;;-1:-1:-1;;;;;17823:6:0;;;4963:51:1;;4951:2;4936:18;17750:87:0;4817:203:1;20261:65:0;;;;;;;;;;;;20300:26;20261:65;;6946:104;;;;;;;;;;;;;:::i;11164:413::-;;;;;;;;;;-1:-1:-1;11164:413:0;;;;;:::i;:::-;;:::i;21432:97::-;;;;;;;;;;;;;:::i;20627:51::-;;;;;;;;;;;;;;;;8358:175;;;;;;;;;;-1:-1:-1;8358:175:0;;;;;:::i;:::-;;:::i;20397:38::-;;;;;;;;;;;;;;;;20333:54;;;;;;;;;;;;;:::i;8596:151::-;;;;;;;;;;-1:-1:-1;8596:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8712:18:0;;;8685:7;8712:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8596:151;20540:42;;;;;;;;;;;;;;;;18659:201;;;;;;;;;;-1:-1:-1;18659:201:0;;;;;:::i;:::-;;:::i;6727:100::-;6781:13;6814:5;6807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6727:100;:::o;22686:189::-;17823:6;;-1:-1:-1;;;;;17823:6:0;4462:10;17970:23;17962:68;;;;-1:-1:-1;;;17962:68:0;;;;;;;:::i;:::-;;;;;;;;;22770:7:::1;22791:8;-1:-1:-1::0;;;;;22783:22:0::1;22813:6;22783:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22769:55;;;22840:2;22835:32;;22851:16;;-1:-1:-1::0;;;22851:16:0::1;;;;;;;;;;;22835:32;22758:117;22686:189:::0;;:::o;8894:169::-;8977:4;8994:39;4462:10;9017:7;9026:6;8994:8;:39::i;:::-;-1:-1:-1;9051:4:0;8894:169;;;;:::o;21983:246::-;4462:10;22030:4;22070:30;;;:16;:30;;;;;;22115:16;;22111:91;;22183:19;;20371:16;20386:1;20300:26;20371:16;:::i;:::-;22154:26;;:12;:26;:::i;:::-;:48;;;;:::i;:::-;22147:55;;;21983:246;:::o;22111:91::-;22220:1;22213:8;;;21983:246;:::o;9545:492::-;9685:4;9702:36;9712:6;9720:9;9731:6;9702:9;:36::i;:::-;-1:-1:-1;;;;;9778:19:0;;9751:24;9778:19;;;:11;:19;;;;;;;;4462:10;9778:33;;;;;;;;9830:26;;;;9822:79;;;;-1:-1:-1;;;9822:79:0;;6975:2:1;9822:79:0;;;6957:21:1;7014:2;6994:18;;;6987:30;7053:34;7033:18;;;7026:62;-1:-1:-1;;;7104:18:1;;;7097:38;7152:19;;9822:79:0;6773:404:1;9822:79:0;9937:57;9946:6;4462:10;9987:6;9968:16;:25;9937:8;:57::i;:::-;-1:-1:-1;10025:4:0;;9545:492;-1:-1:-1;;;;9545:492:0:o;22237:441::-;21103:6;;-1:-1:-1;;;21103:6:0;;;;21099:34;;;21119:14;;-1:-1:-1;;;21119:14:0;;;;;;;;;;;21099:34;21144:6;:13;;-1:-1:-1;;;;21144:13:0;-1:-1:-1;;;21144:13:0;;;22315:12:::1;::::0;22297:15:::1;:30;22293:60;;;22336:17;;-1:-1:-1::0;;;22336:17:0::1;;;;;;;;;;;22293:60;4462:10:::0;22364:20:::1;22387:30:::0;;;:16:::1;:30;::::0;;;;;;22428:46:::1;;22458:16;;-1:-1:-1::0;;;22458:16:0::1;;;;;;;;;;;22428:46;22540:19;::::0;22485:23:::1;::::0;20371:16:::1;20386:1;20300:26;20371:16;:::i;:::-;22511:26;::::0;:12;:26:::1;:::i;:::-;:48;;;;:::i;:::-;4462:10:::0;22603:1:::1;22570:30:::0;;;:16:::1;:30;::::0;;;;:34;22485:74;;-1:-1:-1;22615:55:0::1;::::0;22633:4:::1;::::0;22485:74;22615:9:::1;:55::i;:::-;-1:-1:-1::0;;21180:6:0;:14;;-1:-1:-1;;;;21180:14:0;;;22237:441::o;10446:215::-;4462:10;10534:4;10583:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10583:34:0;;;;;;;;;;10534:4;;10551:80;;10574:7;;10583:47;;10620:10;;10583:47;:::i;:::-;10551:8;:80::i;22883:322::-;17823:6;;-1:-1:-1;;;;;17823:6:0;4462:10;17970:23;17962:68;;;;-1:-1:-1;;;17962:68:0;;;;;;;:::i;:::-;23014:7:::1;:14;22994:9;:16;:34;22990:73;;23037:26;;-1:-1:-1::0;;;23037:26:0::1;;;;;;;;;;;22990:73;23079:9;23074:124;23098:9;:16;23094:1;:20;23074:124;;;23136:50;23154:4;23161:9;23171:1;23161:12;;;;;;;;:::i;:::-;;;;;;;23175:7;23183:1;23175:10;;;;;;;;:::i;:::-;;;;;;;23136:9;:50::i;:::-;23116:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23074:124;;21537:438:::0;21103:6;;-1:-1:-1;;;21103:6:0;;;;21099:34;;;21119:14;;-1:-1:-1;;;21119:14:0;;;;;;;;;;;21099:34;21144:6;:13;;-1:-1:-1;;;;21144:13:0;-1:-1:-1;;;21144:13:0;;;21620:14:::1;::::0;21602:15:::1;:32;::::0;:66:::1;;;21656:12;;21638:15;:30;21602:66;21598:109;;;21691:16;;-1:-1:-1::0;;;21691:16:0::1;;;;;;;;;;;21598:109;4462:10:::0;21722:30:::1;::::0;;;:16:::1;:30;::::0;;;;;21718:69:::1;;21775:12;;21773:14;;;;;:::i;:::-;::::0;;;-1:-1:-1;21718:69:0::1;4462:10:::0;21798:30:::1;::::0;;;:16:::1;:30;::::0;;;;:43;;21832:9:::1;::::0;21798:30;:43:::1;::::0;21832:9;;21798:43:::1;:::i;:::-;;;;;;;;21875:9;21852:19;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;21947:19:0::1;::::0;21902:65:::1;::::0;;21936:9:::1;7761:25:1::0;;7817:2;7802:18;;7795:34;;;;4462:10:0;;21902:65:::1;::::0;7734:18:1;21902:65:0::1;;;;;;;21180:6:::0;:14;;-1:-1:-1;;;;21180:14:0;;;21537:438::o;18401:103::-;17823:6;;-1:-1:-1;;;;;17823:6:0;4462:10;17970:23;17962:68;;;;-1:-1:-1;;;17962:68:0;;;;;;;:::i;:::-;18466:30:::1;18493:1;18466:18;:30::i;:::-;18401:103::o:0;6946:104::-;7002:13;7035:7;7028:14;;;;;:::i;11164:413::-;4462:10;11257:4;11301:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11301:34:0;;;;;;;;;;11354:35;;;;11346:85;;;;-1:-1:-1;;;11346:85:0;;8042:2:1;11346:85:0;;;8024:21:1;8081:2;8061:18;;;8054:30;8120:34;8100:18;;;8093:62;-1:-1:-1;;;8171:18:1;;;8164:35;8216:19;;11346:85:0;7840:401:1;11346:85:0;11467:67;4462:10;11490:7;11518:15;11499:16;:34;11467:8;:67::i;:::-;-1:-1:-1;11565:4:0;;11164:413;-1:-1:-1;;;11164:413:0:o;21432:97::-;17823:6;;-1:-1:-1;;;;;17823:6:0;4462:10;17970:23;17962:68;;;;-1:-1:-1;;;17962:68:0;;;;;;;:::i;:::-;21482:6:::1;::::0;-1:-1:-1;;;21482:6:0;::::1;;;21478:43;;;21515:6;::::0;;-1:-1:-1;;;;21504:17:0;::::1;-1:-1:-1::0;;;21515:6:0;;;::::1;;;21513:8;21504:17:::0;;::::1;;::::0;;21432:97::o;8358:175::-;8444:4;8461:42;4462:10;8485:9;8496:6;8461:9;:42::i;20333:54::-;20371:16;20386:1;20300:26;20371:16;:::i;:::-;20333:54;:::o;18659:201::-;17823:6;;-1:-1:-1;;;;;17823:6:0;4462:10;17970:23;17962:68;;;;-1:-1:-1;;;17962:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18748:22:0;::::1;18740:73;;;::::0;-1:-1:-1;;;18740:73:0;;8448:2:1;18740:73:0::1;::::0;::::1;8430:21:1::0;8487:2;8467:18;;;8460:30;8526:34;8506:18;;;8499:62;-1:-1:-1;;;8577:18:1;;;8570:36;8623:19;;18740:73:0::1;8246:402:1::0;18740:73:0::1;18824:28;18843:8;18824:18;:28::i;:::-;18659:201:::0;:::o;14848:380::-;-1:-1:-1;;;;;14984:19:0;;14976:68;;;;-1:-1:-1;;;14976:68:0;;8855:2:1;14976:68:0;;;8837:21:1;8894:2;8874:18;;;8867:30;8933:34;8913:18;;;8906:62;-1:-1:-1;;;8984:18:1;;;8977:34;9028:19;;14976:68:0;8653:400:1;14976:68:0;-1:-1:-1;;;;;15063:21:0;;15055:68;;;;-1:-1:-1;;;15055:68:0;;9260:2:1;15055:68:0;;;9242:21:1;9299:2;9279:18;;;9272:30;9338:34;9318:18;;;9311:62;-1:-1:-1;;;9389:18:1;;;9382:32;9431:19;;15055:68:0;9058:398:1;15055:68:0;-1:-1:-1;;;;;15136:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15188:32;;1650:25:1;;;15188:32:0;;1623:18:1;15188:32:0;;;;;;;14848:380;;;:::o;12067:733::-;-1:-1:-1;;;;;12207:20:0;;12199:70;;;;-1:-1:-1;;;12199:70:0;;9663:2:1;12199:70:0;;;9645:21:1;9702:2;9682:18;;;9675:30;9741:34;9721:18;;;9714:62;-1:-1:-1;;;9792:18:1;;;9785:35;9837:19;;12199:70:0;9461:401:1;12199:70:0;-1:-1:-1;;;;;12288:23:0;;12280:71;;;;-1:-1:-1;;;12280:71:0;;10069:2:1;12280:71:0;;;10051:21:1;10108:2;10088:18;;;10081:30;10147:34;10127:18;;;10120:62;-1:-1:-1;;;10198:18:1;;;10191:33;10241:19;;12280:71:0;9867:399:1;12280:71:0;-1:-1:-1;;;;;12448:17:0;;12424:21;12448:17;;;;;;;;;;;12484:23;;;;12476:74;;;;-1:-1:-1;;;12476:74:0;;10473:2:1;12476:74:0;;;10455:21:1;10512:2;10492:18;;;10485:30;10551:34;10531:18;;;10524:62;-1:-1:-1;;;10602:18:1;;;10595:36;10648:19;;12476:74:0;10271:402:1;12476:74:0;-1:-1:-1;;;;;12586:17:0;;;:9;:17;;;;;;;;;;;12606:22;;;12586:42;;12650:20;;;;;;;;:30;;12622:6;;12586:9;12650:30;;12622:6;;12650:30;:::i;:::-;;;;;;;;12715:9;-1:-1:-1;;;;;12698:35:0;12707:6;-1:-1:-1;;;;;12698:35:0;;12726:6;12698:35;;;;1650:25:1;;1638:2;1623:18;;1504:177;12698:35:0;;;;;;;;12188:612;12067:733;;;:::o;19020:191::-;19113:6;;;-1:-1:-1;;;;;19130:17:0;;;-1:-1:-1;;;;;;19130:17:0;;;;;;;19163:40;;19113:6;;;19130:17;19113:6;;19163:40;;19094:16;;19163:40;19083:128;19020:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;975:9;962:23;952:33;;1004:38;1038:2;1027:9;1023:18;1004:38;:::i;:::-;994:48;;794:254;;;;;:::o;1053:::-;1121:6;1129;1182:2;1170:9;1161:7;1157:23;1153:32;1150:52;;;1198:1;1195;1188:12;1150:52;1221:29;1240:9;1221:29;:::i;:::-;1211:39;1297:2;1282:18;;;;1269:32;;-1:-1:-1;;;1053:254:1:o;1686:328::-;1763:6;1771;1779;1832:2;1820:9;1811:7;1807:23;1803:32;1800:52;;;1848:1;1845;1838:12;1800:52;1871:29;1890:9;1871:29;:::i;:::-;1861:39;;1919:38;1953:2;1942:9;1938:18;1919:38;:::i;:::-;1909:48;;2004:2;1993:9;1989:18;1976:32;1966:42;;1686:328;;;;;:::o;2208:186::-;2267:6;2320:2;2308:9;2299:7;2295:23;2291:32;2288:52;;;2336:1;2333;2326:12;2288:52;2359:29;2378:9;2359:29;:::i;:::-;2349:39;2208:186;-1:-1:-1;;;2208:186:1:o;2399:127::-;2460:10;2455:3;2451:20;2448:1;2441:31;2491:4;2488:1;2481:15;2515:4;2512:1;2505:15;2531:275;2602:2;2596:9;2667:2;2648:13;;-1:-1:-1;;2644:27:1;2632:40;;2702:18;2687:34;;2723:22;;;2684:62;2681:88;;;2749:18;;:::i;:::-;2785:2;2778:22;2531:275;;-1:-1:-1;2531:275:1:o;2811:183::-;2871:4;2904:18;2896:6;2893:30;2890:56;;;2926:18;;:::i;:::-;-1:-1:-1;2971:1:1;2967:14;2983:4;2963:25;;2811:183::o;2999:662::-;3053:5;3106:3;3099:4;3091:6;3087:17;3083:27;3073:55;;3124:1;3121;3114:12;3073:55;3160:6;3147:20;3186:4;3210:60;3226:43;3266:2;3226:43;:::i;:::-;3210:60;:::i;:::-;3304:15;;;3390:1;3386:10;;;;3374:23;;3370:32;;;3335:12;;;;3414:15;;;3411:35;;;3442:1;3439;3432:12;3411:35;3478:2;3470:6;3466:15;3490:142;3506:6;3501:3;3498:15;3490:142;;;3572:17;;3560:30;;3610:12;;;;3523;;3490:142;;;-1:-1:-1;3650:5:1;2999:662;-1:-1:-1;;;;;;2999:662:1:o;3666:1146::-;3784:6;3792;3845:2;3833:9;3824:7;3820:23;3816:32;3813:52;;;3861:1;3858;3851:12;3813:52;3901:9;3888:23;3930:18;3971:2;3963:6;3960:14;3957:34;;;3987:1;3984;3977:12;3957:34;4025:6;4014:9;4010:22;4000:32;;4070:7;4063:4;4059:2;4055:13;4051:27;4041:55;;4092:1;4089;4082:12;4041:55;4128:2;4115:16;4150:4;4174:60;4190:43;4230:2;4190:43;:::i;4174:60::-;4268:15;;;4350:1;4346:10;;;;4338:19;;4334:28;;;4299:12;;;;4374:19;;;4371:39;;;4406:1;4403;4396:12;4371:39;4430:11;;;;4450:148;4466:6;4461:3;4458:15;4450:148;;;4532:23;4551:3;4532:23;:::i;:::-;4520:36;;4483:12;;;;4576;;;;4450:148;;;4617:5;-1:-1:-1;;4660:18:1;;4647:32;;-1:-1:-1;;4691:16:1;;;4688:36;;;4720:1;4717;4710:12;4688:36;;4743:63;4798:7;4787:8;4776:9;4772:24;4743:63;:::i;:::-;4733:73;;;3666:1146;;;;;:::o;5025:260::-;5093:6;5101;5154:2;5142:9;5133:7;5129:23;5125:32;5122:52;;;5170:1;5167;5160:12;5122:52;5193:29;5212:9;5193:29;:::i;:::-;5183:39;;5241:38;5275:2;5264:9;5260:18;5241:38;:::i;5290:380::-;5369:1;5365:12;;;;5412;;;5433:61;;5487:4;5479:6;5475:17;5465:27;;5433:61;5540:2;5532:6;5529:14;5509:18;5506:38;5503:161;;;5586:10;5581:3;5577:20;5574:1;5567:31;5621:4;5618:1;5611:15;5649:4;5646:1;5639:15;5503:161;;5290:380;;;:::o;5675:356::-;5877:2;5859:21;;;5896:18;;;5889:30;5955:34;5950:2;5935:18;;5928:62;6022:2;6007:18;;5675:356::o;6246:127::-;6307:10;6302:3;6298:20;6295:1;6288:31;6338:4;6335:1;6328:15;6362:4;6359:1;6352:15;6378:217;6418:1;6444;6434:132;;6488:10;6483:3;6479:20;6476:1;6469:31;6523:4;6520:1;6513:15;6551:4;6548:1;6541:15;6434:132;-1:-1:-1;6580:9:1;;6378:217::o;6600:168::-;6640:7;6706:1;6702;6698:6;6694:14;6691:1;6688:21;6683:1;6676:9;6669:17;6665:45;6662:71;;;6713:18;;:::i;:::-;-1:-1:-1;6753:9:1;;6600:168::o;7182:128::-;7222:3;7253:1;7249:6;7246:1;7243:13;7240:39;;;7259:18;;:::i;:::-;-1:-1:-1;7295:9:1;;7182:128::o;7315:127::-;7376:10;7371:3;7367:20;7364:1;7357:31;7407:4;7404:1;7397:15;7431:4;7428:1;7421:15;7447:135;7486:3;-1:-1:-1;;7507:17:1;;7504:43;;;7527:18;;:::i;:::-;-1:-1:-1;7574:1:1;7563:13;;7447:135::o

Swarm Source

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