ETH Price: $3,001.56 (-2.42%)
Gas: 6 Gwei

Token

GPEX (GPX)
 

Overview

Max Total Supply

1,000,000,000 GPX

Holders

1,196

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

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:
GPEX

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 7: GPEX.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

contract GPEX is ERC20("GPEX", "GPX"), Ownable {
    using SafeMath for uint256;

    event Burn(uint256 amount);

    uint8 public constant DECIMALS=8;
    uint256 public constant INITIAL_SUPPLY=1000000000*(10**uint256(DECIMALS));
    bool public mintingFinished=false;

    constructor () {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function burn(uint256 amount) onlyOwner public {
        uint256 amount2=amount*(10**uint256(DECIMALS));
        _burn(msg.sender,amount2);

        emit Burn(amount);
    }
}

File 1 of 7: 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 2 of 7: 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 guidelines: functions revert instead
 * of 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 8;
    }

    /**
     * @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 tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);
    }

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

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

    /**
     * @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 to 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 { }
}

File 4 of 7: 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 7: 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 7: 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 7 of 7: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","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":"DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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"}]

60806040526000600560146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f47504558000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47505800000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b19291906200032b565b508060049080519060200190620000ca9291906200032b565b5050506000620000df620001b960201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001b333600860ff16600a62000196919062000536565b633b9aca00620001a7919062000673565b620001c160201b60201c565b6200077f565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000234576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022b906200042e565b60405180910390fd5b62000248600083836200032660201b60201c565b80600260008282546200025c91906200047e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002b391906200047e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031a919062000450565b60405180910390a35050565b505050565b8280546200033990620006de565b90600052602060002090601f0160209004810192826200035d5760008555620003a9565b82601f106200037857805160ff1916838001178555620003a9565b82800160010185558215620003a9579182015b82811115620003a85782518255916020019190600101906200038b565b5b509050620003b89190620003bc565b5090565b5b80821115620003d7576000816000905550600101620003bd565b5090565b6000620003ea601f836200046d565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200042881620006d4565b82525050565b600060208201905081810360008301526200044981620003db565b9050919050565b60006020820190506200046760008301846200041d565b92915050565b600082825260208201905092915050565b60006200048b82620006d4565b91506200049883620006d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004d057620004cf62000714565b5b828201905092915050565b6000808291508390505b60018511156200052d5780860481111562000505576200050462000714565b5b6001851615620005155780820291505b8081029050620005258562000772565b9450620004e5565b94509492505050565b60006200054382620006d4565b91506200055083620006d4565b92506200057f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000587565b905092915050565b6000826200059957600190506200066c565b81620005a957600090506200066c565b8160018114620005c25760028114620005cd5762000603565b60019150506200066c565b60ff841115620005e257620005e162000714565b5b8360020a915084821115620005fc57620005fb62000714565b5b506200066c565b5060208310610133831016604e8410600b84101617156200063d5782820a90508381111562000637576200063662000714565b5b6200066c565b6200064c8484846001620004db565b9250905081840481111562000666576200066562000714565b5b81810290505b9392505050565b60006200068082620006d4565b91506200068d83620006d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006c957620006c862000714565b5b828202905092915050565b6000819050919050565b60006002820490506001821680620006f757607f821691505b602082108114156200070e576200070d62000743565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611ea3806200078f6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a257806395d89b411161007157806395d89b41146102d3578063a457c2d7146102f1578063a9059cbb14610321578063dd62ed3e14610351578063f2fde38b1461038157610116565b806342966c681461025f57806370a082311461027b578063715018a6146102ab5780638da5cb5b146102b557610116565b806323b872dd116100e957806323b872dd146101a55780632e0f2625146101d55780632ff2e9dc146101f3578063313ce56714610211578063395093511461022f57610116565b806305d2035b1461011b57806306fdde0314610139578063095ea7b31461015757806318160ddd14610187575b600080fd5b61012361039d565b60405161013091906118c5565b60405180910390f35b6101416103b0565b60405161014e91906118e0565b60405180910390f35b610171600480360381019061016c9190611394565b610442565b60405161017e91906118c5565b60405180910390f35b61018f610460565b60405161019c9190611a62565b60405180910390f35b6101bf60048036038101906101ba9190611345565b61046a565b6040516101cc91906118c5565b60405180910390f35b6101dd610562565b6040516101ea9190611a7d565b60405180910390f35b6101fb610567565b6040516102089190611a62565b60405180910390f35b61021961058a565b6040516102269190611a7d565b60405180910390f35b61024960048036038101906102449190611394565b610593565b60405161025691906118c5565b60405180910390f35b610279600480360381019061027491906113d0565b61063f565b005b610295600480360381019061029091906112e0565b610720565b6040516102a29190611a62565b60405180910390f35b6102b3610768565b005b6102bd6108a5565b6040516102ca91906118aa565b60405180910390f35b6102db6108cf565b6040516102e891906118e0565b60405180910390f35b61030b60048036038101906103069190611394565b610961565b60405161031891906118c5565b60405180910390f35b61033b60048036038101906103369190611394565b610a4c565b60405161034891906118c5565b60405180910390f35b61036b60048036038101906103669190611309565b610a6a565b6040516103789190611a62565b60405180910390f35b61039b600480360381019061039691906112e0565b610af1565b005b600560149054906101000a900460ff1681565b6060600380546103bf90611d91565b80601f01602080910402602001604051908101604052809291908181526020018280546103eb90611d91565b80156104385780601f1061040d57610100808354040283529160200191610438565b820191906000526020600020905b81548152906001019060200180831161041b57829003601f168201915b5050505050905090565b600061045661044f610c9d565b8484610ca5565b6001905092915050565b6000600254905090565b6000610477848484610e70565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104c2610c9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610539906119a2565b60405180910390fd5b6105568561054e610c9d565b858403610ca5565b60019150509392505050565b600881565b600860ff16600a6105789190611b5d565b633b9aca006105879190611c7b565b81565b60006008905090565b60006106356105a0610c9d565b8484600160006105ae610c9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106309190611ab4565b610ca5565b6001905092915050565b610647610c9d565b73ffffffffffffffffffffffffffffffffffffffff166106656108a5565b73ffffffffffffffffffffffffffffffffffffffff16146106bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b2906119c2565b60405180910390fd5b6000600860ff16600a6106ce9190611b5d565b826106d99190611c7b565b90506106e533826110e6565b7fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb826040516107149190611a62565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610770610c9d565b73ffffffffffffffffffffffffffffffffffffffff1661078e6108a5565b73ffffffffffffffffffffffffffffffffffffffff16146107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db906119c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108de90611d91565b80601f016020809104026020016040519081016040528092919081815260200182805461090a90611d91565b80156109575780601f1061092c57610100808354040283529160200191610957565b820191906000526020600020905b81548152906001019060200180831161093a57829003601f168201915b5050505050905090565b60008060016000610970610c9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490611a42565b60405180910390fd5b610a41610a38610c9d565b85858403610ca5565b600191505092915050565b6000610a60610a59610c9d565b8484610e70565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610af9610c9d565b73ffffffffffffffffffffffffffffffffffffffff16610b176108a5565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b64906119c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611942565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90611a22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90611962565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e639190611a62565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790611a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790611902565b60405180910390fd5b610f5b8383836112b1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890611982565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110749190611ab4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d89190611a62565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d906119e2565b60405180910390fd5b611162826000836112b1565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90611922565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461123f9190611cd5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a49190611a62565b60405180910390a3505050565b505050565b6000813590506112c581611e3f565b92915050565b6000813590506112da81611e56565b92915050565b6000602082840312156112f257600080fd5b6000611300848285016112b6565b91505092915050565b6000806040838503121561131c57600080fd5b600061132a858286016112b6565b925050602061133b858286016112b6565b9150509250929050565b60008060006060848603121561135a57600080fd5b6000611368868287016112b6565b9350506020611379868287016112b6565b925050604061138a868287016112cb565b9150509250925092565b600080604083850312156113a757600080fd5b60006113b5858286016112b6565b92505060206113c6858286016112cb565b9150509250929050565b6000602082840312156113e257600080fd5b60006113f0848285016112cb565b91505092915050565b61140281611d09565b82525050565b61141181611d1b565b82525050565b600061142282611a98565b61142c8185611aa3565b935061143c818560208601611d5e565b61144581611e21565b840191505092915050565b600061145d602383611aa3565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c3602283611aa3565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611529602683611aa3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158f602283611aa3565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115f5602683611aa3565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061165b602883611aa3565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116c1602083611aa3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611701602183611aa3565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611767602583611aa3565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117cd602483611aa3565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611833602583611aa3565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61189581611d47565b82525050565b6118a481611d51565b82525050565b60006020820190506118bf60008301846113f9565b92915050565b60006020820190506118da6000830184611408565b92915050565b600060208201905081810360008301526118fa8184611417565b905092915050565b6000602082019050818103600083015261191b81611450565b9050919050565b6000602082019050818103600083015261193b816114b6565b9050919050565b6000602082019050818103600083015261195b8161151c565b9050919050565b6000602082019050818103600083015261197b81611582565b9050919050565b6000602082019050818103600083015261199b816115e8565b9050919050565b600060208201905081810360008301526119bb8161164e565b9050919050565b600060208201905081810360008301526119db816116b4565b9050919050565b600060208201905081810360008301526119fb816116f4565b9050919050565b60006020820190508181036000830152611a1b8161175a565b9050919050565b60006020820190508181036000830152611a3b816117c0565b9050919050565b60006020820190508181036000830152611a5b81611826565b9050919050565b6000602082019050611a77600083018461188c565b92915050565b6000602082019050611a92600083018461189b565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611abf82611d47565b9150611aca83611d47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611aff57611afe611dc3565b5b828201905092915050565b6000808291508390505b6001851115611b5457808604811115611b3057611b2f611dc3565b5b6001851615611b3f5780820291505b8081029050611b4d85611e32565b9450611b14565b94509492505050565b6000611b6882611d47565b9150611b7383611d47565b9250611ba07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611ba8565b905092915050565b600082611bb85760019050611c74565b81611bc65760009050611c74565b8160018114611bdc5760028114611be657611c15565b6001915050611c74565b60ff841115611bf857611bf7611dc3565b5b8360020a915084821115611c0f57611c0e611dc3565b5b50611c74565b5060208310610133831016604e8410600b8410161715611c4a5782820a905083811115611c4557611c44611dc3565b5b611c74565b611c578484846001611b0a565b92509050818404811115611c6e57611c6d611dc3565b5b81810290505b9392505050565b6000611c8682611d47565b9150611c9183611d47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611cca57611cc9611dc3565b5b828202905092915050565b6000611ce082611d47565b9150611ceb83611d47565b925082821015611cfe57611cfd611dc3565b5b828203905092915050565b6000611d1482611d27565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d7c578082015181840152602081019050611d61565b83811115611d8b576000848401525b50505050565b60006002820490506001821680611da957607f821691505b60208210811415611dbd57611dbc611df2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b611e4881611d09565b8114611e5357600080fd5b50565b611e5f81611d47565b8114611e6a57600080fd5b5056fea2646970667358221220faea58fc71136a4f7d69d816a822e480f8bef1cf633f0728469fccdf115d96b964736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a257806395d89b411161007157806395d89b41146102d3578063a457c2d7146102f1578063a9059cbb14610321578063dd62ed3e14610351578063f2fde38b1461038157610116565b806342966c681461025f57806370a082311461027b578063715018a6146102ab5780638da5cb5b146102b557610116565b806323b872dd116100e957806323b872dd146101a55780632e0f2625146101d55780632ff2e9dc146101f3578063313ce56714610211578063395093511461022f57610116565b806305d2035b1461011b57806306fdde0314610139578063095ea7b31461015757806318160ddd14610187575b600080fd5b61012361039d565b60405161013091906118c5565b60405180910390f35b6101416103b0565b60405161014e91906118e0565b60405180910390f35b610171600480360381019061016c9190611394565b610442565b60405161017e91906118c5565b60405180910390f35b61018f610460565b60405161019c9190611a62565b60405180910390f35b6101bf60048036038101906101ba9190611345565b61046a565b6040516101cc91906118c5565b60405180910390f35b6101dd610562565b6040516101ea9190611a7d565b60405180910390f35b6101fb610567565b6040516102089190611a62565b60405180910390f35b61021961058a565b6040516102269190611a7d565b60405180910390f35b61024960048036038101906102449190611394565b610593565b60405161025691906118c5565b60405180910390f35b610279600480360381019061027491906113d0565b61063f565b005b610295600480360381019061029091906112e0565b610720565b6040516102a29190611a62565b60405180910390f35b6102b3610768565b005b6102bd6108a5565b6040516102ca91906118aa565b60405180910390f35b6102db6108cf565b6040516102e891906118e0565b60405180910390f35b61030b60048036038101906103069190611394565b610961565b60405161031891906118c5565b60405180910390f35b61033b60048036038101906103369190611394565b610a4c565b60405161034891906118c5565b60405180910390f35b61036b60048036038101906103669190611309565b610a6a565b6040516103789190611a62565b60405180910390f35b61039b600480360381019061039691906112e0565b610af1565b005b600560149054906101000a900460ff1681565b6060600380546103bf90611d91565b80601f01602080910402602001604051908101604052809291908181526020018280546103eb90611d91565b80156104385780601f1061040d57610100808354040283529160200191610438565b820191906000526020600020905b81548152906001019060200180831161041b57829003601f168201915b5050505050905090565b600061045661044f610c9d565b8484610ca5565b6001905092915050565b6000600254905090565b6000610477848484610e70565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104c2610c9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610539906119a2565b60405180910390fd5b6105568561054e610c9d565b858403610ca5565b60019150509392505050565b600881565b600860ff16600a6105789190611b5d565b633b9aca006105879190611c7b565b81565b60006008905090565b60006106356105a0610c9d565b8484600160006105ae610c9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106309190611ab4565b610ca5565b6001905092915050565b610647610c9d565b73ffffffffffffffffffffffffffffffffffffffff166106656108a5565b73ffffffffffffffffffffffffffffffffffffffff16146106bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b2906119c2565b60405180910390fd5b6000600860ff16600a6106ce9190611b5d565b826106d99190611c7b565b90506106e533826110e6565b7fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb826040516107149190611a62565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610770610c9d565b73ffffffffffffffffffffffffffffffffffffffff1661078e6108a5565b73ffffffffffffffffffffffffffffffffffffffff16146107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db906119c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108de90611d91565b80601f016020809104026020016040519081016040528092919081815260200182805461090a90611d91565b80156109575780601f1061092c57610100808354040283529160200191610957565b820191906000526020600020905b81548152906001019060200180831161093a57829003601f168201915b5050505050905090565b60008060016000610970610c9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490611a42565b60405180910390fd5b610a41610a38610c9d565b85858403610ca5565b600191505092915050565b6000610a60610a59610c9d565b8484610e70565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610af9610c9d565b73ffffffffffffffffffffffffffffffffffffffff16610b176108a5565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b64906119c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611942565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90611a22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90611962565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e639190611a62565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790611a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790611902565b60405180910390fd5b610f5b8383836112b1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890611982565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110749190611ab4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d89190611a62565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d906119e2565b60405180910390fd5b611162826000836112b1565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90611922565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461123f9190611cd5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a49190611a62565b60405180910390a3505050565b505050565b6000813590506112c581611e3f565b92915050565b6000813590506112da81611e56565b92915050565b6000602082840312156112f257600080fd5b6000611300848285016112b6565b91505092915050565b6000806040838503121561131c57600080fd5b600061132a858286016112b6565b925050602061133b858286016112b6565b9150509250929050565b60008060006060848603121561135a57600080fd5b6000611368868287016112b6565b9350506020611379868287016112b6565b925050604061138a868287016112cb565b9150509250925092565b600080604083850312156113a757600080fd5b60006113b5858286016112b6565b92505060206113c6858286016112cb565b9150509250929050565b6000602082840312156113e257600080fd5b60006113f0848285016112cb565b91505092915050565b61140281611d09565b82525050565b61141181611d1b565b82525050565b600061142282611a98565b61142c8185611aa3565b935061143c818560208601611d5e565b61144581611e21565b840191505092915050565b600061145d602383611aa3565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c3602283611aa3565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611529602683611aa3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158f602283611aa3565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115f5602683611aa3565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061165b602883611aa3565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116c1602083611aa3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611701602183611aa3565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611767602583611aa3565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117cd602483611aa3565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611833602583611aa3565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61189581611d47565b82525050565b6118a481611d51565b82525050565b60006020820190506118bf60008301846113f9565b92915050565b60006020820190506118da6000830184611408565b92915050565b600060208201905081810360008301526118fa8184611417565b905092915050565b6000602082019050818103600083015261191b81611450565b9050919050565b6000602082019050818103600083015261193b816114b6565b9050919050565b6000602082019050818103600083015261195b8161151c565b9050919050565b6000602082019050818103600083015261197b81611582565b9050919050565b6000602082019050818103600083015261199b816115e8565b9050919050565b600060208201905081810360008301526119bb8161164e565b9050919050565b600060208201905081810360008301526119db816116b4565b9050919050565b600060208201905081810360008301526119fb816116f4565b9050919050565b60006020820190508181036000830152611a1b8161175a565b9050919050565b60006020820190508181036000830152611a3b816117c0565b9050919050565b60006020820190508181036000830152611a5b81611826565b9050919050565b6000602082019050611a77600083018461188c565b92915050565b6000602082019050611a92600083018461189b565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611abf82611d47565b9150611aca83611d47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611aff57611afe611dc3565b5b828201905092915050565b6000808291508390505b6001851115611b5457808604811115611b3057611b2f611dc3565b5b6001851615611b3f5780820291505b8081029050611b4d85611e32565b9450611b14565b94509492505050565b6000611b6882611d47565b9150611b7383611d47565b9250611ba07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611ba8565b905092915050565b600082611bb85760019050611c74565b81611bc65760009050611c74565b8160018114611bdc5760028114611be657611c15565b6001915050611c74565b60ff841115611bf857611bf7611dc3565b5b8360020a915084821115611c0f57611c0e611dc3565b5b50611c74565b5060208310610133831016604e8410600b8410161715611c4a5782820a905083811115611c4557611c44611dc3565b5b611c74565b611c578484846001611b0a565b92509050818404811115611c6e57611c6d611dc3565b5b81810290505b9392505050565b6000611c8682611d47565b9150611c9183611d47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611cca57611cc9611dc3565b5b828202905092915050565b6000611ce082611d47565b9150611ceb83611d47565b925082821015611cfe57611cfd611dc3565b5b828203905092915050565b6000611d1482611d27565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d7c578082015181840152602081019050611d61565b83811115611d8b576000848401525b50505050565b60006002820490506001821680611da957607f821691505b60208210811415611dbd57611dbc611df2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b611e4881611d09565b8114611e5357600080fd5b50565b611e5f81611d47565b8114611e6a57600080fd5b5056fea2646970667358221220faea58fc71136a4f7d69d816a822e480f8bef1cf633f0728469fccdf115d96b964736f6c63430008000033

Deployed Bytecode Sourcemap

130:522:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2057:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4153:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4786:448;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;249:32:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;287:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2994:90:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5629:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;477:173:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3308:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:5;;;:::i;:::-;;1061:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2268:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6328:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3636:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3866:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;366:33:2;;;;;;;;;;;;;:::o;2057:98:1:-;2111:13;2143:5;2136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2057:98;:::o;4153:166::-;4236:4;4252:39;4261:12;:10;:12::i;:::-;4275:7;4284:6;4252:8;:39::i;:::-;4308:4;4301:11;;4153:166;;;;:::o;3144:106::-;3205:7;3231:12;;3224:19;;3144:106;:::o;4786:448::-;4892:4;4908:36;4918:6;4926:9;4937:6;4908:9;:36::i;:::-;4955:24;4982:11;:19;4994:6;4982:19;;;;;;;;;;;;;;;:33;5002:12;:10;:12::i;:::-;4982:33;;;;;;;;;;;;;;;;4955:60;;5053:6;5033:16;:26;;5025:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5138:57;5147:6;5155:12;:10;:12::i;:::-;5188:6;5169:16;:25;5138:8;:57::i;:::-;5223:4;5216:11;;;4786:448;;;;;:::o;249:32:2:-;280:1;249:32;:::o;287:73::-;280:1;342:17;;338:2;:21;;;;:::i;:::-;326:10;:34;;;;:::i;:::-;287:73;:::o;2994:90:1:-;3052:5;3076:1;3069:8;;2994:90;:::o;5629:212::-;5717:4;5733:80;5742:12;:10;:12::i;:::-;5756:7;5802:10;5765:11;:25;5777:12;:10;:12::i;:::-;5765:25;;;;;;;;;;;;;;;:34;5791:7;5765:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5733:8;:80::i;:::-;5830:4;5823:11;;5629:212;;;;:::o;477:173:2:-;1284:12:5;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;534:15:2::1;280:1;562:17;;558:2;:21;;;;:::i;:::-;550:6;:30;;;;:::i;:::-;534:46;;590:25;596:10;607:7;590:5;:25::i;:::-;631:12;636:6;631:12;;;;;;:::i;:::-;;;;;;;;1343:1:5;477:173:2::0;:::o;3308:125:1:-;3382:7;3408:9;:18;3418:7;3408:18;;;;;;;;;;;;;;;;3401:25;;3308:125;;;:::o;1693:145:5:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:1:::1;1762:40;;1783:6;;;;;;;;;;;1762:40;;;;;;;;;;;;1829:1;1812:6;;:19;;;;;;;;;;;;;;;;;;1693:145::o:0;1061:85::-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;2268:102:1:-;2324:13;2356:7;2349:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2268:102;:::o;6328:405::-;6421:4;6437:24;6464:11;:25;6476:12;:10;:12::i;:::-;6464:25;;;;;;;;;;;;;;;:34;6490:7;6464:34;;;;;;;;;;;;;;;;6437:61;;6536:15;6516:16;:35;;6508:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6627:67;6636:12;:10;:12::i;:::-;6650:7;6678:15;6659:16;:34;6627:8;:67::i;:::-;6722:4;6715:11;;;6328:405;;;;:::o;3636:172::-;3722:4;3738:42;3748:12;:10;:12::i;:::-;3762:9;3773:6;3738:9;:42::i;:::-;3797:4;3790:11;;3636:172;;;;:::o;3866:149::-;3955:7;3981:11;:18;3993:5;3981:18;;;;;;;;;;;;;;;:27;4000:7;3981:27;;;;;;;;;;;;;;;;3974:34;;3866:149;;;;:::o;1987:240:5:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2095:1:::1;2075:22;;:8;:22;;;;2067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;586:96:0:-;639:7;665:10;658:17;;586:96;:::o;9699:340:1:-;9817:1;9800:19;;:5;:19;;;;9792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9897:1;9878:21;;:7;:21;;;;9870:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9979:6;9949:11;:18;9961:5;9949:18;;;;;;;;;;;;;;;:27;9968:7;9949:27;;;;;;;;;;;;;;;:36;;;;10016:7;10000:32;;10009:5;10000:32;;;10025:6;10000:32;;;;;;:::i;:::-;;;;;;;;9699:340;;;:::o;7207:626::-;7330:1;7312:20;;:6;:20;;;;7304:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7413:1;7392:23;;:9;:23;;;;7384:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7466:47;7487:6;7495:9;7506:6;7466:20;:47::i;:::-;7524:21;7548:9;:17;7558:6;7548:17;;;;;;;;;;;;;;;;7524:41;;7600:6;7583:13;:23;;7575:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7719:6;7703:13;:22;7683:9;:17;7693:6;7683:17;;;;;;;;;;;;;;;:42;;;;7769:6;7745:9;:20;7755:9;7745:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7808:9;7791:35;;7800:6;7791:35;;;7819:6;7791:35;;;;;;:::i;:::-;;;;;;;;7207:626;;;;:::o;8759:517::-;8861:1;8842:21;;:7;:21;;;;8834:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8912:49;8933:7;8950:1;8954:6;8912:20;:49::i;:::-;8972:22;8997:9;:18;9007:7;8997:18;;;;;;;;;;;;;;;;8972:43;;9051:6;9033:14;:24;;9025:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9168:6;9151:14;:23;9130:9;:18;9140:7;9130:18;;;;;;;;;;;;;;;:44;;;;9210:6;9194:12;;:22;;;;;;;:::i;:::-;;;;;;;;9258:1;9232:37;;9241:7;9232:37;;;9262:6;9232:37;;;;;;:::i;:::-;;;;;;;;8759:517;;;:::o;10626:92::-;;;;:::o;7:139:7:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:370::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:34;4575:1;4570:3;4566:11;4559:55;4645:8;4640:2;4635:3;4631:12;4624:30;4680:2;4675:3;4671:12;4664:19;;4465:224;;;:::o;4695:372::-;;4858:67;4922:2;4917:3;4858:67;:::i;:::-;4851:74;;4955:34;4951:1;4946:3;4942:11;4935:55;5021:10;5016:2;5011:3;5007:12;5000:32;5058:2;5053:3;5049:12;5042:19;;4841:226;;;:::o;5073:330::-;;5236:67;5300:2;5295:3;5236:67;:::i;:::-;5229:74;;5333:34;5329:1;5324:3;5320:11;5313:55;5394:2;5389:3;5385:12;5378:19;;5219:184;;;:::o;5409:365::-;;5572:67;5636:2;5631:3;5572:67;:::i;:::-;5565:74;;5669:34;5665:1;5660:3;5656:11;5649:55;5735:3;5730:2;5725:3;5721:12;5714:25;5765:2;5760:3;5756:12;5749:19;;5555:219;;;:::o;5780:369::-;;5943:67;6007:2;6002:3;5943:67;:::i;:::-;5936:74;;6040:34;6036:1;6031:3;6027:11;6020:55;6106:7;6101:2;6096:3;6092:12;6085:29;6140:2;6135:3;6131:12;6124:19;;5926:223;;;:::o;6155:368::-;;6318:67;6382:2;6377:3;6318:67;:::i;:::-;6311:74;;6415:34;6411:1;6406:3;6402:11;6395:55;6481:6;6476:2;6471:3;6467:12;6460:28;6514:2;6509:3;6505:12;6498:19;;6301:222;;;:::o;6529:369::-;;6692:67;6756:2;6751:3;6692:67;:::i;:::-;6685:74;;6789:34;6785:1;6780:3;6776:11;6769:55;6855:7;6850:2;6845:3;6841:12;6834:29;6889:2;6884:3;6880:12;6873:19;;6675:223;;;:::o;6904:118::-;6991:24;7009:5;6991:24;:::i;:::-;6986:3;6979:37;6969:53;;:::o;7028:112::-;7111:22;7127:5;7111:22;:::i;:::-;7106:3;7099:35;7089:51;;:::o;7146:222::-;;7277:2;7266:9;7262:18;7254:26;;7290:71;7358:1;7347:9;7343:17;7334:6;7290:71;:::i;:::-;7244:124;;;;:::o;7374:210::-;;7499:2;7488:9;7484:18;7476:26;;7512:65;7574:1;7563:9;7559:17;7550:6;7512:65;:::i;:::-;7466:118;;;;:::o;7590:313::-;;7741:2;7730:9;7726:18;7718:26;;7790:9;7784:4;7780:20;7776:1;7765:9;7761:17;7754:47;7818:78;7891:4;7882:6;7818:78;:::i;:::-;7810:86;;7708:195;;;;:::o;7909:419::-;;8113:2;8102:9;8098:18;8090:26;;8162:9;8156:4;8152:20;8148:1;8137:9;8133:17;8126:47;8190:131;8316:4;8190:131;:::i;:::-;8182:139;;8080:248;;;:::o;8334:419::-;;8538:2;8527:9;8523:18;8515:26;;8587:9;8581:4;8577:20;8573:1;8562:9;8558:17;8551:47;8615:131;8741:4;8615:131;:::i;:::-;8607:139;;8505:248;;;:::o;8759:419::-;;8963:2;8952:9;8948:18;8940:26;;9012:9;9006:4;9002:20;8998:1;8987:9;8983:17;8976:47;9040:131;9166:4;9040:131;:::i;:::-;9032:139;;8930:248;;;:::o;9184:419::-;;9388:2;9377:9;9373:18;9365:26;;9437:9;9431:4;9427:20;9423:1;9412:9;9408:17;9401:47;9465:131;9591:4;9465:131;:::i;:::-;9457:139;;9355:248;;;:::o;9609:419::-;;9813:2;9802:9;9798:18;9790:26;;9862:9;9856:4;9852:20;9848:1;9837:9;9833:17;9826:47;9890:131;10016:4;9890:131;:::i;:::-;9882:139;;9780:248;;;:::o;10034:419::-;;10238:2;10227:9;10223:18;10215:26;;10287:9;10281:4;10277:20;10273:1;10262:9;10258:17;10251:47;10315:131;10441:4;10315:131;:::i;:::-;10307:139;;10205:248;;;:::o;10459:419::-;;10663:2;10652:9;10648:18;10640:26;;10712:9;10706:4;10702:20;10698:1;10687:9;10683:17;10676:47;10740:131;10866:4;10740:131;:::i;:::-;10732:139;;10630:248;;;:::o;10884:419::-;;11088:2;11077:9;11073:18;11065:26;;11137:9;11131:4;11127:20;11123:1;11112:9;11108:17;11101:47;11165:131;11291:4;11165:131;:::i;:::-;11157:139;;11055:248;;;:::o;11309:419::-;;11513:2;11502:9;11498:18;11490:26;;11562:9;11556:4;11552:20;11548:1;11537:9;11533:17;11526:47;11590:131;11716:4;11590:131;:::i;:::-;11582:139;;11480:248;;;:::o;11734:419::-;;11938:2;11927:9;11923:18;11915:26;;11987:9;11981:4;11977:20;11973:1;11962:9;11958:17;11951:47;12015:131;12141:4;12015:131;:::i;:::-;12007:139;;11905:248;;;:::o;12159:419::-;;12363:2;12352:9;12348:18;12340:26;;12412:9;12406:4;12402:20;12398:1;12387:9;12383:17;12376:47;12440:131;12566:4;12440:131;:::i;:::-;12432:139;;12330:248;;;:::o;12584:222::-;;12715:2;12704:9;12700:18;12692:26;;12728:71;12796:1;12785:9;12781:17;12772:6;12728:71;:::i;:::-;12682:124;;;;:::o;12812:214::-;;12939:2;12928:9;12924:18;12916:26;;12952:67;13016:1;13005:9;13001:17;12992:6;12952:67;:::i;:::-;12906:120;;;;:::o;13032:99::-;;13118:5;13112:12;13102:22;;13091:40;;;:::o;13137:169::-;;13255:6;13250:3;13243:19;13295:4;13290:3;13286:14;13271:29;;13233:73;;;;:::o;13312:305::-;;13371:20;13389:1;13371:20;:::i;:::-;13366:25;;13405:20;13423:1;13405:20;:::i;:::-;13400:25;;13559:1;13491:66;13487:74;13484:1;13481:81;13478:2;;;13565:18;;:::i;:::-;13478:2;13609:1;13606;13602:9;13595:16;;13356:261;;;;:::o;13623:848::-;;;13715:6;13706:15;;13739:5;13730:14;;13753:712;13774:1;13764:8;13761:15;13753:712;;;13869:4;13864:3;13860:14;13854:4;13851:24;13848:2;;;13878:18;;:::i;:::-;13848:2;13928:1;13918:8;13914:16;13911:2;;;14343:4;14336:5;14332:16;14323:25;;13911:2;14393:4;14387;14383:15;14375:23;;14423:32;14446:8;14423:32;:::i;:::-;14411:44;;13753:712;;;13696:775;;;;;;;:::o;14477:285::-;;14561:23;14579:4;14561:23;:::i;:::-;14553:31;;14605:27;14623:8;14605:27;:::i;:::-;14593:39;;14651:104;14688:66;14678:8;14672:4;14651:104;:::i;:::-;14642:113;;14543:219;;;;:::o;14768:1073::-;;15013:8;15003:2;;15034:1;15025:10;;15036:5;;15003:2;15062:4;15052:2;;15079:1;15070:10;;15081:5;;15052:2;15148:4;15196:1;15191:27;;;;15232:1;15227:191;;;;15141:277;;15191:27;15209:1;15200:10;;15211:5;;;15227:191;15272:3;15262:8;15259:17;15256:2;;;15279:18;;:::i;:::-;15256:2;15328:8;15325:1;15321:16;15312:25;;15363:3;15356:5;15353:14;15350:2;;;15370:18;;:::i;:::-;15350:2;15403:5;;;15141:277;;15527:2;15517:8;15514:16;15508:3;15502:4;15499:13;15495:36;15477:2;15467:8;15464:16;15459:2;15453:4;15450:12;15446:35;15430:111;15427:2;;;15583:8;15577:4;15573:19;15564:28;;15618:3;15611:5;15608:14;15605:2;;;15625:18;;:::i;:::-;15605:2;15658:5;;15427:2;15698:42;15736:3;15726:8;15720:4;15717:1;15698:42;:::i;:::-;15683:57;;;;15772:4;15767:3;15763:14;15756:5;15753:25;15750:2;;;15781:18;;:::i;:::-;15750:2;15830:4;15823:5;15819:16;15810:25;;14828:1013;;;;;;:::o;15847:348::-;;15910:20;15928:1;15910:20;:::i;:::-;15905:25;;15944:20;15962:1;15944:20;:::i;:::-;15939:25;;16132:1;16064:66;16060:74;16057:1;16054:81;16049:1;16042:9;16035:17;16031:105;16028:2;;;16139:18;;:::i;:::-;16028:2;16187:1;16184;16180:9;16169:20;;15895:300;;;;:::o;16201:191::-;;16261:20;16279:1;16261:20;:::i;:::-;16256:25;;16295:20;16313:1;16295:20;:::i;:::-;16290:25;;16334:1;16331;16328:8;16325:2;;;16339:18;;:::i;:::-;16325:2;16384:1;16381;16377:9;16369:17;;16246:146;;;;:::o;16398:96::-;;16464:24;16482:5;16464:24;:::i;:::-;16453:35;;16443:51;;;:::o;16500:90::-;;16577:5;16570:13;16563:21;16552:32;;16542:48;;;:::o;16596:126::-;;16673:42;16666:5;16662:54;16651:65;;16641:81;;;:::o;16728:77::-;;16794:5;16783:16;;16773:32;;;:::o;16811:86::-;;16886:4;16879:5;16875:16;16864:27;;16854:43;;;:::o;16903:307::-;16971:1;16981:113;16995:6;16992:1;16989:13;16981:113;;;17080:1;17075:3;17071:11;17065:18;17061:1;17056:3;17052:11;17045:39;17017:2;17014:1;17010:10;17005:15;;16981:113;;;17112:6;17109:1;17106:13;17103:2;;;17192:1;17183:6;17178:3;17174:16;17167:27;17103:2;16952:258;;;;:::o;17216:320::-;;17297:1;17291:4;17287:12;17277:22;;17344:1;17338:4;17334:12;17365:18;17355:2;;17421:4;17413:6;17409:17;17399:27;;17355:2;17483;17475:6;17472:14;17452:18;17449:38;17446:2;;;17502:18;;:::i;:::-;17446:2;17267:269;;;;:::o;17542:180::-;17590:77;17587:1;17580:88;17687:4;17684:1;17677:15;17711:4;17708:1;17701:15;17728:180;17776:77;17773:1;17766:88;17873:4;17870:1;17863:15;17897:4;17894:1;17887:15;17914:102;;18006:2;18002:7;17997:2;17990:5;17986:14;17982:28;17972:38;;17962:54;;;:::o;18022:102::-;;18111:5;18108:1;18104:13;18083:34;;18073:51;;;:::o;18130:122::-;18203:24;18221:5;18203:24;:::i;:::-;18196:5;18193:35;18183:2;;18242:1;18239;18232:12;18183:2;18173:79;:::o;18258:122::-;18331:24;18349:5;18331:24;:::i;:::-;18324:5;18321:35;18311:2;;18370:1;18367;18360:12;18311:2;18301:79;:::o

Swarm Source

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