ETH Price: $3,674.59 (+0.96%)
 

Overview

Max Total Supply

21,000,000 XRC20

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,473.371632938896853722 XRC20

Value
$0.00
0x99d943075c5be1216df60226cb598de3e6cef4f1
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:
XRC20

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-08
*/

/**

 Twitter: https://twitter.com/twitscription_x


 *Submitted for verification at Etherscan.io on 2024-01-06
*/

// Sources flattened with hardhat v2.19.4 https://hardhat.org

// SPDX-License-Identifier: MIT AND UNLICENSED

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`ÔÇÖs `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`ÔÇÖs approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`ÔÇÖs approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;




/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}


// File contracts/XRC20.sol

// Original license: SPDX_License_Identifier: UNLICENSED
pragma solidity ^0.8.20;
contract XRC20 is ERC20, Ownable {
    address public router;

    uint256 public sellFee = 20;
    uint256 public transferFee = 20;
    uint256 public maxTxAmount;
    uint256 public maxWalletAmount;

    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public isExcludedFromMaxTx;
    mapping(address => bool) public isExcludedFromMaxWallet;

    constructor(uint256 initialTotalSupply) ERC20("TwitScription", "XRC20") Ownable(msg.sender) {
        isExcludedFromFee[msg.sender] = true;
        isExcludedFromFee[address(0)] = true;
        isExcludedFromFee[address(this)] = true;

        isExcludedFromMaxTx[msg.sender] = true;
        isExcludedFromMaxTx[address(0)] = true;
        isExcludedFromMaxTx[address(this)] = true;

        isExcludedFromMaxWallet[msg.sender] = true;
        isExcludedFromMaxWallet[address(0)] = true;
        isExcludedFromMaxWallet[address(this)] = true;

        initialTotalSupply *= 10 ** 18;
        maxWalletAmount = initialTotalSupply * 2 / 100;
        _mint(msg.sender, initialTotalSupply);
    }

    function _update(address from, address to, uint256 value) internal override {
        if (!isExcludedFromMaxTx[from]) {
            require(value <= maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

        if (!isExcludedFromFee[from]) {
            if (to == router) {
                if (sellFee > 0) {
                    uint256 fee = value * sellFee / 100;
                    value -= fee;
                    super._update(from, address(this), fee);
                }
            } else if (transferFee > 0) {
                uint256 fee = value * transferFee / 100;
                value -= fee;
                super._update(from, address(this), fee);
            }
        }

        super._update(from, to, value);

        if (!isExcludedFromMaxWallet[to]) {
            require(balanceOf(to) <= maxWalletAmount, "Wallet balance exceeds the maxWalletAmount.");
        }
    }

    function excludeFromFee(address account, bool newState) external onlyOwner {
        isExcludedFromFee[account] = newState;
    }

    function excludeFromMaxTx(address account, bool newState) external onlyOwner {
        isExcludedFromMaxTx[account] = newState;
    }

    function excludeFromMaxWallet(address account, bool newState) external onlyOwner {
        isExcludedFromMaxWallet[account] = newState;
    }

    function setRouter(address newRouter) external onlyOwner {
        require(newRouter != router, "The router already has that address.");

        isExcludedFromFee[router] = false;
        isExcludedFromMaxTx[router] = false;
        isExcludedFromMaxWallet[router] = false;

        isExcludedFromFee[newRouter] = true;
        isExcludedFromMaxTx[newRouter] = true;
        isExcludedFromMaxWallet[newRouter] = true;
        router = newRouter;
    }

    function setSellFee(uint256 newFee) external onlyOwner {
        require(newFee <= 99, "Sell fee cannot be greater than 99%.");
        sellFee = newFee;
    }

    function setTransferFee(uint256 newFee) external onlyOwner {
        require(newFee <= 20, "Transfer fee cannot be greater than 99%.");
        transferFee = newFee;
    }

    function setMaxTxAmount(uint256 newPercentage) external onlyOwner {
        require(newPercentage > 0, "Max tx amount must be greater than 0.1%.");
        maxTxAmount = totalSupply() * newPercentage / 1000;
    }

    function setMaxWalletAmount(uint256 newPercentage) external onlyOwner {
        require(newPercentage > 20, "Max wallet amount must be greater than 2%.");
        maxWalletAmount = totalSupply() * newPercentage / 1000;
    }

    function withdraw(address to, uint256 value) external onlyOwner {
        super._update(address(this), to, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialTotalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"account","type":"address"},{"internalType":"bool","name":"newState","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"newState","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"newState","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052601460075560146008553480156200001a575f80fd5b50604051620033f9380380620033f9833981810160405281019062000040919062000b41565b336040518060400160405280600d81526020017f54776974536372697074696f6e000000000000000000000000000000000000008152506040518060400160405280600581526020017f58524332300000000000000000000000000000000000000000000000000000008152508160039081620000be919062000dcc565b508060049081620000d0919062000dcc565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000146575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013d919062000ef3565b60405180910390fd5b6200015781620004a960201b60201c565b506001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550670de0b6b3a7640000816200046b919062000f3b565b905060646002826200047e919062000f3b565b6200048a919062000fb2565b600a81905550620004a233826200056c60201b60201c565b50620011fc565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005df575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620005d6919062000ef3565b60405180910390fd5b620005f25f8383620005f660201b60201c565b5050565b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166200068e576009548111156200068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000684906200106d565b60405180910390fd5b5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16620007dc5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000789575f600754111562000783575f60646007548362000750919062000f3b565b6200075c919062000fb2565b905080826200076c91906200108d565b9150620007818430836200089c60201b60201c565b505b620007db565b5f6008541115620007da575f606460085483620007a7919062000f3b565b620007b3919062000fb2565b90508082620007c391906200108d565b9150620007d88430836200089c60201b60201c565b505b5b5b620007ef8383836200089c60201b60201c565b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166200089757600a54620008528362000ac060201b60201c565b111562000896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200088d906200113b565b60405180910390fd5b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008f0578060025f828254620008e391906200115b565b92505081905550620009c1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200097c578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200097393929190620011a6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a0a578060025f828254039250508190555062000a54565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ab39190620011e1565b60405180910390a3505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f80fd5b5f819050919050565b62000b1d8162000b09565b811462000b28575f80fd5b50565b5f8151905062000b3b8162000b12565b92915050565b5f6020828403121562000b595762000b5862000b05565b5b5f62000b688482850162000b2b565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000bed57607f821691505b60208210810362000c035762000c0262000ba8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c2a565b62000c73868362000c2a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000cb462000cae62000ca88462000b09565b62000c8b565b62000b09565b9050919050565b5f819050919050565b62000ccf8362000c94565b62000ce762000cde8262000cbb565b84845462000c36565b825550505050565b5f90565b62000cfd62000cef565b62000d0a81848462000cc4565b505050565b5b8181101562000d315762000d255f8262000cf3565b60018101905062000d10565b5050565b601f82111562000d805762000d4a8162000c09565b62000d558462000c1b565b8101602085101562000d65578190505b62000d7d62000d748562000c1b565b83018262000d0f565b50505b505050565b5f82821c905092915050565b5f62000da25f198460080262000d85565b1980831691505092915050565b5f62000dbc838362000d91565b9150826002028217905092915050565b62000dd78262000b71565b67ffffffffffffffff81111562000df35762000df262000b7b565b5b62000dff825462000bd5565b62000e0c82828562000d35565b5f60209050601f83116001811462000e42575f841562000e2d578287015190505b62000e39858262000daf565b86555062000ea8565b601f19841662000e528662000c09565b5f5b8281101562000e7b5784890151825560018201915060208501945060208101905062000e54565b8683101562000e9b578489015162000e97601f89168262000d91565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000edb8262000eb0565b9050919050565b62000eed8162000ecf565b82525050565b5f60208201905062000f085f83018462000ee2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f478262000b09565b915062000f548362000b09565b925082820262000f648162000b09565b9150828204841483151762000f7e5762000f7d62000f0e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000fbe8262000b09565b915062000fcb8362000b09565b92508262000fde5762000fdd62000f85565b5b828204905092915050565b5f82825260208201905092915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b5f6200105560288362000fe9565b9150620010628262000ff9565b604082019050919050565b5f6020820190508181035f830152620010868162001047565b9050919050565b5f620010998262000b09565b9150620010a68362000b09565b9250828203905081811115620010c157620010c062000f0e565b5b92915050565b7f57616c6c65742062616c616e6365206578636565647320746865206d617857615f8201527f6c6c6574416d6f756e742e000000000000000000000000000000000000000000602082015250565b5f62001123602b8362000fe9565b91506200113082620010c7565b604082019050919050565b5f6020820190508181035f830152620011548162001115565b9050919050565b5f620011678262000b09565b9150620011748362000b09565b92508282019050808211156200118f576200118e62000f0e565b5b92915050565b620011a08162000b09565b82525050565b5f606082019050620011bb5f83018662000ee2565b620011ca602083018562001195565b620011d9604083018462001195565b949350505050565b5f602082019050620011f65f83018462001195565b92915050565b6121ef806200120a5f395ff3fe608060405234801561000f575f80fd5b50600436106101cd575f3560e01c80638da5cb5b11610102578063d2fcc001116100a0578063ec28438a1161006f578063ec28438a1461052d578063f2fde38b14610549578063f3fef3a314610565578063f887ea4014610581576101cd565b8063d2fcc001146104a9578063d4c989d3146104c5578063dd62ed3e146104e1578063df8408fe14610511576101cd565b8063a9059cbb116100dc578063a9059cbb14610421578063aa4bde2814610451578063acb2ad6f1461046f578063c0d786551461048d576101cd565b80638da5cb5b146103c95780638f02bb5b146103e757806395d89b4114610403576101cd565b80635342acb41161016f57806370a082311161014957806370a0823114610355578063715018a6146103855780638b4cee081461038f5780638c0b5e22146103ab576101cd565b80635342acb4146102c5578063658c27a9146102f55780636dd3d39f14610325576101cd565b806323b872dd116101ab57806323b872dd1461023d57806327a14fc21461026d5780632b14ca5614610289578063313ce567146102a7576101cd565b806306fdde03146101d1578063095ea7b3146101ef57806318160ddd1461021f575b5f80fd5b6101d961059f565b6040516101e69190611922565b60405180910390f35b610209600480360381019061020491906119d3565b61062f565b6040516102169190611a2b565b60405180910390f35b610227610651565b6040516102349190611a53565b60405180910390f35b61025760048036038101906102529190611a6c565b61065a565b6040516102649190611a2b565b60405180910390f35b61028760048036038101906102829190611abc565b610688565b005b6102916106fc565b60405161029e9190611a53565b60405180910390f35b6102af610702565b6040516102bc9190611b02565b60405180910390f35b6102df60048036038101906102da9190611b1b565b61070a565b6040516102ec9190611a2b565b60405180910390f35b61030f600480360381019061030a9190611b1b565b610727565b60405161031c9190611a2b565b60405180910390f35b61033f600480360381019061033a9190611b1b565b610744565b60405161034c9190611a2b565b60405180910390f35b61036f600480360381019061036a9190611b1b565b610761565b60405161037c9190611a53565b60405180910390f35b61038d6107a6565b005b6103a960048036038101906103a49190611abc565b6107b9565b005b6103b361080f565b6040516103c09190611a53565b60405180910390f35b6103d1610815565b6040516103de9190611b55565b60405180910390f35b61040160048036038101906103fc9190611abc565b61083d565b005b61040b610893565b6040516104189190611922565b60405180910390f35b61043b600480360381019061043691906119d3565b610923565b6040516104489190611a2b565b60405180910390f35b610459610945565b6040516104669190611a53565b60405180910390f35b61047761094b565b6040516104849190611a53565b60405180910390f35b6104a760048036038101906104a29190611b1b565b610951565b005b6104c360048036038101906104be9190611b98565b610c89565b005b6104df60048036038101906104da9190611b98565b610ce9565b005b6104fb60048036038101906104f69190611bd6565b610d49565b6040516105089190611a53565b60405180910390f35b61052b60048036038101906105269190611b98565b610dcb565b005b61054760048036038101906105429190611abc565b610e2b565b005b610563600480360381019061055e9190611b1b565b610e9e565b005b61057f600480360381019061057a91906119d3565b610f22565b005b610589610f39565b6040516105969190611b55565b60405180910390f35b6060600380546105ae90611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546105da90611c41565b80156106255780601f106105fc57610100808354040283529160200191610625565b820191905f5260205f20905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b5f80610639610f5e565b9050610646818585610f65565b600191505092915050565b5f600254905090565b5f80610664610f5e565b9050610671858285610f77565b61067c858585611009565b60019150509392505050565b6106906110f9565b601481116106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca90611ce1565b60405180910390fd5b6103e8816106df610651565b6106e99190611d2c565b6106f39190611d9a565b600a8190555050565b60075481565b5f6012905090565b600b602052805f5260405f205f915054906101000a900460ff1681565b600c602052805f5260405f205f915054906101000a900460ff1681565b600d602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107ae6110f9565b6107b75f611180565b565b6107c16110f9565b6063811115610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90611e3a565b60405180910390fd5b8060078190555050565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108456110f9565b6014811115610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611ec8565b60405180910390fd5b8060088190555050565b6060600480546108a290611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90611c41565b80156109195780601f106108f057610100808354040283529160200191610919565b820191905f5260205f20905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b5f8061092d610f5e565b905061093a818585611009565b600191505092915050565b600a5481565b60085481565b6109596110f9565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611f56565b60405180910390fd5b5f600b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f600c5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f600d5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c916110f9565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610cf16110f9565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610dd36110f9565b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610e336110f9565b5f8111610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90611fe4565b60405180910390fd5b6103e881610e81610651565b610e8b9190611d2c565b610e959190611d9a565b60098190555050565b610ea66110f9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f16575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f0d9190611b55565b60405180910390fd5b610f1f81611180565b50565b610f2a6110f9565b610f35308383611243565b5050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610f72838383600161145c565b505050565b5f610f828484610d49565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110035781811015610ff4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610feb93929190612002565b60405180910390fd5b61100284848484035f61145c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611079575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110709190611b55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110e09190611b55565b60405180910390fd5b6110f483838361162b565b505050565b611101610f5e565b73ffffffffffffffffffffffffffffffffffffffff1661111f610815565b73ffffffffffffffffffffffffffffffffffffffff161461117e57611142610f5e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111759190611b55565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611293578060025f8282546112879190612037565b92505081905550611361565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561131c578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161131393929190612002565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a8578060025f82825403925050819055506113f2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161144f9190611a53565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114cc575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114c39190611b55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153c575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115339190611b55565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611625578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161161c9190611a53565b60405180910390a35b50505050565b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166116bf576009548111156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b5906120da565b60405180910390fd5b5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117ec5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8575f60075411156117a3575f60646007548361177c9190611d2c565b6117869190611d9a565b9050808261179491906120f8565b91506117a1843083611243565b505b6117eb565b5f60085411156117ea575f6064600854836117c39190611d2c565b6117cd9190611d9a565b905080826117db91906120f8565b91506117e8843083611243565b505b5b5b6117f7838383611243565b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661189357600a5461185183610761565b1115611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061219b565b60405180910390fd5b5b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156118cf5780820151818401526020810190506118b4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118f482611898565b6118fe81856118a2565b935061190e8185602086016118b2565b611917816118da565b840191505092915050565b5f6020820190508181035f83015261193a81846118ea565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61196f82611946565b9050919050565b61197f81611965565b8114611989575f80fd5b50565b5f8135905061199a81611976565b92915050565b5f819050919050565b6119b2816119a0565b81146119bc575f80fd5b50565b5f813590506119cd816119a9565b92915050565b5f80604083850312156119e9576119e8611942565b5b5f6119f68582860161198c565b9250506020611a07858286016119bf565b9150509250929050565b5f8115159050919050565b611a2581611a11565b82525050565b5f602082019050611a3e5f830184611a1c565b92915050565b611a4d816119a0565b82525050565b5f602082019050611a665f830184611a44565b92915050565b5f805f60608486031215611a8357611a82611942565b5b5f611a908682870161198c565b9350506020611aa18682870161198c565b9250506040611ab2868287016119bf565b9150509250925092565b5f60208284031215611ad157611ad0611942565b5b5f611ade848285016119bf565b91505092915050565b5f60ff82169050919050565b611afc81611ae7565b82525050565b5f602082019050611b155f830184611af3565b92915050565b5f60208284031215611b3057611b2f611942565b5b5f611b3d8482850161198c565b91505092915050565b611b4f81611965565b82525050565b5f602082019050611b685f830184611b46565b92915050565b611b7781611a11565b8114611b81575f80fd5b50565b5f81359050611b9281611b6e565b92915050565b5f8060408385031215611bae57611bad611942565b5b5f611bbb8582860161198c565b9250506020611bcc85828601611b84565b9150509250929050565b5f8060408385031215611bec57611beb611942565b5b5f611bf98582860161198c565b9250506020611c0a8582860161198c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c5857607f821691505b602082108103611c6b57611c6a611c14565b5b50919050565b7f4d61782077616c6c657420616d6f756e74206d757374206265206772656174655f8201527f72207468616e2032252e00000000000000000000000000000000000000000000602082015250565b5f611ccb602a836118a2565b9150611cd682611c71565b604082019050919050565b5f6020820190508181035f830152611cf881611cbf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d36826119a0565b9150611d41836119a0565b9250828202611d4f816119a0565b91508282048414831517611d6657611d65611cff565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611da4826119a0565b9150611daf836119a0565b925082611dbf57611dbe611d6d565b5b828204905092915050565b7f53656c6c206665652063616e6e6f742062652067726561746572207468616e205f8201527f3939252e00000000000000000000000000000000000000000000000000000000602082015250565b5f611e246024836118a2565b9150611e2f82611dca565b604082019050919050565b5f6020820190508181035f830152611e5181611e18565b9050919050565b7f5472616e73666572206665652063616e6e6f74206265206772656174657220745f8201527f68616e203939252e000000000000000000000000000000000000000000000000602082015250565b5f611eb26028836118a2565b9150611ebd82611e58565b604082019050919050565b5f6020820190508181035f830152611edf81611ea6565b9050919050565b7f54686520726f7574657220616c726561647920686173207468617420616464725f8201527f6573732e00000000000000000000000000000000000000000000000000000000602082015250565b5f611f406024836118a2565b9150611f4b82611ee6565b604082019050919050565b5f6020820190508181035f830152611f6d81611f34565b9050919050565b7f4d617820747820616d6f756e74206d75737420626520677265617465722074685f8201527f616e20302e31252e000000000000000000000000000000000000000000000000602082015250565b5f611fce6028836118a2565b9150611fd982611f74565b604082019050919050565b5f6020820190508181035f830152611ffb81611fc2565b9050919050565b5f6060820190506120155f830186611b46565b6120226020830185611a44565b61202f6040830184611a44565b949350505050565b5f612041826119a0565b915061204c836119a0565b925082820190508082111561206457612063611cff565b5b92915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b5f6120c46028836118a2565b91506120cf8261206a565b604082019050919050565b5f6020820190508181035f8301526120f1816120b8565b9050919050565b5f612102826119a0565b915061210d836119a0565b925082820390508181111561212557612124611cff565b5b92915050565b7f57616c6c65742062616c616e6365206578636565647320746865206d617857615f8201527f6c6c6574416d6f756e742e000000000000000000000000000000000000000000602082015250565b5f612185602b836118a2565b91506121908261212b565b604082019050919050565b5f6020820190508181035f8301526121b281612179565b905091905056fea2646970667358221220bf5a57d31e12ba51ff1a26a4006fdab3e2e17f9e4ba18de27dd98e6a5276f44f64736f6c634300081400330000000000000000000000000000000000000000000000000000000001406f40

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101cd575f3560e01c80638da5cb5b11610102578063d2fcc001116100a0578063ec28438a1161006f578063ec28438a1461052d578063f2fde38b14610549578063f3fef3a314610565578063f887ea4014610581576101cd565b8063d2fcc001146104a9578063d4c989d3146104c5578063dd62ed3e146104e1578063df8408fe14610511576101cd565b8063a9059cbb116100dc578063a9059cbb14610421578063aa4bde2814610451578063acb2ad6f1461046f578063c0d786551461048d576101cd565b80638da5cb5b146103c95780638f02bb5b146103e757806395d89b4114610403576101cd565b80635342acb41161016f57806370a082311161014957806370a0823114610355578063715018a6146103855780638b4cee081461038f5780638c0b5e22146103ab576101cd565b80635342acb4146102c5578063658c27a9146102f55780636dd3d39f14610325576101cd565b806323b872dd116101ab57806323b872dd1461023d57806327a14fc21461026d5780632b14ca5614610289578063313ce567146102a7576101cd565b806306fdde03146101d1578063095ea7b3146101ef57806318160ddd1461021f575b5f80fd5b6101d961059f565b6040516101e69190611922565b60405180910390f35b610209600480360381019061020491906119d3565b61062f565b6040516102169190611a2b565b60405180910390f35b610227610651565b6040516102349190611a53565b60405180910390f35b61025760048036038101906102529190611a6c565b61065a565b6040516102649190611a2b565b60405180910390f35b61028760048036038101906102829190611abc565b610688565b005b6102916106fc565b60405161029e9190611a53565b60405180910390f35b6102af610702565b6040516102bc9190611b02565b60405180910390f35b6102df60048036038101906102da9190611b1b565b61070a565b6040516102ec9190611a2b565b60405180910390f35b61030f600480360381019061030a9190611b1b565b610727565b60405161031c9190611a2b565b60405180910390f35b61033f600480360381019061033a9190611b1b565b610744565b60405161034c9190611a2b565b60405180910390f35b61036f600480360381019061036a9190611b1b565b610761565b60405161037c9190611a53565b60405180910390f35b61038d6107a6565b005b6103a960048036038101906103a49190611abc565b6107b9565b005b6103b361080f565b6040516103c09190611a53565b60405180910390f35b6103d1610815565b6040516103de9190611b55565b60405180910390f35b61040160048036038101906103fc9190611abc565b61083d565b005b61040b610893565b6040516104189190611922565b60405180910390f35b61043b600480360381019061043691906119d3565b610923565b6040516104489190611a2b565b60405180910390f35b610459610945565b6040516104669190611a53565b60405180910390f35b61047761094b565b6040516104849190611a53565b60405180910390f35b6104a760048036038101906104a29190611b1b565b610951565b005b6104c360048036038101906104be9190611b98565b610c89565b005b6104df60048036038101906104da9190611b98565b610ce9565b005b6104fb60048036038101906104f69190611bd6565b610d49565b6040516105089190611a53565b60405180910390f35b61052b60048036038101906105269190611b98565b610dcb565b005b61054760048036038101906105429190611abc565b610e2b565b005b610563600480360381019061055e9190611b1b565b610e9e565b005b61057f600480360381019061057a91906119d3565b610f22565b005b610589610f39565b6040516105969190611b55565b60405180910390f35b6060600380546105ae90611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546105da90611c41565b80156106255780601f106105fc57610100808354040283529160200191610625565b820191905f5260205f20905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b5f80610639610f5e565b9050610646818585610f65565b600191505092915050565b5f600254905090565b5f80610664610f5e565b9050610671858285610f77565b61067c858585611009565b60019150509392505050565b6106906110f9565b601481116106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca90611ce1565b60405180910390fd5b6103e8816106df610651565b6106e99190611d2c565b6106f39190611d9a565b600a8190555050565b60075481565b5f6012905090565b600b602052805f5260405f205f915054906101000a900460ff1681565b600c602052805f5260405f205f915054906101000a900460ff1681565b600d602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107ae6110f9565b6107b75f611180565b565b6107c16110f9565b6063811115610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90611e3a565b60405180910390fd5b8060078190555050565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108456110f9565b6014811115610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611ec8565b60405180910390fd5b8060088190555050565b6060600480546108a290611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90611c41565b80156109195780601f106108f057610100808354040283529160200191610919565b820191905f5260205f20905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b5f8061092d610f5e565b905061093a818585611009565b600191505092915050565b600a5481565b60085481565b6109596110f9565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611f56565b60405180910390fd5b5f600b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f600c5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f600d5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c916110f9565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610cf16110f9565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610dd36110f9565b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610e336110f9565b5f8111610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90611fe4565b60405180910390fd5b6103e881610e81610651565b610e8b9190611d2c565b610e959190611d9a565b60098190555050565b610ea66110f9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f16575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f0d9190611b55565b60405180910390fd5b610f1f81611180565b50565b610f2a6110f9565b610f35308383611243565b5050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610f72838383600161145c565b505050565b5f610f828484610d49565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110035781811015610ff4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610feb93929190612002565b60405180910390fd5b61100284848484035f61145c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611079575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110709190611b55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110e09190611b55565b60405180910390fd5b6110f483838361162b565b505050565b611101610f5e565b73ffffffffffffffffffffffffffffffffffffffff1661111f610815565b73ffffffffffffffffffffffffffffffffffffffff161461117e57611142610f5e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111759190611b55565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611293578060025f8282546112879190612037565b92505081905550611361565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561131c578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161131393929190612002565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a8578060025f82825403925050819055506113f2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161144f9190611a53565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114cc575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114c39190611b55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153c575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115339190611b55565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611625578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161161c9190611a53565b60405180910390a35b50505050565b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166116bf576009548111156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b5906120da565b60405180910390fd5b5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117ec5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8575f60075411156117a3575f60646007548361177c9190611d2c565b6117869190611d9a565b9050808261179491906120f8565b91506117a1843083611243565b505b6117eb565b5f60085411156117ea575f6064600854836117c39190611d2c565b6117cd9190611d9a565b905080826117db91906120f8565b91506117e8843083611243565b505b5b5b6117f7838383611243565b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661189357600a5461185183610761565b1115611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061219b565b60405180910390fd5b5b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156118cf5780820151818401526020810190506118b4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118f482611898565b6118fe81856118a2565b935061190e8185602086016118b2565b611917816118da565b840191505092915050565b5f6020820190508181035f83015261193a81846118ea565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61196f82611946565b9050919050565b61197f81611965565b8114611989575f80fd5b50565b5f8135905061199a81611976565b92915050565b5f819050919050565b6119b2816119a0565b81146119bc575f80fd5b50565b5f813590506119cd816119a9565b92915050565b5f80604083850312156119e9576119e8611942565b5b5f6119f68582860161198c565b9250506020611a07858286016119bf565b9150509250929050565b5f8115159050919050565b611a2581611a11565b82525050565b5f602082019050611a3e5f830184611a1c565b92915050565b611a4d816119a0565b82525050565b5f602082019050611a665f830184611a44565b92915050565b5f805f60608486031215611a8357611a82611942565b5b5f611a908682870161198c565b9350506020611aa18682870161198c565b9250506040611ab2868287016119bf565b9150509250925092565b5f60208284031215611ad157611ad0611942565b5b5f611ade848285016119bf565b91505092915050565b5f60ff82169050919050565b611afc81611ae7565b82525050565b5f602082019050611b155f830184611af3565b92915050565b5f60208284031215611b3057611b2f611942565b5b5f611b3d8482850161198c565b91505092915050565b611b4f81611965565b82525050565b5f602082019050611b685f830184611b46565b92915050565b611b7781611a11565b8114611b81575f80fd5b50565b5f81359050611b9281611b6e565b92915050565b5f8060408385031215611bae57611bad611942565b5b5f611bbb8582860161198c565b9250506020611bcc85828601611b84565b9150509250929050565b5f8060408385031215611bec57611beb611942565b5b5f611bf98582860161198c565b9250506020611c0a8582860161198c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c5857607f821691505b602082108103611c6b57611c6a611c14565b5b50919050565b7f4d61782077616c6c657420616d6f756e74206d757374206265206772656174655f8201527f72207468616e2032252e00000000000000000000000000000000000000000000602082015250565b5f611ccb602a836118a2565b9150611cd682611c71565b604082019050919050565b5f6020820190508181035f830152611cf881611cbf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d36826119a0565b9150611d41836119a0565b9250828202611d4f816119a0565b91508282048414831517611d6657611d65611cff565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611da4826119a0565b9150611daf836119a0565b925082611dbf57611dbe611d6d565b5b828204905092915050565b7f53656c6c206665652063616e6e6f742062652067726561746572207468616e205f8201527f3939252e00000000000000000000000000000000000000000000000000000000602082015250565b5f611e246024836118a2565b9150611e2f82611dca565b604082019050919050565b5f6020820190508181035f830152611e5181611e18565b9050919050565b7f5472616e73666572206665652063616e6e6f74206265206772656174657220745f8201527f68616e203939252e000000000000000000000000000000000000000000000000602082015250565b5f611eb26028836118a2565b9150611ebd82611e58565b604082019050919050565b5f6020820190508181035f830152611edf81611ea6565b9050919050565b7f54686520726f7574657220616c726561647920686173207468617420616464725f8201527f6573732e00000000000000000000000000000000000000000000000000000000602082015250565b5f611f406024836118a2565b9150611f4b82611ee6565b604082019050919050565b5f6020820190508181035f830152611f6d81611f34565b9050919050565b7f4d617820747820616d6f756e74206d75737420626520677265617465722074685f8201527f616e20302e31252e000000000000000000000000000000000000000000000000602082015250565b5f611fce6028836118a2565b9150611fd982611f74565b604082019050919050565b5f6020820190508181035f830152611ffb81611fc2565b9050919050565b5f6060820190506120155f830186611b46565b6120226020830185611a44565b61202f6040830184611a44565b949350505050565b5f612041826119a0565b915061204c836119a0565b925082820190508082111561206457612063611cff565b5b92915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b5f6120c46028836118a2565b91506120cf8261206a565b604082019050919050565b5f6020820190508181035f8301526120f1816120b8565b9050919050565b5f612102826119a0565b915061210d836119a0565b925082820390508181111561212557612124611cff565b5b92915050565b7f57616c6c65742062616c616e6365206578636565647320746865206d617857615f8201527f6c6c6574416d6f756e742e000000000000000000000000000000000000000000602082015250565b5f612185602b836118a2565b91506121908261212b565b604082019050919050565b5f6020820190508181035f8301526121b281612179565b905091905056fea2646970667358221220bf5a57d31e12ba51ff1a26a4006fdab3e2e17f9e4ba18de27dd98e6a5276f44f64736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000001406f40

-----Decoded View---------------
Arg [0] : initialTotalSupply (uint256): 21000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000001406f40


Deployed Bytecode Sourcemap

26507:3888:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17060:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19353:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18162:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20121:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30035:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26577:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18013:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26721:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26777:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26835:55;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18324:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3710:103;;;:::i;:::-;;29459:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26649:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3035:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29629:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17270:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18647:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26682:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26611:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28988:463;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28837:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28694:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18892:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28555:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29811:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3968:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30270:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26547:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17060:91;17105:13;17138:5;17131:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17060:91;:::o;19353:190::-;19426:4;19443:13;19459:12;:10;:12::i;:::-;19443:28;;19482:31;19491:5;19498:7;19507:5;19482:8;:31::i;:::-;19531:4;19524:11;;;19353:190;;;;:::o;18162:99::-;18214:7;18241:12;;18234:19;;18162:99;:::o;20121:249::-;20208:4;20225:15;20243:12;:10;:12::i;:::-;20225:30;;20266:37;20282:4;20288:7;20297:5;20266:15;:37::i;:::-;20314:26;20324:4;20330:2;20334:5;20314:9;:26::i;:::-;20358:4;20351:11;;;20121:249;;;;;:::o;30035:227::-;2921:13;:11;:13::i;:::-;30140:2:::1;30124:13;:18;30116:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30250:4;30234:13;30218;:11;:13::i;:::-;:29;;;;:::i;:::-;:36;;;;:::i;:::-;30200:15;:54;;;;30035:227:::0;:::o;26577:27::-;;;;:::o;18013:84::-;18062:5;18087:2;18080:9;;18013:84;:::o;26721:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;26777:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;26835:55::-;;;;;;;;;;;;;;;;;;;;;;:::o;18324:118::-;18389:7;18416:9;:18;18426:7;18416:18;;;;;;;;;;;;;;;;18409:25;;18324:118;;;:::o;3710:103::-;2921:13;:11;:13::i;:::-;3775:30:::1;3802:1;3775:18;:30::i;:::-;3710:103::o:0;29459:162::-;2921:13;:11;:13::i;:::-;29543:2:::1;29533:6;:12;;29525:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29607:6;29597:7;:16;;;;29459:162:::0;:::o;26649:26::-;;;;:::o;3035:87::-;3081:7;3108:6;;;;;;;;;;;3101:13;;3035:87;:::o;29629:174::-;2921:13;:11;:13::i;:::-;29717:2:::1;29707:6;:12;;29699:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29789:6;29775:11;:20;;;;29629:174:::0;:::o;17270:95::-;17317:13;17350:7;17343:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17270:95;:::o;18647:182::-;18716:4;18733:13;18749:12;:10;:12::i;:::-;18733:28;;18772:27;18782:5;18789:2;18793:5;18772:9;:27::i;:::-;18817:4;18810:11;;;18647:182;;;;:::o;26682:30::-;;;;:::o;26611:31::-;;;;:::o;28988:463::-;2921:13;:11;:13::i;:::-;29077:6:::1;;;;;;;;;;;29064:19;;:9;:19;;::::0;29056:68:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29165:5;29137:17;:25;29155:6;;;;;;;;;;;29137:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;29211:5;29181:19;:27;29201:6;;;;;;;;;;;29181:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;29261:5;29227:23;:31;29251:6;;;;;;;;;;;29227:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29310:4;29279:17;:28;29297:9;29279:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;29358:4;29325:19;:30;29345:9;29325:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;29410:4;29373:23;:34;29397:9;29373:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;29434:9;29425:6;;:18;;;;;;;;;;;;;;;;;;28988:463:::0;:::o;28837:143::-;2921:13;:11;:13::i;:::-;28964:8:::1;28929:23;:32;28953:7;28929:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;28837:143:::0;;:::o;28694:135::-;2921:13;:11;:13::i;:::-;28813:8:::1;28782:19;:28;28802:7;28782:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;28694:135:::0;;:::o;18892:142::-;18972:7;18999:11;:18;19011:5;18999:18;;;;;;;;;;;;;;;:27;19018:7;18999:27;;;;;;;;;;;;;;;;18992:34;;18892:142;;;;:::o;28555:131::-;2921:13;:11;:13::i;:::-;28670:8:::1;28641:17;:26;28659:7;28641:26;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;28555:131:::0;;:::o;29811:216::-;2921:13;:11;:13::i;:::-;29912:1:::1;29896:13;:17;29888:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;30015:4;29999:13;29983;:11;:13::i;:::-;:29;;;;:::i;:::-;:36;;;;:::i;:::-;29969:11;:50;;;;29811:216:::0;:::o;3968:220::-;2921:13;:11;:13::i;:::-;4073:1:::1;4053:22;;:8;:22;;::::0;4049:93:::1;;4127:1;4099:31;;;;;;;;;;;:::i;:::-;;;;;;;;4049:93;4152:28;4171:8;4152:18;:28::i;:::-;3968:220:::0;:::o;30270:122::-;2921:13;:11;:13::i;:::-;30345:39:::1;30367:4;30374:2;30378:5;30345:13;:39::i;:::-;30270:122:::0;;:::o;26547:21::-;;;;;;;;;;;;;:::o;989:98::-;1042:7;1069:10;1062:17;;989:98;:::o;24180:130::-;24265:37;24274:5;24281:7;24290:5;24297:4;24265:8;:37::i;:::-;24180:130;;;:::o;25896:487::-;25996:24;26023:25;26033:5;26040:7;26023:9;:25::i;:::-;25996:52;;26083:17;26063:16;:37;26059:317;;26140:5;26121:16;:24;26117:132;;;26200:7;26209:16;26227:5;26173:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;26117:132;26292:57;26301:5;26308:7;26336:5;26317:16;:24;26343:5;26292:8;:57::i;:::-;26059:317;25985:398;25896:487;;;:::o;20755:308::-;20855:1;20839:18;;:4;:18;;;20835:88;;20908:1;20881:30;;;;;;;;;;;:::i;:::-;;;;;;;;20835:88;20951:1;20937:16;;:2;:16;;;20933:88;;21006:1;20977:32;;;;;;;;;;;:::i;:::-;;;;;;;;20933:88;21031:24;21039:4;21045:2;21049:5;21031:7;:24::i;:::-;20755:308;;;:::o;3200:166::-;3271:12;:10;:12::i;:::-;3260:23;;:7;:5;:7::i;:::-;:23;;;3256:103;;3334:12;:10;:12::i;:::-;3307:40;;;;;;;;;;;:::i;:::-;;;;;;;;3256:103;3200:166::o;4348:191::-;4422:16;4441:6;;;;;;;;;;;4422:25;;4467:8;4458:6;;:17;;;;;;;;;;;;;;;;;;4522:8;4491:40;;4512:8;4491:40;;;;;;;;;;;;4411:128;4348:191;:::o;21387:1135::-;21493:1;21477:18;;:4;:18;;;21473:552;;21631:5;21615:12;;:21;;;;;;;:::i;:::-;;;;;;;;21473:552;;;21669:19;21691:9;:15;21701:4;21691:15;;;;;;;;;;;;;;;;21669:37;;21739:5;21725:11;:19;21721:117;;;21797:4;21803:11;21816:5;21772:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21721:117;21993:5;21979:11;:19;21961:9;:15;21971:4;21961:15;;;;;;;;;;;;;;;:37;;;;21654:371;21473:552;22055:1;22041:16;;:2;:16;;;22037:435;;22223:5;22207:12;;:21;;;;;;;;;;;22037:435;;;22440:5;22423:9;:13;22433:2;22423:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;22037:435;22504:2;22489:25;;22498:4;22489:25;;;22508:5;22489:25;;;;;;:::i;:::-;;;;;;;;21387:1135;;;:::o;25161:443::-;25291:1;25274:19;;:5;:19;;;25270:91;;25346:1;25317:32;;;;;;;;;;;:::i;:::-;;;;;;;;25270:91;25394:1;25375:21;;:7;:21;;;25371:92;;25448:1;25420:31;;;;;;;;;;;:::i;:::-;;;;;;;;25371:92;25503:5;25473:11;:18;25485:5;25473:18;;;;;;;;;;;;;;;:27;25492:7;25473:27;;;;;;;;;;;;;;;:35;;;;25523:9;25519:78;;;25570:7;25554:31;;25563:5;25554:31;;;25579:5;25554:31;;;;;;:::i;:::-;;;;;;;;25519:78;25161:443;;;;:::o;27615:932::-;27707:19;:25;27727:4;27707:25;;;;;;;;;;;;;;;;;;;;;;;;;27702:132;;27766:11;;27757:5;:20;;27749:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27702:132;27851:17;:23;27869:4;27851:23;;;;;;;;;;;;;;;;;;;;;;;;;27846:490;;27901:6;;;;;;;;;;;27895:12;;:2;:12;;;27891:434;;27942:1;27932:7;;:11;27928:192;;;27968:11;28000:3;27990:7;;27982:5;:15;;;;:::i;:::-;:21;;;;:::i;:::-;27968:35;;28035:3;28026:12;;;;;:::i;:::-;;;28061:39;28075:4;28089;28096:3;28061:13;:39::i;:::-;27945:175;27928:192;27891:434;;;28159:1;28145:11;;:15;28141:184;;;28181:11;28217:3;28203:11;;28195:5;:19;;;;:::i;:::-;:25;;;;:::i;:::-;28181:39;;28248:3;28239:12;;;;;:::i;:::-;;;28270:39;28284:4;28298;28305:3;28270:13;:39::i;:::-;28162:163;28141:184;27891:434;27846:490;28348:30;28362:4;28368:2;28372:5;28348:13;:30::i;:::-;28396:23;:27;28420:2;28396:27;;;;;;;;;;;;;;;;;;;;;;;;;28391:149;;28465:15;;28448:13;28458:2;28448:9;:13::i;:::-;:32;;28440:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;28391:149;27615:932;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:116::-;5945:21;5960:5;5945:21;:::i;:::-;5938:5;5935:32;5925:60;;5981:1;5978;5971:12;5925:60;5875:116;:::o;5997:133::-;6040:5;6078:6;6065:20;6056:29;;6094:30;6118:5;6094:30;:::i;:::-;5997:133;;;;:::o;6136:468::-;6201:6;6209;6258:2;6246:9;6237:7;6233:23;6229:32;6226:119;;;6264:79;;:::i;:::-;6226:119;6384:1;6409:53;6454:7;6445:6;6434:9;6430:22;6409:53;:::i;:::-;6399:63;;6355:117;6511:2;6537:50;6579:7;6570:6;6559:9;6555:22;6537:50;:::i;:::-;6527:60;;6482:115;6136:468;;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:229::-;7742:34;7738:1;7730:6;7726:14;7719:58;7811:12;7806:2;7798:6;7794:15;7787:37;7602:229;:::o;7837:366::-;7979:3;8000:67;8064:2;8059:3;8000:67;:::i;:::-;7993:74;;8076:93;8165:3;8076:93;:::i;:::-;8194:2;8189:3;8185:12;8178:19;;7837:366;;;:::o;8209:419::-;8375:4;8413:2;8402:9;8398:18;8390:26;;8462:9;8456:4;8452:20;8448:1;8437:9;8433:17;8426:47;8490:131;8616:4;8490:131;:::i;:::-;8482:139;;8209:419;;;:::o;8634:180::-;8682:77;8679:1;8672:88;8779:4;8776:1;8769:15;8803:4;8800:1;8793:15;8820:410;8860:7;8883:20;8901:1;8883:20;:::i;:::-;8878:25;;8917:20;8935:1;8917:20;:::i;:::-;8912:25;;8972:1;8969;8965:9;8994:30;9012:11;8994:30;:::i;:::-;8983:41;;9173:1;9164:7;9160:15;9157:1;9154:22;9134:1;9127:9;9107:83;9084:139;;9203:18;;:::i;:::-;9084:139;8868:362;8820:410;;;;:::o;9236:180::-;9284:77;9281:1;9274:88;9381:4;9378:1;9371:15;9405:4;9402:1;9395:15;9422:185;9462:1;9479:20;9497:1;9479:20;:::i;:::-;9474:25;;9513:20;9531:1;9513:20;:::i;:::-;9508:25;;9552:1;9542:35;;9557:18;;:::i;:::-;9542:35;9599:1;9596;9592:9;9587:14;;9422:185;;;;:::o;9613:223::-;9753:34;9749:1;9741:6;9737:14;9730:58;9822:6;9817:2;9809:6;9805:15;9798:31;9613:223;:::o;9842:366::-;9984:3;10005:67;10069:2;10064:3;10005:67;:::i;:::-;9998:74;;10081:93;10170:3;10081:93;:::i;:::-;10199:2;10194:3;10190:12;10183:19;;9842:366;;;:::o;10214:419::-;10380:4;10418:2;10407:9;10403:18;10395:26;;10467:9;10461:4;10457:20;10453:1;10442:9;10438:17;10431:47;10495:131;10621:4;10495:131;:::i;:::-;10487:139;;10214:419;;;:::o;10639:227::-;10779:34;10775:1;10767:6;10763:14;10756:58;10848:10;10843:2;10835:6;10831:15;10824:35;10639:227;:::o;10872:366::-;11014:3;11035:67;11099:2;11094:3;11035:67;:::i;:::-;11028:74;;11111:93;11200:3;11111:93;:::i;:::-;11229:2;11224:3;11220:12;11213:19;;10872:366;;;:::o;11244:419::-;11410:4;11448:2;11437:9;11433:18;11425:26;;11497:9;11491:4;11487:20;11483:1;11472:9;11468:17;11461:47;11525:131;11651:4;11525:131;:::i;:::-;11517:139;;11244:419;;;:::o;11669:223::-;11809:34;11805:1;11797:6;11793:14;11786:58;11878:6;11873:2;11865:6;11861:15;11854:31;11669:223;:::o;11898:366::-;12040:3;12061:67;12125:2;12120:3;12061:67;:::i;:::-;12054:74;;12137:93;12226:3;12137:93;:::i;:::-;12255:2;12250:3;12246:12;12239:19;;11898:366;;;:::o;12270:419::-;12436:4;12474:2;12463:9;12459:18;12451:26;;12523:9;12517:4;12513:20;12509:1;12498:9;12494:17;12487:47;12551:131;12677:4;12551:131;:::i;:::-;12543:139;;12270:419;;;:::o;12695:227::-;12835:34;12831:1;12823:6;12819:14;12812:58;12904:10;12899:2;12891:6;12887:15;12880:35;12695:227;:::o;12928:366::-;13070:3;13091:67;13155:2;13150:3;13091:67;:::i;:::-;13084:74;;13167:93;13256:3;13167:93;:::i;:::-;13285:2;13280:3;13276:12;13269:19;;12928:366;;;:::o;13300:419::-;13466:4;13504:2;13493:9;13489:18;13481:26;;13553:9;13547:4;13543:20;13539:1;13528:9;13524:17;13517:47;13581:131;13707:4;13581:131;:::i;:::-;13573:139;;13300:419;;;:::o;13725:442::-;13874:4;13912:2;13901:9;13897:18;13889:26;;13925:71;13993:1;13982:9;13978:17;13969:6;13925:71;:::i;:::-;14006:72;14074:2;14063:9;14059:18;14050:6;14006:72;:::i;:::-;14088;14156:2;14145:9;14141:18;14132:6;14088:72;:::i;:::-;13725:442;;;;;;:::o;14173:191::-;14213:3;14232:20;14250:1;14232:20;:::i;:::-;14227:25;;14266:20;14284:1;14266:20;:::i;:::-;14261:25;;14309:1;14306;14302:9;14295:16;;14330:3;14327:1;14324:10;14321:36;;;14337:18;;:::i;:::-;14321:36;14173:191;;;;:::o;14370:227::-;14510:34;14506:1;14498:6;14494:14;14487:58;14579:10;14574:2;14566:6;14562:15;14555:35;14370:227;:::o;14603:366::-;14745:3;14766:67;14830:2;14825:3;14766:67;:::i;:::-;14759:74;;14842:93;14931:3;14842:93;:::i;:::-;14960:2;14955:3;14951:12;14944:19;;14603:366;;;:::o;14975:419::-;15141:4;15179:2;15168:9;15164:18;15156:26;;15228:9;15222:4;15218:20;15214:1;15203:9;15199:17;15192:47;15256:131;15382:4;15256:131;:::i;:::-;15248:139;;14975:419;;;:::o;15400:194::-;15440:4;15460:20;15478:1;15460:20;:::i;:::-;15455:25;;15494:20;15512:1;15494:20;:::i;:::-;15489:25;;15538:1;15535;15531:9;15523:17;;15562:1;15556:4;15553:11;15550:37;;;15567:18;;:::i;:::-;15550:37;15400:194;;;;:::o;15600:230::-;15740:34;15736:1;15728:6;15724:14;15717:58;15809:13;15804:2;15796:6;15792:15;15785:38;15600:230;:::o;15836:366::-;15978:3;15999:67;16063:2;16058:3;15999:67;:::i;:::-;15992:74;;16075:93;16164:3;16075:93;:::i;:::-;16193:2;16188:3;16184:12;16177:19;;15836:366;;;:::o;16208:419::-;16374:4;16412:2;16401:9;16397:18;16389:26;;16461:9;16455:4;16451:20;16447:1;16436:9;16432:17;16425:47;16489:131;16615:4;16489:131;:::i;:::-;16481:139;;16208:419;;;:::o

Swarm Source

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