ETH Price: $2,627.75 (+2.12%)

Token

ALPHA (ALPHA)
 

Overview

Max Total Supply

100,000,000,000 ALPHA

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
961,395,012.989720754516311831 ALPHA

Value
$0.00
0x08db6002f22dfcbf5f4e09038a451c26dccc9ac0
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:
ALPHA

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 300 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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/ALPHA.sol


pragma solidity ^0.8.0;




contract ALPHA is ERC20, ERC20Burnable, Ownable {
    constructor() ERC20("ALPHA", "ALPHA") {
        _mint(msg.sender, 100_000_000_000 * 10 ** decimals());
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }
}

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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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"}]

608060405234801562000010575f80fd5b50604080518082018252600580825264414c50484160d81b60208084018290528451808601909552918452908301529060036200004e838262000267565b5060046200005d828262000267565b5050506200007a62000074620000aa60201b60201c565b620000ae565b620000a4336200008d6012600a6200043e565b6200009e9064174876e80062000455565b620000ff565b62000485565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200015a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546200016d91906200046f565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001f157607f821691505b6020821081036200021057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001c3575f81815260208120601f850160051c810160208610156200023e5750805b601f850160051c820191505b818110156200025f578281556001016200024a565b505050505050565b81516001600160401b03811115620002835762000283620001c8565b6200029b81620002948454620001dc565b8462000216565b602080601f831160018114620002d1575f8415620002b95750858301515b5f19600386901b1c1916600185901b1785556200025f565b5f85815260208120601f198616915b828110156200030157888601518255948401946001909101908401620002e0565b50858210156200031f57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200038357815f19048211156200036757620003676200032f565b808516156200037557918102915b93841c939080029062000348565b509250929050565b5f826200039b5750600162000438565b81620003a957505f62000438565b8160018114620003c25760028114620003cd57620003ed565b600191505062000438565b60ff841115620003e157620003e16200032f565b50506001821b62000438565b5060208310610133831016604e8410600b841016171562000412575081810a62000438565b6200041e838362000343565b805f19048211156200043457620004346200032f565b0290505b92915050565b5f6200044e60ff8416836200038b565b9392505050565b80820281158282048414176200043857620004386200032f565b808201808211156200043857620004386200032f565b610cbd80620004935f395ff3fe608060405234801561000f575f80fd5b5060043610610106575f3560e01c806370a082311161009e57806395d89b411161006e57806395d89b4114610218578063a457c2d714610220578063a9059cbb14610233578063dd62ed3e14610246578063f2fde38b1461027e575f80fd5b806370a08231146101ba578063715018a6146101e257806379cc6790146101ea5780638da5cb5b146101fd575f80fd5b8063313ce567116100d9578063313ce56714610170578063395093511461017f57806340c10f191461019257806342966c68146101a7575f80fd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f80fd5b610112610291565b60405161011f9190610b01565b60405180910390f35b61013b610136366004610b67565b610321565b604051901515815260200161011f565b6002545b60405190815260200161011f565b61013b61016b366004610b8f565b61033a565b6040516012815260200161011f565b61013b61018d366004610b67565b61035d565b6101a56101a0366004610b67565b61039b565b005b6101a56101b5366004610bc8565b6103b1565b61014f6101c8366004610bdf565b6001600160a01b03165f9081526020819052604090205490565b6101a56103be565b6101a56101f8366004610b67565b6103d1565b6005546040516001600160a01b03909116815260200161011f565b6101126103e6565b61013b61022e366004610b67565b6103f5565b61013b610241366004610b67565b61048b565b61014f610254366004610bff565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101a561028c366004610bdf565b610498565b6060600380546102a090610c30565b80601f01602080910402602001604051908101604052809291908181526020018280546102cc90610c30565b80156103175780601f106102ee57610100808354040283529160200191610317565b820191905f5260205f20905b8154815290600101906020018083116102fa57829003601f168201915b5050505050905090565b5f3361032e81858561050e565b60019150505b92915050565b5f33610347858285610632565b6103528585856106c2565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061032e9082908690610396908790610c68565b61050e565b6103a3610864565b6103ad82826108be565b5050565b6103bb338261097b565b50565b6103c6610864565b6103cf5f610aa3565b565b6103dc823383610632565b6103ad828261097b565b6060600480546102a090610c30565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091908381101561047e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610352828686840361050e565b5f3361032e8185856106c2565b6104a0610864565b6001600160a01b0381166105055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610475565b6103bb81610aa3565b6001600160a01b0383166105705760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610475565b6001600160a01b0382166105d15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610475565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106bc57818110156106af5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610475565b6106bc848484840361050e565b50505050565b6001600160a01b0383166107265760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610475565b6001600160a01b0382166107885760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610475565b6001600160a01b0383165f90815260208190526040902054818110156107ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610475565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106bc565b6005546001600160a01b031633146103cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610475565b6001600160a01b0382166109145760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610475565b8060025f8282546109259190610c68565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166109db5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610475565b6001600160a01b0382165f9081526020819052604090205481811015610a4e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610475565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610625565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6020808352835180828501525f5b81811015610b2c57858101830151858201604001528201610b10565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b62575f80fd5b919050565b5f8060408385031215610b78575f80fd5b610b8183610b4c565b946020939093013593505050565b5f805f60608486031215610ba1575f80fd5b610baa84610b4c565b9250610bb860208501610b4c565b9150604084013590509250925092565b5f60208284031215610bd8575f80fd5b5035919050565b5f60208284031215610bef575f80fd5b610bf882610b4c565b9392505050565b5f8060408385031215610c10575f80fd5b610c1983610b4c565b9150610c2760208401610b4c565b90509250929050565b600181811c90821680610c4457607f821691505b602082108103610c6257634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561033457634e487b7160e01b5f52601160045260245ffdfea26469706673582212206082d08c201b2ba61ebe854896f631f5dd7a21151144f5fae2d623402780027364736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610106575f3560e01c806370a082311161009e57806395d89b411161006e57806395d89b4114610218578063a457c2d714610220578063a9059cbb14610233578063dd62ed3e14610246578063f2fde38b1461027e575f80fd5b806370a08231146101ba578063715018a6146101e257806379cc6790146101ea5780638da5cb5b146101fd575f80fd5b8063313ce567116100d9578063313ce56714610170578063395093511461017f57806340c10f191461019257806342966c68146101a7575f80fd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f80fd5b610112610291565b60405161011f9190610b01565b60405180910390f35b61013b610136366004610b67565b610321565b604051901515815260200161011f565b6002545b60405190815260200161011f565b61013b61016b366004610b8f565b61033a565b6040516012815260200161011f565b61013b61018d366004610b67565b61035d565b6101a56101a0366004610b67565b61039b565b005b6101a56101b5366004610bc8565b6103b1565b61014f6101c8366004610bdf565b6001600160a01b03165f9081526020819052604090205490565b6101a56103be565b6101a56101f8366004610b67565b6103d1565b6005546040516001600160a01b03909116815260200161011f565b6101126103e6565b61013b61022e366004610b67565b6103f5565b61013b610241366004610b67565b61048b565b61014f610254366004610bff565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101a561028c366004610bdf565b610498565b6060600380546102a090610c30565b80601f01602080910402602001604051908101604052809291908181526020018280546102cc90610c30565b80156103175780601f106102ee57610100808354040283529160200191610317565b820191905f5260205f20905b8154815290600101906020018083116102fa57829003601f168201915b5050505050905090565b5f3361032e81858561050e565b60019150505b92915050565b5f33610347858285610632565b6103528585856106c2565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061032e9082908690610396908790610c68565b61050e565b6103a3610864565b6103ad82826108be565b5050565b6103bb338261097b565b50565b6103c6610864565b6103cf5f610aa3565b565b6103dc823383610632565b6103ad828261097b565b6060600480546102a090610c30565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091908381101561047e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610352828686840361050e565b5f3361032e8185856106c2565b6104a0610864565b6001600160a01b0381166105055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610475565b6103bb81610aa3565b6001600160a01b0383166105705760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610475565b6001600160a01b0382166105d15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610475565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106bc57818110156106af5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610475565b6106bc848484840361050e565b50505050565b6001600160a01b0383166107265760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610475565b6001600160a01b0382166107885760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610475565b6001600160a01b0383165f90815260208190526040902054818110156107ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610475565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106bc565b6005546001600160a01b031633146103cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610475565b6001600160a01b0382166109145760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610475565b8060025f8282546109259190610c68565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166109db5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610475565b6001600160a01b0382165f9081526020819052604090205481811015610a4e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610475565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610625565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6020808352835180828501525f5b81811015610b2c57858101830151858201604001528201610b10565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b62575f80fd5b919050565b5f8060408385031215610b78575f80fd5b610b8183610b4c565b946020939093013593505050565b5f805f60608486031215610ba1575f80fd5b610baa84610b4c565b9250610bb860208501610b4c565b9150604084013590509250925092565b5f60208284031215610bd8575f80fd5b5035919050565b5f60208284031215610bef575f80fd5b610bf882610b4c565b9392505050565b5f8060408385031215610c10575f80fd5b610c1983610b4c565b9150610c2760208401610b4c565b90509250929050565b600181811c90821680610c4457607f821691505b602082108103610c6257634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561033457634e487b7160e01b5f52601160045260245ffdfea26469706673582212206082d08c201b2ba61ebe854896f631f5dd7a21151144f5fae2d623402780027364736f6c63430008140033

Deployed Bytecode Sourcemap

21763:271:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9344:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11695:201;;;;;;:::i;:::-;;:::i;:::-;;;1192:14:1;;1185:22;1167:41;;1155:2;1140:18;11695:201:0;1027:187:1;10464:108:0;10552:12;;10464:108;;;1365:25:1;;;1353:2;1338:18;10464:108:0;1219:177:1;12476:295:0;;;;;;:::i;:::-;;:::i;10306:93::-;;;10389:2;1876:36:1;;1864:2;1849:18;10306:93:0;1734:184:1;13180:238:0;;;;;;:::i;:::-;;:::i;21936:95::-;;;;;;:::i;:::-;;:::i;:::-;;21115:91;;;;;;:::i;:::-;;:::i;10635:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10736:18:0;10709:7;10736:18;;;;;;;;;;;;10635:127;2769:103;;;:::i;21525:164::-;;;;;;:::i;:::-;;:::i;2128:87::-;2201:6;;2128:87;;-1:-1:-1;;;;;2201:6:0;;;2445:74:1;;2433:2;2418:18;2128:87:0;2299:226:1;9563:104:0;;;:::i;13921:436::-;;;;;;:::i;:::-;;:::i;10968:193::-;;;;;;:::i;:::-;;:::i;11224:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11340:18:0;;;11313:7;11340:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11224:151;3027:201;;;;;;:::i;:::-;;:::i;9344:100::-;9398:13;9431:5;9424:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9344:100;:::o;11695:201::-;11778:4;759:10;11834:32;759:10;11850:7;11859:6;11834:8;:32::i;:::-;11884:4;11877:11;;;11695:201;;;;;:::o;12476:295::-;12607:4;759:10;12665:38;12681:4;759:10;12696:6;12665:15;:38::i;:::-;12714:27;12724:4;12730:2;12734:6;12714:9;:27::i;:::-;-1:-1:-1;12759:4:0;;12476:295;-1:-1:-1;;;;12476:295:0:o;13180:238::-;759:10;13268:4;11340:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11340:27:0;;;;;;;;;;13268:4;;759:10;13324:64;;759:10;;11340:27;;13349:38;;13377:10;;13349:38;:::i;:::-;13324:8;:64::i;21936:95::-;2014:13;:11;:13::i;:::-;22006:17:::1;22012:2;22016:6;22006:5;:17::i;:::-;21936:95:::0;;:::o;21115:91::-;21171:27;759:10;21191:6;21171:5;:27::i;:::-;21115:91;:::o;2769:103::-;2014:13;:11;:13::i;:::-;2834:30:::1;2861:1;2834:18;:30::i;:::-;2769:103::o:0;21525:164::-;21602:46;21618:7;759:10;21641:6;21602:15;:46::i;:::-;21659:22;21665:7;21674:6;21659:5;:22::i;9563:104::-;9619:13;9652:7;9645:14;;;;;:::i;13921:436::-;759:10;14014:4;11340:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11340:27:0;;;;;;;;;;14014:4;;759:10;14161:15;14141:16;:35;;14133:85;;;;-1:-1:-1;;;14133:85:0;;3609:2:1;14133:85:0;;;3591:21:1;3648:2;3628:18;;;3621:30;3687:34;3667:18;;;3660:62;-1:-1:-1;;;3738:18:1;;;3731:35;3783:19;;14133:85:0;;;;;;;;;14254:60;14263:5;14270:7;14298:15;14279:16;:34;14254:8;:60::i;10968:193::-;11047:4;759:10;11103:28;759:10;11120:2;11124:6;11103:9;:28::i;3027:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3116:22:0;::::1;3108:73;;;::::0;-1:-1:-1;;;3108:73:0;;4015:2:1;3108:73:0::1;::::0;::::1;3997:21:1::0;4054:2;4034:18;;;4027:30;4093:34;4073:18;;;4066:62;-1:-1:-1;;;4144:18:1;;;4137:36;4190:19;;3108:73:0::1;3813:402:1::0;3108:73:0::1;3192:28;3211:8;3192:18;:28::i;17948:380::-:0;-1:-1:-1;;;;;18084:19:0;;18076:68;;;;-1:-1:-1;;;18076:68:0;;4422:2:1;18076:68:0;;;4404:21:1;4461:2;4441:18;;;4434:30;4500:34;4480:18;;;4473:62;-1:-1:-1;;;4551:18:1;;;4544:34;4595:19;;18076:68:0;4220:400:1;18076:68:0;-1:-1:-1;;;;;18163:21:0;;18155:68;;;;-1:-1:-1;;;18155:68:0;;4827:2:1;18155:68:0;;;4809:21:1;4866:2;4846:18;;;4839:30;4905:34;4885:18;;;4878:62;-1:-1:-1;;;4956:18:1;;;4949:32;4998:19;;18155:68:0;4625:398:1;18155:68:0;-1:-1:-1;;;;;18236:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18288:32;;1365:25:1;;;18288:32:0;;1338:18:1;18288:32:0;;;;;;;;17948:380;;;:::o;18619:453::-;-1:-1:-1;;;;;11340:18:0;;;18754:24;11340:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;18821:37:0;;18817:248;;18903:6;18883:16;:26;;18875:68;;;;-1:-1:-1;;;18875:68:0;;5230:2:1;18875:68:0;;;5212:21:1;5269:2;5249:18;;;5242:30;5308:31;5288:18;;;5281:59;5357:18;;18875:68:0;5028:353:1;18875:68:0;18987:51;18996:5;19003:7;19031:6;19012:16;:25;18987:8;:51::i;:::-;18743:329;18619:453;;;:::o;14827:840::-;-1:-1:-1;;;;;14958:18:0;;14950:68;;;;-1:-1:-1;;;14950:68:0;;5588:2:1;14950:68:0;;;5570:21:1;5627:2;5607:18;;;5600:30;5666:34;5646:18;;;5639:62;-1:-1:-1;;;5717:18:1;;;5710:35;5762:19;;14950:68:0;5386:401:1;14950:68:0;-1:-1:-1;;;;;15037:16:0;;15029:64;;;;-1:-1:-1;;;15029:64:0;;5994:2:1;15029:64:0;;;5976:21:1;6033:2;6013:18;;;6006:30;6072:34;6052:18;;;6045:62;-1:-1:-1;;;6123:18:1;;;6116:33;6166:19;;15029:64:0;5792:399:1;15029:64:0;-1:-1:-1;;;;;15179:15:0;;15157:19;15179:15;;;;;;;;;;;15213:21;;;;15205:72;;;;-1:-1:-1;;;15205:72:0;;6398:2:1;15205:72:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:36;6573:19;;15205:72:0;6196:402:1;15205:72:0;-1:-1:-1;;;;;15313:15:0;;;:9;:15;;;;;;;;;;;15331:20;;;15313:38;;15531:13;;;;;;;;;;:23;;;;;;15583:26;;1365:25:1;;;15531:13:0;;15583:26;;1338:18:1;15583:26:0;;;;;;;15622:37;16835:675;2293:132;2201:6;;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;6805:2:1;2349:68:0;;;6787:21:1;;;6824:18;;;6817:30;6883:34;6863:18;;;6856:62;6935:18;;2349:68:0;6603:356:1;15954:548:0;-1:-1:-1;;;;;16038:21:0;;16030:65;;;;-1:-1:-1;;;16030:65:0;;7166:2:1;16030:65:0;;;7148:21:1;7205:2;7185:18;;;7178:30;7244:33;7224:18;;;7217:61;7295:18;;16030:65:0;6964:355:1;16030:65:0;16186:6;16170:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16341:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16396:37;1365:25:1;;;16396:37:0;;1338:18:1;16396:37:0;;;;;;;21936:95;;:::o;16835:675::-;-1:-1:-1;;;;;16919:21:0;;16911:67;;;;-1:-1:-1;;;16911:67:0;;7526:2:1;16911:67:0;;;7508:21:1;7565:2;7545:18;;;7538:30;7604:34;7584:18;;;7577:62;-1:-1:-1;;;7655:18:1;;;7648:31;7696:19;;16911:67:0;7324:397:1;16911:67:0;-1:-1:-1;;;;;17078:18:0;;17053:22;17078:18;;;;;;;;;;;17115:24;;;;17107:71;;;;-1:-1:-1;;;17107:71:0;;7928:2:1;17107:71:0;;;7910:21:1;7967:2;7947:18;;;7940:30;8006:34;7986:18;;;7979:62;-1:-1:-1;;;8057:18:1;;;8050:32;8099:19;;17107:71:0;7726:398:1;17107:71:0;-1:-1:-1;;;;;17214:18:0;;:9;:18;;;;;;;;;;;17235:23;;;17214:44;;17353:12;:22;;;;;;;17404:37;1365:25:1;;;17214:9:0;;:18;17404:37;;1338:18:1;17404:37:0;1219:177:1;3388:191:0;3481:6;;;-1:-1:-1;;;;;3498:17:0;;;-1:-1:-1;;3498:17:0;;;;;;;3531:40;;3481:6;;;3498:17;3481:6;;3531:40;;3462:16;;3531:40;3451:128;3388:191;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:196::-;635:20;;-1:-1:-1;;;;;684:54:1;;674:65;;664:93;;753:1;750;743:12;664:93;567:196;;;:::o;768:254::-;836:6;844;897:2;885:9;876:7;872:23;868:32;865:52;;;913:1;910;903:12;865:52;936:29;955:9;936:29;:::i;:::-;926:39;1012:2;997:18;;;;984:32;;-1:-1:-1;;;768:254:1:o;1401:328::-;1478:6;1486;1494;1547:2;1535:9;1526:7;1522:23;1518:32;1515:52;;;1563:1;1560;1553:12;1515:52;1586:29;1605:9;1586:29;:::i;:::-;1576:39;;1634:38;1668:2;1657:9;1653:18;1634:38;:::i;:::-;1624:48;;1719:2;1708:9;1704:18;1691:32;1681:42;;1401:328;;;;;:::o;1923:180::-;1982:6;2035:2;2023:9;2014:7;2010:23;2006:32;2003:52;;;2051:1;2048;2041:12;2003:52;-1:-1:-1;2074:23:1;;1923:180;-1:-1:-1;1923:180:1:o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:1:o;2530:260::-;2598:6;2606;2659:2;2647:9;2638:7;2634:23;2630:32;2627:52;;;2675:1;2672;2665:12;2627:52;2698:29;2717:9;2698:29;:::i;:::-;2688:39;;2746:38;2780:2;2769:9;2765:18;2746:38;:::i;:::-;2736:48;;2530:260;;;;;:::o;2795:380::-;2874:1;2870:12;;;;2917;;;2938:61;;2992:4;2984:6;2980:17;2970:27;;2938:61;3045:2;3037:6;3034:14;3014:18;3011:38;3008:161;;3091:10;3086:3;3082:20;3079:1;3072:31;3126:4;3123:1;3116:15;3154:4;3151:1;3144:15;3008:161;;2795:380;;;:::o;3180:222::-;3245:9;;;3266:10;;;3263:133;;;3318:10;3313:3;3309:20;3306:1;3299:31;3353:4;3350:1;3343:15;3381:4;3378:1;3371:15

Swarm Source

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