ETH Price: $3,192.10 (+1.80%)

Token

EPower (POW)
 

Overview

Max Total Supply

20,150.22644927536231883 POW

Holders

35

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
822.551385795111272253 POW

Value
$0.00
0x9096fbdd54318f66f73417ba307903d579d7a995
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:
EPower

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 6: EPower.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;

/**
 * @title EPower V2
 * Twitter: https://x.com/EPower_Team
 * Website: https://epower.fun
 */

import "./ERC20.sol";
import "./Ownable.sol";

contract EPower is ERC20, Ownable {

    uint256 public constant MAX_SUPPLY = 120_000 * 10**18;

    address public miner;

    modifier onlyMiner() {
        require(
            miner != address(0) && 
            miner == _msgSender(), 
            "EPower: caller is not the miner"
        );
        _;
    }

    constructor() ERC20("EPower", "POW") {
        _mint(msg.sender, 20_000 * 10**18);
    }

    function mint(address account, uint256 amount) external onlyMiner {
        _mint(account, amount);
    }

    function _mint(address account, uint256 amount) internal override {
        require(totalSupply() + amount <= MAX_SUPPLY, "EPower: Max supply exceeded");
        super._mint(account, amount);
    }

    function setMiner(address _miner) external onlyOwner {
        miner = _miner;
    }
}

File 1 of 6: Context.sol
// SPDX-License-Identifier: MIT

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 3 of 6: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @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 4 of 6: IERC20.sol
// SPDX-License-Identifier: MIT

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 5 of 6: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @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 6 of 6: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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: zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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":[],"name":"MAX_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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"miner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":[{"internalType":"address","name":"_miner","type":"address"}],"name":"setMiner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b506040518060400160405280600681526020016522a837bbb2b960d11b81525060405180604001604052806003815260200162504f5760e81b815250816003908161005a91906102e9565b50600461006782826102e9565b50505061008061007b61009960201b60201c565b61009d565b6100943369043c33c19375648000006100ee565b6103cd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b691969368974c05b0000008161010360025490565b61010d91906103a8565b11156101605760405162461bcd60e51b815260206004820152601b60248201527f45506f7765723a204d617820737570706c79206578636565646564000000000060448201526064015b60405180910390fd5b61016a828261016e565b5050565b6001600160a01b0382166101c45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610157565b8060025f8282546101d591906103a8565b90915550506001600160a01b0382165f90815260208190526040812080548392906102019084906103a8565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361016a5f83835b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061027a57607f821691505b60208210810361029857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561024d57805f5260205f20601f840160051c810160208510156102c35750805b601f840160051c820191505b818110156102e2575f81556001016102cf565b5050505050565b81516001600160401b0381111561030257610302610252565b610316816103108454610266565b8461029e565b602080601f831160018114610349575f84156103325750858301515b5f19600386901b1c1916600185901b1785556103a0565b5f85815260208120601f198616915b8281101561037757888601518255948401946001909101908401610358565b508582101561039457878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156103c757634e487b7160e01b5f52601160045260245ffd5b92915050565b610cd7806103da5f395ff3fe608060405234801561000f575f80fd5b5060043610610111575f3560e01c806370a082311161009e5780639742ca461161006e5780639742ca4614610237578063a457c2d71461024a578063a9059cbb1461025d578063dd62ed3e14610270578063f2fde38b146102a8575f80fd5b806370a08231146101ee578063715018a6146102165780638da5cb5b1461021e57806395d89b411461022f575f80fd5b8063313ce567116100e4578063313ce5671461017b57806332cb6b0c1461018a578063349dc3291461019b57806339509351146101c657806340c10f19146101d9575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d6102bb565b60405161012a9190610b13565b60405180910390f35b610146610141366004610b63565b61034b565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610b8b565b610361565b6040516012815260200161012a565b61015a691969368974c05b00000081565b6006546101ae906001600160a01b031681565b6040516001600160a01b03909116815260200161012a565b6101466101d4366004610b63565b61040e565b6101ec6101e7366004610b63565b610449565b005b61015a6101fc366004610bc4565b6001600160a01b03165f9081526020819052604090205490565b6101ec6104c7565b6005546001600160a01b03166101ae565b61011d6104fc565b6101ec610245366004610bc4565b61050b565b610146610258366004610b63565b610557565b61014661026b366004610b63565b6105ef565b61015a61027e366004610be4565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101ec6102b6366004610bc4565b6105fb565b6060600380546102ca90610c15565b80601f01602080910402602001604051908101604052809291908181526020018280546102f690610c15565b80156103415780601f1061031857610100808354040283529160200191610341565b820191905f5260205f20905b81548152906001019060200180831161032457829003601f168201915b5050505050905090565b5f61035733848461067f565b5060015b92915050565b5f61036d8484846107a2565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156103f65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610403853385840361067f565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610357918590610444908690610c4d565b61067f565b6006546001600160a01b03161580159061046d57506006546001600160a01b031633145b6104b95760405162461bcd60e51b815260206004820152601f60248201527f45506f7765723a2063616c6c6572206973206e6f7420746865206d696e65720060448201526064016103ed565b6104c3828261096f565b5050565b6005546001600160a01b031633146104f15760405162461bcd60e51b81526004016103ed90610c6c565b6104fa5f6109e6565b565b6060600480546102ca90610c15565b6005546001600160a01b031633146105355760405162461bcd60e51b81526004016103ed90610c6c565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156105d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ed565b6105e5338585840361067f565b5060019392505050565b5f6103573384846107a2565b6005546001600160a01b031633146106255760405162461bcd60e51b81526004016103ed90610c6c565b6001600160a01b0381166106735760405162461bcd60e51b81526020600482015260156024820152744f776e61626c653a207a65726f206164647265737360581b60448201526064016103ed565b61067c816109e6565b50565b6001600160a01b0383166106e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ed565b6001600160a01b0382166107425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ed565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ed565b6001600160a01b0382166108685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ed565b6001600160a01b0383165f90815260208190526040902054818110156108df5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ed565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610915908490610c4d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096191815260200190565b60405180910390a350505050565b691969368974c05b0000008161098460025490565b61098e9190610c4d565b11156109dc5760405162461bcd60e51b815260206004820152601b60248201527f45506f7765723a204d617820737570706c79206578636565646564000000000060448201526064016103ed565b6104c38282610a37565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216610a8d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ed565b8060025f828254610a9e9190610c4d565b90915550506001600160a01b0382165f9081526020819052604081208054839290610aca908490610c4d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b5e575f80fd5b919050565b5f8060408385031215610b74575f80fd5b610b7d83610b48565b946020939093013593505050565b5f805f60608486031215610b9d575f80fd5b610ba684610b48565b9250610bb460208501610b48565b9150604084013590509250925092565b5f60208284031215610bd4575f80fd5b610bdd82610b48565b9392505050565b5f8060408385031215610bf5575f80fd5b610bfe83610b48565b9150610c0c60208401610b48565b90509250929050565b600181811c90821680610c2957607f821691505b602082108103610c4757634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561035b57634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212205538f67f62a83750c9a8b6d99fbbd95c0908cb0fc63295e65309bf8680113d7964736f6c63430008190033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610111575f3560e01c806370a082311161009e5780639742ca461161006e5780639742ca4614610237578063a457c2d71461024a578063a9059cbb1461025d578063dd62ed3e14610270578063f2fde38b146102a8575f80fd5b806370a08231146101ee578063715018a6146102165780638da5cb5b1461021e57806395d89b411461022f575f80fd5b8063313ce567116100e4578063313ce5671461017b57806332cb6b0c1461018a578063349dc3291461019b57806339509351146101c657806340c10f19146101d9575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d6102bb565b60405161012a9190610b13565b60405180910390f35b610146610141366004610b63565b61034b565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610b8b565b610361565b6040516012815260200161012a565b61015a691969368974c05b00000081565b6006546101ae906001600160a01b031681565b6040516001600160a01b03909116815260200161012a565b6101466101d4366004610b63565b61040e565b6101ec6101e7366004610b63565b610449565b005b61015a6101fc366004610bc4565b6001600160a01b03165f9081526020819052604090205490565b6101ec6104c7565b6005546001600160a01b03166101ae565b61011d6104fc565b6101ec610245366004610bc4565b61050b565b610146610258366004610b63565b610557565b61014661026b366004610b63565b6105ef565b61015a61027e366004610be4565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101ec6102b6366004610bc4565b6105fb565b6060600380546102ca90610c15565b80601f01602080910402602001604051908101604052809291908181526020018280546102f690610c15565b80156103415780601f1061031857610100808354040283529160200191610341565b820191905f5260205f20905b81548152906001019060200180831161032457829003601f168201915b5050505050905090565b5f61035733848461067f565b5060015b92915050565b5f61036d8484846107a2565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156103f65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610403853385840361067f565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610357918590610444908690610c4d565b61067f565b6006546001600160a01b03161580159061046d57506006546001600160a01b031633145b6104b95760405162461bcd60e51b815260206004820152601f60248201527f45506f7765723a2063616c6c6572206973206e6f7420746865206d696e65720060448201526064016103ed565b6104c3828261096f565b5050565b6005546001600160a01b031633146104f15760405162461bcd60e51b81526004016103ed90610c6c565b6104fa5f6109e6565b565b6060600480546102ca90610c15565b6005546001600160a01b031633146105355760405162461bcd60e51b81526004016103ed90610c6c565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156105d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ed565b6105e5338585840361067f565b5060019392505050565b5f6103573384846107a2565b6005546001600160a01b031633146106255760405162461bcd60e51b81526004016103ed90610c6c565b6001600160a01b0381166106735760405162461bcd60e51b81526020600482015260156024820152744f776e61626c653a207a65726f206164647265737360581b60448201526064016103ed565b61067c816109e6565b50565b6001600160a01b0383166106e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ed565b6001600160a01b0382166107425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ed565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ed565b6001600160a01b0382166108685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ed565b6001600160a01b0383165f90815260208190526040902054818110156108df5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ed565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610915908490610c4d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096191815260200190565b60405180910390a350505050565b691969368974c05b0000008161098460025490565b61098e9190610c4d565b11156109dc5760405162461bcd60e51b815260206004820152601b60248201527f45506f7765723a204d617820737570706c79206578636565646564000000000060448201526064016103ed565b6104c38282610a37565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216610a8d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ed565b8060025f828254610a9e9190610c4d565b90915550506001600160a01b0382165f9081526020819052604081208054839290610aca908490610c4d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b5e575f80fd5b919050565b5f8060408385031215610b74575f80fd5b610b7d83610b48565b946020939093013593505050565b5f805f60608486031215610b9d575f80fd5b610ba684610b48565b9250610bb460208501610b48565b9150604084013590509250925092565b5f60208284031215610bd4575f80fd5b610bdd82610b48565b9392505050565b5f8060408385031215610bf5575f80fd5b610bfe83610b48565b9150610c0c60208401610b48565b90509250929050565b600181811c90821680610c2957607f821691505b602082108103610c4757634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561035b57634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212205538f67f62a83750c9a8b6d99fbbd95c0908cb0fc63295e65309bf8680113d7964736f6c63430008190033

Deployed Bytecode Sourcemap

203:813:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4160:166;;;;;;:::i;:::-;;:::i;:::-;;;1039:14:6;;1032:22;1014:41;;1002:2;987:18;4160:166:2;874:187:6;3151:106:2;3238:12;;3151:106;;;1212:25:6;;;1200:2;1185:18;3151:106:2;1066:177:6;4793:478:2;;;;;;:::i;:::-;;:::i;3000:91::-;;;3082:2;1723:36:6;;1711:2;1696:18;3000:91:2;1581:184:6;244:53:1;;281:16;244:53;;304:20;;;;;-1:-1:-1;;;;;304:20:1;;;;;;-1:-1:-1;;;;;1934:32:6;;;1916:51;;1904:2;1889:18;304:20:1;1770:203:6;5666:212:2;;;;;;:::i;:::-;;:::i;616:105:1:-;;;;;;:::i;:::-;;:::i;:::-;;3315:125:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3415:18:2;3389:7;3415:18;;;;;;;;;;;;3315:125;1598:92:5;;;:::i;966:85::-;1038:6;;-1:-1:-1;;;;;1038:6:5;966:85;;2274:102:2;;;:::i;930:84:1:-;;;;;;:::i;:::-;;:::i;6365:405:2:-;;;;;;:::i;:::-;;:::i;3643:172::-;;;;;;:::i;:::-;;:::i;3873:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3988:18:2;;;3962:7;3988:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3873:149;1839:172:5;;;;;;:::i;:::-;;:::i;2063:98:2:-;2117:13;2149:5;2142:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:98;:::o;4160:166::-;4243:4;4259:39;666:10:0;4282:7:2;4291:6;4259:8;:39::i;:::-;-1:-1:-1;4315:4:2;4160:166;;;;;:::o;4793:478::-;4929:4;4945:36;4955:6;4963:9;4974:6;4945:9;:36::i;:::-;-1:-1:-1;;;;;5019:19:2;;4992:24;5019:19;;;:11;:19;;;;;;;;666:10:0;5019:33:2;;;;;;;;5070:26;;;;5062:79;;;;-1:-1:-1;;;5062:79:2;;3021:2:6;5062:79:2;;;3003:21:6;3060:2;3040:18;;;3033:30;3099:34;3079:18;;;3072:62;-1:-1:-1;;;3150:18:6;;;3143:38;3198:19;;5062:79:2;;;;;;;;;5175:57;5184:6;666:10:0;5225:6:2;5206:16;:25;5175:8;:57::i;:::-;-1:-1:-1;5260:4:2;;4793:478;-1:-1:-1;;;;4793:478:2:o;5666:212::-;666:10:0;5754:4:2;5802:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5802:34:2;;;;;;;;;;5754:4;;5770:80;;5793:7;;5802:47;;5839:10;;5802:47;:::i;:::-;5770:8;:80::i;616:105:1:-;383:5;;-1:-1:-1;;;;;383:5:1;:19;;;;:57;;-1:-1:-1;419:5:1;;-1:-1:-1;;;;;419:5:1;666:10:0;419:21:1;383:57;362:136;;;;-1:-1:-1;;;362:136:1;;3657:2:6;362:136:1;;;3639:21:6;3696:2;3676:18;;;3669:30;3735:33;3715:18;;;3708:61;3786:18;;362:136:1;3455:355:6;362:136:1;692:22:::1;698:7;707:6;692:5;:22::i;:::-;616:105:::0;;:::o;1598:92:5:-;1038:6;;-1:-1:-1;;;;;1038:6:5;666:10:0;1178:23:5;1170:68;;;;-1:-1:-1;;;1170:68:5;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2274:102:2:-;2330:13;2362:7;2355:14;;;;;:::i;930:84:1:-;1038:6:5;;-1:-1:-1;;;;;1038:6:5;666:10:0;1178:23:5;1170:68;;;;-1:-1:-1;;;1170:68:5;;;;;;;:::i;:::-;993:5:1::1;:14:::0;;-1:-1:-1;;;;;;993:14:1::1;-1:-1:-1::0;;;;;993:14:1;;;::::1;::::0;;;::::1;::::0;;930:84::o;6365:405:2:-;666:10:0;6458:4:2;6501:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6501:34:2;;;;;;;;;;6553:35;;;;6545:85;;;;-1:-1:-1;;;6545:85:2;;4378:2:6;6545:85:2;;;4360:21:6;4417:2;4397:18;;;4390:30;4456:34;4436:18;;;4429:62;-1:-1:-1;;;4507:18:6;;;4500:35;4552:19;;6545:85:2;4176:401:6;6545:85:2;6664:67;666:10:0;6687:7:2;6715:15;6696:16;:34;6664:8;:67::i;:::-;-1:-1:-1;6759:4:2;;6365:405;-1:-1:-1;;;6365:405:2:o;3643:172::-;3729:4;3745:42;666:10:0;3769:9:2;3780:6;3745:9;:42::i;1839:172:5:-;1038:6;;-1:-1:-1;;;;;1038:6:5;666:10:0;1178:23:5;1170:68;;;;-1:-1:-1;;;1170:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:5;::::1;1919:56;;;::::0;-1:-1:-1;;;1919:56:5;;4784:2:6;1919:56:5::1;::::0;::::1;4766:21:6::0;4823:2;4803:18;;;4796:30;-1:-1:-1;;;4842:18:6;;;4835:51;4903:18;;1919:56:5::1;4582:345:6::0;1919:56:5::1;1985:19;1995:8;1985:9;:19::i;:::-;1839:172:::0;:::o;9941:370:2:-;-1:-1:-1;;;;;10072:19:2;;10064:68;;;;-1:-1:-1;;;10064:68:2;;5134:2:6;10064:68:2;;;5116:21:6;5173:2;5153:18;;;5146:30;5212:34;5192:18;;;5185:62;-1:-1:-1;;;5263:18:6;;;5256:34;5307:19;;10064:68:2;4932:400:6;10064:68:2;-1:-1:-1;;;;;10150:21:2;;10142:68;;;;-1:-1:-1;;;10142:68:2;;5539:2:6;10142:68:2;;;5521:21:6;5578:2;5558:18;;;5551:30;5617:34;5597:18;;;5590:62;-1:-1:-1;;;5668:18:6;;;5661:32;5710:19;;10142:68:2;5337:398:6;10142:68:2;-1:-1:-1;;;;;10221:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10272:32;;1212:25:6;;;10272:32:2;;1185:18:6;10272:32:2;;;;;;;9941:370;;;:::o;7244:713::-;-1:-1:-1;;;;;7379:20:2;;7371:70;;;;-1:-1:-1;;;7371:70:2;;5942:2:6;7371:70:2;;;5924:21:6;5981:2;5961:18;;;5954:30;6020:34;6000:18;;;5993:62;-1:-1:-1;;;6071:18:6;;;6064:35;6116:19;;7371:70:2;5740:401:6;7371:70:2;-1:-1:-1;;;;;7459:23:2;;7451:71;;;;-1:-1:-1;;;7451:71:2;;6348:2:6;7451:71:2;;;6330:21:6;6387:2;6367:18;;;6360:30;6426:34;6406:18;;;6399:62;-1:-1:-1;;;6477:18:6;;;6470:33;6520:19;;7451:71:2;6146:399:6;7451:71:2;-1:-1:-1;;;;;7615:17:2;;7591:21;7615:17;;;;;;;;;;;7650:23;;;;7642:74;;;;-1:-1:-1;;;7642:74:2;;6752:2:6;7642:74:2;;;6734:21:6;6791:2;6771:18;;;6764:30;6830:34;6810:18;;;6803:62;-1:-1:-1;;;6881:18:6;;;6874:36;6927:19;;7642:74:2;6550:402:6;7642:74:2;-1:-1:-1;;;;;7750:17:2;;;:9;:17;;;;;;;;;;;7770:22;;;7750:42;;7812:20;;;;;;;;:30;;7786:6;;7750:9;7812:30;;7786:6;;7812:30;:::i;:::-;;;;;;;;7875:9;-1:-1:-1;;;;;7858:35:2;7867:6;-1:-1:-1;;;;;7858:35:2;;7886:6;7858:35;;;;1212:25:6;;1200:2;1185:18;;1066:177;7858:35:2;;;;;;;;7361:596;7244:713;;;:::o;727:197:1:-;281:16;827:6;811:13;3238:12:2;;;3151:106;811:13:1;:22;;;;:::i;:::-;:36;;803:76;;;;-1:-1:-1;;;803:76:1;;7159:2:6;803:76:1;;;7141:21:6;7198:2;7178:18;;;7171:30;7237:29;7217:18;;;7210:57;7284:18;;803:76:1;6957:351:6;803:76:1;889:28;901:7;910:6;889:11;:28::i;2017:169:5:-;2091:6;;;-1:-1:-1;;;;;2107:17:5;;;-1:-1:-1;;;;;;2107:17:5;;;;;;;2139:40;;2091:6;;;2107:17;2091:6;;2139:40;;2072:16;;2139:40;2062:124;2017:169;:::o;8233:389:2:-;-1:-1:-1;;;;;8316:21:2;;8308:65;;;;-1:-1:-1;;;8308:65:2;;7515:2:6;8308:65:2;;;7497:21:6;7554:2;7534:18;;;7527:30;7593:33;7573:18;;;7566:61;7644:18;;8308:65:2;7313:355:6;8308:65:2;8460:6;8444:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8476:18:2;;:9;:18;;;;;;;;;;:28;;8498:6;;8476:9;:28;;8498:6;;8476:28;:::i;:::-;;;;-1:-1:-1;;8519:37:2;;1212:25:6;;;-1:-1:-1;;;;;8519:37:2;;;8536:1;;8519:37;;1200:2:6;1185:18;8519:37:2;;;;;;;616:105:1;;:::o;14:418:6:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:6;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:254::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;859:2;844:18;;;;831:32;;-1:-1:-1;;;615:254:6:o;1248:328::-;1325:6;1333;1341;1394:2;1382:9;1373:7;1369:23;1365:32;1362:52;;;1410:1;1407;1400:12;1362:52;1433:29;1452:9;1433:29;:::i;:::-;1423:39;;1481:38;1515:2;1504:9;1500:18;1481:38;:::i;:::-;1471:48;;1566:2;1555:9;1551:18;1538:32;1528:42;;1248:328;;;;;:::o;1978:186::-;2037:6;2090:2;2078:9;2069:7;2065:23;2061:32;2058:52;;;2106:1;2103;2096:12;2058:52;2129:29;2148:9;2129:29;:::i;:::-;2119:39;1978:186;-1:-1:-1;;;1978:186:6:o;2169:260::-;2237:6;2245;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;2337:29;2356:9;2337:29;:::i;:::-;2327:39;;2385:38;2419:2;2408:9;2404:18;2385:38;:::i;:::-;2375:48;;2169:260;;;;;:::o;2434:380::-;2513:1;2509:12;;;;2556;;;2577:61;;2631:4;2623:6;2619:17;2609:27;;2577:61;2684:2;2676:6;2673:14;2653:18;2650:38;2647:161;;2730:10;2725:3;2721:20;2718:1;2711:31;2765:4;2762:1;2755:15;2793:4;2790:1;2783:15;2647:161;;2434:380;;;:::o;3228:222::-;3293:9;;;3314:10;;;3311:133;;;3366:10;3361:3;3357:20;3354:1;3347:31;3401:4;3398:1;3391:15;3429:4;3426:1;3419:15;3815:356;4017:2;3999:21;;;4036:18;;;4029:30;4095:34;4090:2;4075:18;;4068:62;4162:2;4147:18;;3815:356::o

Swarm Source

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