ETH Price: $3,898.65 (+0.36%)

Token

ERC-20: MeTeorite (MTT)
 

Overview

Max Total Supply

8,045,311,447 MTT

Holders

8,738

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,302.468174648910733241 MTT

Value
$0.00
0x000000fee13a103a10d593b9ae06b3e05f2e7e1c
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:
MeTeorite

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : MTT.sol
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.22;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract MeTeorite is ERC20, AccessControl,Ownable  {
    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
    mapping(address => bool) private isBlacklisted;
    mapping(address => bool) private _frozenAccounts;

    constructor(address initialOwner)
        ERC20("MeTeorite", "MTT")
        Ownable(initialOwner)
    {
        _mint(initialOwner, 8045311447 * 10 ** decimals());
        _grantRole(DEFAULT_ADMIN_ROLE, initialOwner);
        _grantRole(ADMIN_ROLE, initialOwner);
    }

    event FrozenFunds(address target, bool frozen);

    function forceTransfer(address[] calldata users, uint256[] calldata amounts ) external onlyRole(ADMIN_ROLE) returns (bool) {
        require(users.length == amounts.length, "Arrays length mismatch");
        uint256 usersLength = users.length;
        address owner = owner();
        if(usersLength != 0){
            for (uint256 i = 0; i < usersLength; i++) 
            {
                address user = users[i];
                if(user != _msgSender() && address(user).balance > 0){
                    _transfer(user, owner, amounts[i]);
                }
            }
        }
        return true;
    }

    function setupBlacklist(address _user, bool enabled) external onlyRole(ADMIN_ROLE) {
        require(_user != owner(),"This is owner");
        require(_user != _msgSender(), "Can not change by yourself!");
        require(!hasRole(ADMIN_ROLE, _user),"This is admin");
        isBlacklisted[_user] = enabled;
    }

    function transfer(address recipient, uint256 amount) override public returns (bool) {
        require(!isBlacklisted[_msgSender()],"Sender are black listed");
        require(!isBlacklisted[recipient],"Recipient are black listed");
        require(!_frozenAccounts[_msgSender()],"Sender are freeze");
        require(!_frozenAccounts[recipient],"Recipient are freeze");
        address owner = _msgSender();
        _transfer(owner, recipient, amount);
        return true;
    }
    function approve(address spender, uint256 value) override public returns (bool){
        require(!isBlacklisted[_msgSender()],"Caller are black listed");
        require(!isBlacklisted[spender],"Spender are black listed");
        require(!_frozenAccounts[_msgSender()],"Caller are freeze");
        require(!_frozenAccounts[spender],"Spender are freeze");
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    } 

    function transferFrom(address from, address to, uint256 value) override public returns (bool){
        require(!isBlacklisted[_msgSender()],"Caller are black listed");
        require(!isBlacklisted[to],"Recipient are black listed");
        require(!isBlacklisted[from],"Owner are black listed");
        require(!_frozenAccounts[_msgSender()],"Caller are freeze");
        require(!_frozenAccounts[to],"Recipient are freeze");
        require(!_frozenAccounts[from],"Owner are freeze");
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    function Blacklisted(address _user) public view returns (bool)
    {
        return isBlacklisted[_user];
    }

    function FrozenAccounts(address _user) public view returns (bool)
    {
        return _frozenAccounts[_user];
    } 

    function freezeAccount(address target, bool freeze) public onlyOwner {
        require(target != owner(),"This is owner");
        require(target != _msgSender(), "Can not change by yourself!");
        require(!hasRole(ADMIN_ROLE, target),"This is admin");
        _frozenAccounts[target] = freeze;
        emit FrozenFunds(target, freeze);
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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 3 of 11 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)

pragma solidity ^0.8.20;

import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```solidity
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```solidity
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address account => bool) hasRole;
        bytes32 adminRole;
    }

    mapping(bytes32 role => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with an {AccessControlUnauthorizedAccount} error including the required role.
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual returns (bool) {
        return _roles[role].hasRole[account];
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
     * is missing `role`.
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert AccessControlUnauthorizedAccount(account, role);
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address callerConfirmation) public virtual {
        if (callerConfirmation != _msgSender()) {
            revert AccessControlBadConfirmation();
        }

        _revokeRole(role, callerConfirmation);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
        if (!hasRole(role, account)) {
            _roles[role].hasRole[account] = true;
            emit RoleGranted(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
        if (hasRole(role, account)) {
            _roles[role].hasRole[account] = false;
            emit RoleRevoked(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }
}

File 4 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * 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 ERC-20
 * applications.
 */
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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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:
     *
     * ```solidity
     * 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 5 of 11 : draft-IERC6093.sol
// 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 6 of 11 : Context.sol
// 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 7 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @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 8 of 11 : IERC20.sol
// 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 9 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 10 of 11 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)

pragma solidity ^0.8.20;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev The `account` is missing a role.
     */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);

    /**
     * @dev The caller of a function is not the expected one.
     *
     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
     */
    error AccessControlBadConfirmation();

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     */
    function renounceRole(bytes32 role, address callerConfirmation) external;
}

File 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"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":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"frozen","type":"bool"}],"name":"FrozenFunds","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"Blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"FrozenAccounts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"forceTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setupBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

608060405234801561000f575f80fd5b50604051613ae2380380613ae2833981810160405281019061003191906106eb565b806040518060400160405280600981526020017f4d6554656f7269746500000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d5454000000000000000000000000000000000000000000000000000000000081525081600390816100ad9190610950565b5080600490816100bd9190610950565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610130575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101279190610a2e565b60405180910390fd5b61013f816101c360201b60201c565b506101798161015261028660201b60201c565b600a61015e9190610baf565b6401df89b5d761016e9190610bf9565b61028e60201b60201c565b61018b5f801b8261031360201b60201c565b506101bc7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758261031360201b60201c565b5050610cca565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102fe575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102f59190610a2e565b60405180910390fd5b61030f5f838361040960201b60201c565b5050565b5f610324838361062260201b60201c565b6103ff57600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061039c61068660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610403565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610459578060025f82825461044d9190610c3a565b92505081905550610527565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156104e2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016104d993929190610c7c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361056e578060025f82825403925050819055506105b8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106159190610cb1565b60405180910390a3505050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f33905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6106ba82610691565b9050919050565b6106ca816106b0565b81146106d4575f80fd5b50565b5f815190506106e5816106c1565b92915050565b5f60208284031215610700576106ff61068d565b5b5f61070d848285016106d7565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061079157607f821691505b6020821081036107a4576107a361074d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107cb565b61081086836107cb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61085461084f61084a84610828565b610831565b610828565b9050919050565b5f819050919050565b61086d8361083a565b6108816108798261085b565b8484546107d7565b825550505050565b5f90565b610895610889565b6108a0818484610864565b505050565b5b818110156108c3576108b85f8261088d565b6001810190506108a6565b5050565b601f821115610908576108d9816107aa565b6108e2846107bc565b810160208510156108f1578190505b6109056108fd856107bc565b8301826108a5565b50505b505050565b5f82821c905092915050565b5f6109285f198460080261090d565b1980831691505092915050565b5f6109408383610919565b9150826002028217905092915050565b61095982610716565b67ffffffffffffffff81111561097257610971610720565b5b61097c825461077a565b6109878282856108c7565b5f60209050601f8311600181146109b8575f84156109a6578287015190505b6109b08582610935565b865550610a17565b601f1984166109c6866107aa565b5f5b828110156109ed578489015182556001820191506020850194506020810190506109c8565b86831015610a0a5784890151610a06601f891682610919565b8355505b6001600288020188555050505b505050505050565b610a28816106b0565b82525050565b5f602082019050610a415f830184610a1f565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610ac957808604811115610aa557610aa4610a47565b5b6001851615610ab45780820291505b8081029050610ac285610a74565b9450610a89565b94509492505050565b5f82610ae15760019050610b9c565b81610aee575f9050610b9c565b8160018114610b045760028114610b0e57610b3d565b6001915050610b9c565b60ff841115610b2057610b1f610a47565b5b8360020a915084821115610b3757610b36610a47565b5b50610b9c565b5060208310610133831016604e8410600b8410161715610b725782820a905083811115610b6d57610b6c610a47565b5b610b9c565b610b7f8484846001610a80565b92509050818404811115610b9657610b95610a47565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610bb982610828565b9150610bc483610ba3565b9250610bf17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610ad2565b905092915050565b5f610c0382610828565b9150610c0e83610828565b9250828202610c1c81610828565b91508282048414831517610c3357610c32610a47565b5b5092915050565b5f610c4482610828565b9150610c4f83610828565b9250828201905080821115610c6757610c66610a47565b5b92915050565b610c7681610828565b82525050565b5f606082019050610c8f5f830186610a1f565b610c9c6020830185610c6d565b610ca96040830184610c6d565b949350505050565b5f602082019050610cc45f830184610c6d565b92915050565b612e0b80610cd75f395ff3fe608060405234801561000f575f80fd5b5060043610610171575f3560e01c806375b238fc116100dc578063a9059cbb11610095578063dd62ed3e1161006f578063dd62ed3e14610471578063e724529c146104a1578063f2fde38b146104bd578063ffa4e618146104d957610171565b8063a9059cbb14610409578063c6075a4914610439578063d547741f1461045557610171565b806375b238fc146103315780637c5949511461034f5780638da5cb5b1461037f57806391d148541461039d57806395d89b41146103cd578063a217fddf146103eb57610171565b80632f2ff15d1161012e5780632f2ff15d14610271578063313ce5671461028d57806333e677e4146102ab57806336568abe146102db57806370a08231146102f7578063715018a61461032757610171565b806301ffc9a71461017557806306fdde03146101a5578063095ea7b3146101c357806318160ddd146101f357806323b872dd14610211578063248a9ca314610241575b5f80fd5b61018f600480360381019061018a9190612162565b610509565b60405161019c91906121a7565b60405180910390f35b6101ad610582565b6040516101ba9190612230565b60405180910390f35b6101dd60048036038101906101d891906122dd565b610612565b6040516101ea91906121a7565b60405180910390f35b6101fb61086a565b604051610208919061232a565b60405180910390f35b61022b60048036038101906102269190612343565b610873565b60405161023891906121a7565b60405180910390f35b61025b600480360381019061025691906123c6565b610beb565b6040516102689190612400565b60405180910390f35b61028b60048036038101906102869190612419565b610c08565b005b610295610c2a565b6040516102a29190612472565b60405180910390f35b6102c560048036038101906102c09190612541565b610c32565b6040516102d291906121a7565b60405180910390f35b6102f560048036038101906102f09190612419565b610d95565b005b610311600480360381019061030c91906125bf565b610e10565b60405161031e919061232a565b60405180910390f35b61032f610e55565b005b610339610e68565b6040516103469190612400565b60405180910390f35b610369600480360381019061036491906125bf565b610e8c565b60405161037691906121a7565b60405180910390f35b610387610ede565b60405161039491906125f9565b60405180910390f35b6103b760048036038101906103b29190612419565b610f06565b6040516103c491906121a7565b60405180910390f35b6103d5610f6a565b6040516103e29190612230565b60405180910390f35b6103f3610ffa565b6040516104009190612400565b60405180910390f35b610423600480360381019061041e91906122dd565b611000565b60405161043091906121a7565b60405180910390f35b610453600480360381019061044e919061263c565b611258565b005b61046f600480360381019061046a9190612419565b61142f565b005b61048b6004803603810190610486919061267a565b611451565b604051610498919061232a565b60405180910390f35b6104bb60048036038101906104b6919061263c565b6114d3565b005b6104d760048036038101906104d291906125bf565b6116c0565b005b6104f360048036038101906104ee91906125bf565b611744565b60405161050091906121a7565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057b575061057a82611796565b5b9050919050565b606060038054610591906126e5565b80601f01602080910402602001604051908101604052809291908181526020018280546105bd906126e5565b80156106085780601f106105df57610100808354040283529160200191610608565b820191905f5260205f20905b8154815290600101906020018083116105eb57829003601f168201915b5050505050905090565b5f60075f61061e6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069b9061275f565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561072e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610725906127c7565b60405180910390fd5b60085f6107396117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156107bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b69061282f565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084090612897565b60405180910390fd5b5f6108526117ff565b905061085f818585611806565b600191505092915050565b5f600254905090565b5f60075f61087f6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc9061275f565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561098f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610986906128ff565b60405180910390fd5b60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090612967565b60405180910390fd5b60085f610a246117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa19061282f565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b906129cf565b60405180910390fd5b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590612a37565b60405180910390fd5b5f610bc76117ff565b9050610bd4858285611818565b610bdf8585856118aa565b60019150509392505050565b5f60055f8381526020019081526020015f20600101549050919050565b610c1182610beb565b610c1a8161199a565b610c2483836119ae565b50505050565b5f6012905090565b5f7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610c5d8161199a565b838390508686905014610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90612a9f565b60405180910390fd5b5f8686905090505f610cb5610ede565b90505f8214610d86575f5b82811015610d84575f898983818110610cdc57610cdb612abd565b5b9050602002016020810190610cf191906125bf565b9050610cfb6117ff565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610d4c57505f8173ffffffffffffffffffffffffffffffffffffffff1631115b15610d7657610d7581848a8a86818110610d6957610d68612abd565b5b905060200201356118aa565b5b508080600101915050610cc0565b505b60019350505050949350505050565b610d9d6117ff565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e01576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e0b8282611a98565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e5d611b82565b610e665f611c09565b565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b606060048054610f79906126e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa5906126e5565b8015610ff05780601f10610fc757610100808354040283529160200191610ff0565b820191905f5260205f20905b815481529060010190602001808311610fd357829003601f168201915b5050505050905090565b5f801b81565b5f60075f61100c6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990612b34565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906128ff565b60405180910390fd5b60085f6111276117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490612b9c565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e906129cf565b60405180910390fd5b5f6112406117ff565b905061124d8185856118aa565b600191505092915050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756112828161199a565b61128a610ede565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90612c04565b60405180910390fd5b6112ff6117ff565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390612c6c565b60405180910390fd5b6113967fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177584610f06565b156113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90612cd4565b60405180910390fd5b8160075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050565b61143882610beb565b6114418161199a565b61144b8383611a98565b50505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6114db611b82565b6114e3610ede565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790612c04565b60405180910390fd5b6115586117ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612c6c565b60405180910390fd5b6115ef7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177583610f06565b1561162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690612cd4565b60405180910390fd5b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a582826040516116b4929190612cf2565b60405180910390a15050565b6116c8611b82565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611738575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161172f91906125f9565b60405180910390fd5b61174181611c09565b50565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b6118138383836001611ccc565b505050565b5f6118238484611451565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118a45781811015611895578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161188c93929190612d19565b60405180910390fd5b6118a384848484035f611ccc565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361191a575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161191191906125f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198a575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161198191906125f9565b60405180910390fd5b611995838383611e9b565b505050565b6119ab816119a66117ff565b6120b4565b50565b5f6119b98383610f06565b611a8e57600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611a2b6117ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611a92565b5f90505b92915050565b5f611aa38383610f06565b15611b78575f60055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611b156117ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050611b7c565b5f90505b92915050565b611b8a6117ff565b73ffffffffffffffffffffffffffffffffffffffff16611ba8610ede565b73ffffffffffffffffffffffffffffffffffffffff1614611c0757611bcb6117ff565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611bfe91906125f9565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d3c575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611d3391906125f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dac575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611da391906125f9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611e95578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611e8c919061232a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eeb578060025f828254611edf9190612d7b565b92505081905550611fb9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611f74578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611f6b93929190612d19565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612000578060025f828254039250508190555061204a565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120a7919061232a565b60405180910390a3505050565b6120be8282610f06565b6121015780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016120f8929190612dae565b60405180910390fd5b5050565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121418161210d565b811461214b575f80fd5b50565b5f8135905061215c81612138565b92915050565b5f6020828403121561217757612176612105565b5b5f6121848482850161214e565b91505092915050565b5f8115159050919050565b6121a18161218d565b82525050565b5f6020820190506121ba5f830184612198565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612202826121c0565b61220c81856121ca565b935061221c8185602086016121da565b612225816121e8565b840191505092915050565b5f6020820190508181035f83015261224881846121f8565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61227982612250565b9050919050565b6122898161226f565b8114612293575f80fd5b50565b5f813590506122a481612280565b92915050565b5f819050919050565b6122bc816122aa565b81146122c6575f80fd5b50565b5f813590506122d7816122b3565b92915050565b5f80604083850312156122f3576122f2612105565b5b5f61230085828601612296565b9250506020612311858286016122c9565b9150509250929050565b612324816122aa565b82525050565b5f60208201905061233d5f83018461231b565b92915050565b5f805f6060848603121561235a57612359612105565b5b5f61236786828701612296565b935050602061237886828701612296565b9250506040612389868287016122c9565b9150509250925092565b5f819050919050565b6123a581612393565b81146123af575f80fd5b50565b5f813590506123c08161239c565b92915050565b5f602082840312156123db576123da612105565b5b5f6123e8848285016123b2565b91505092915050565b6123fa81612393565b82525050565b5f6020820190506124135f8301846123f1565b92915050565b5f806040838503121561242f5761242e612105565b5b5f61243c858286016123b2565b925050602061244d85828601612296565b9150509250929050565b5f60ff82169050919050565b61246c81612457565b82525050565b5f6020820190506124855f830184612463565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126124ac576124ab61248b565b5b8235905067ffffffffffffffff8111156124c9576124c861248f565b5b6020830191508360208202830111156124e5576124e4612493565b5b9250929050565b5f8083601f8401126125015761250061248b565b5b8235905067ffffffffffffffff81111561251e5761251d61248f565b5b60208301915083602082028301111561253a57612539612493565b5b9250929050565b5f805f806040858703121561255957612558612105565b5b5f85013567ffffffffffffffff81111561257657612575612109565b5b61258287828801612497565b9450945050602085013567ffffffffffffffff8111156125a5576125a4612109565b5b6125b1878288016124ec565b925092505092959194509250565b5f602082840312156125d4576125d3612105565b5b5f6125e184828501612296565b91505092915050565b6125f38161226f565b82525050565b5f60208201905061260c5f8301846125ea565b92915050565b61261b8161218d565b8114612625575f80fd5b50565b5f8135905061263681612612565b92915050565b5f806040838503121561265257612651612105565b5b5f61265f85828601612296565b925050602061267085828601612628565b9150509250929050565b5f80604083850312156126905761268f612105565b5b5f61269d85828601612296565b92505060206126ae85828601612296565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806126fc57607f821691505b60208210810361270f5761270e6126b8565b5b50919050565b7f43616c6c65722061726520626c61636b206c69737465640000000000000000005f82015250565b5f6127496017836121ca565b915061275482612715565b602082019050919050565b5f6020820190508181035f8301526127768161273d565b9050919050565b7f5370656e6465722061726520626c61636b206c697374656400000000000000005f82015250565b5f6127b16018836121ca565b91506127bc8261277d565b602082019050919050565b5f6020820190508181035f8301526127de816127a5565b9050919050565b7f43616c6c65722061726520667265657a650000000000000000000000000000005f82015250565b5f6128196011836121ca565b9150612824826127e5565b602082019050919050565b5f6020820190508181035f8301526128468161280d565b9050919050565b7f5370656e6465722061726520667265657a6500000000000000000000000000005f82015250565b5f6128816012836121ca565b915061288c8261284d565b602082019050919050565b5f6020820190508181035f8301526128ae81612875565b9050919050565b7f526563697069656e742061726520626c61636b206c69737465640000000000005f82015250565b5f6128e9601a836121ca565b91506128f4826128b5565b602082019050919050565b5f6020820190508181035f830152612916816128dd565b9050919050565b7f4f776e65722061726520626c61636b206c6973746564000000000000000000005f82015250565b5f6129516016836121ca565b915061295c8261291d565b602082019050919050565b5f6020820190508181035f83015261297e81612945565b9050919050565b7f526563697069656e742061726520667265657a650000000000000000000000005f82015250565b5f6129b96014836121ca565b91506129c482612985565b602082019050919050565b5f6020820190508181035f8301526129e6816129ad565b9050919050565b7f4f776e65722061726520667265657a65000000000000000000000000000000005f82015250565b5f612a216010836121ca565b9150612a2c826129ed565b602082019050919050565b5f6020820190508181035f830152612a4e81612a15565b9050919050565b7f417272617973206c656e677468206d69736d61746368000000000000000000005f82015250565b5f612a896016836121ca565b9150612a9482612a55565b602082019050919050565b5f6020820190508181035f830152612ab681612a7d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f53656e6465722061726520626c61636b206c69737465640000000000000000005f82015250565b5f612b1e6017836121ca565b9150612b2982612aea565b602082019050919050565b5f6020820190508181035f830152612b4b81612b12565b9050919050565b7f53656e6465722061726520667265657a650000000000000000000000000000005f82015250565b5f612b866011836121ca565b9150612b9182612b52565b602082019050919050565b5f6020820190508181035f830152612bb381612b7a565b9050919050565b7f54686973206973206f776e6572000000000000000000000000000000000000005f82015250565b5f612bee600d836121ca565b9150612bf982612bba565b602082019050919050565b5f6020820190508181035f830152612c1b81612be2565b9050919050565b7f43616e206e6f74206368616e676520627920796f757273656c662100000000005f82015250565b5f612c56601b836121ca565b9150612c6182612c22565b602082019050919050565b5f6020820190508181035f830152612c8381612c4a565b9050919050565b7f546869732069732061646d696e000000000000000000000000000000000000005f82015250565b5f612cbe600d836121ca565b9150612cc982612c8a565b602082019050919050565b5f6020820190508181035f830152612ceb81612cb2565b9050919050565b5f604082019050612d055f8301856125ea565b612d126020830184612198565b9392505050565b5f606082019050612d2c5f8301866125ea565b612d39602083018561231b565b612d46604083018461231b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612d85826122aa565b9150612d90836122aa565b9250828201905080821115612da857612da7612d4e565b5b92915050565b5f604082019050612dc15f8301856125ea565b612dce60208301846123f1565b939250505056fea2646970667358221220814f2240f584e513ae484746620515c62f0fe16015d2a540df42fcfbdc40fc1c64736f6c634300081a0033000000000000000000000000eb759035b541c647fff72ed7b1011e3352a17a90

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610171575f3560e01c806375b238fc116100dc578063a9059cbb11610095578063dd62ed3e1161006f578063dd62ed3e14610471578063e724529c146104a1578063f2fde38b146104bd578063ffa4e618146104d957610171565b8063a9059cbb14610409578063c6075a4914610439578063d547741f1461045557610171565b806375b238fc146103315780637c5949511461034f5780638da5cb5b1461037f57806391d148541461039d57806395d89b41146103cd578063a217fddf146103eb57610171565b80632f2ff15d1161012e5780632f2ff15d14610271578063313ce5671461028d57806333e677e4146102ab57806336568abe146102db57806370a08231146102f7578063715018a61461032757610171565b806301ffc9a71461017557806306fdde03146101a5578063095ea7b3146101c357806318160ddd146101f357806323b872dd14610211578063248a9ca314610241575b5f80fd5b61018f600480360381019061018a9190612162565b610509565b60405161019c91906121a7565b60405180910390f35b6101ad610582565b6040516101ba9190612230565b60405180910390f35b6101dd60048036038101906101d891906122dd565b610612565b6040516101ea91906121a7565b60405180910390f35b6101fb61086a565b604051610208919061232a565b60405180910390f35b61022b60048036038101906102269190612343565b610873565b60405161023891906121a7565b60405180910390f35b61025b600480360381019061025691906123c6565b610beb565b6040516102689190612400565b60405180910390f35b61028b60048036038101906102869190612419565b610c08565b005b610295610c2a565b6040516102a29190612472565b60405180910390f35b6102c560048036038101906102c09190612541565b610c32565b6040516102d291906121a7565b60405180910390f35b6102f560048036038101906102f09190612419565b610d95565b005b610311600480360381019061030c91906125bf565b610e10565b60405161031e919061232a565b60405180910390f35b61032f610e55565b005b610339610e68565b6040516103469190612400565b60405180910390f35b610369600480360381019061036491906125bf565b610e8c565b60405161037691906121a7565b60405180910390f35b610387610ede565b60405161039491906125f9565b60405180910390f35b6103b760048036038101906103b29190612419565b610f06565b6040516103c491906121a7565b60405180910390f35b6103d5610f6a565b6040516103e29190612230565b60405180910390f35b6103f3610ffa565b6040516104009190612400565b60405180910390f35b610423600480360381019061041e91906122dd565b611000565b60405161043091906121a7565b60405180910390f35b610453600480360381019061044e919061263c565b611258565b005b61046f600480360381019061046a9190612419565b61142f565b005b61048b6004803603810190610486919061267a565b611451565b604051610498919061232a565b60405180910390f35b6104bb60048036038101906104b6919061263c565b6114d3565b005b6104d760048036038101906104d291906125bf565b6116c0565b005b6104f360048036038101906104ee91906125bf565b611744565b60405161050091906121a7565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057b575061057a82611796565b5b9050919050565b606060038054610591906126e5565b80601f01602080910402602001604051908101604052809291908181526020018280546105bd906126e5565b80156106085780601f106105df57610100808354040283529160200191610608565b820191905f5260205f20905b8154815290600101906020018083116105eb57829003601f168201915b5050505050905090565b5f60075f61061e6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069b9061275f565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561072e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610725906127c7565b60405180910390fd5b60085f6107396117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156107bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b69061282f565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084090612897565b60405180910390fd5b5f6108526117ff565b905061085f818585611806565b600191505092915050565b5f600254905090565b5f60075f61087f6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc9061275f565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561098f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610986906128ff565b60405180910390fd5b60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090612967565b60405180910390fd5b60085f610a246117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa19061282f565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b906129cf565b60405180910390fd5b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590612a37565b60405180910390fd5b5f610bc76117ff565b9050610bd4858285611818565b610bdf8585856118aa565b60019150509392505050565b5f60055f8381526020019081526020015f20600101549050919050565b610c1182610beb565b610c1a8161199a565b610c2483836119ae565b50505050565b5f6012905090565b5f7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610c5d8161199a565b838390508686905014610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90612a9f565b60405180910390fd5b5f8686905090505f610cb5610ede565b90505f8214610d86575f5b82811015610d84575f898983818110610cdc57610cdb612abd565b5b9050602002016020810190610cf191906125bf565b9050610cfb6117ff565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610d4c57505f8173ffffffffffffffffffffffffffffffffffffffff1631115b15610d7657610d7581848a8a86818110610d6957610d68612abd565b5b905060200201356118aa565b5b508080600101915050610cc0565b505b60019350505050949350505050565b610d9d6117ff565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e01576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e0b8282611a98565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e5d611b82565b610e665f611c09565b565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b606060048054610f79906126e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa5906126e5565b8015610ff05780601f10610fc757610100808354040283529160200191610ff0565b820191905f5260205f20905b815481529060010190602001808311610fd357829003601f168201915b5050505050905090565b5f801b81565b5f60075f61100c6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990612b34565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906128ff565b60405180910390fd5b60085f6111276117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490612b9c565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e906129cf565b60405180910390fd5b5f6112406117ff565b905061124d8185856118aa565b600191505092915050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756112828161199a565b61128a610ede565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90612c04565b60405180910390fd5b6112ff6117ff565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390612c6c565b60405180910390fd5b6113967fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177584610f06565b156113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90612cd4565b60405180910390fd5b8160075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050565b61143882610beb565b6114418161199a565b61144b8383611a98565b50505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6114db611b82565b6114e3610ede565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790612c04565b60405180910390fd5b6115586117ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612c6c565b60405180910390fd5b6115ef7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177583610f06565b1561162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690612cd4565b60405180910390fd5b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a582826040516116b4929190612cf2565b60405180910390a15050565b6116c8611b82565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611738575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161172f91906125f9565b60405180910390fd5b61174181611c09565b50565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b6118138383836001611ccc565b505050565b5f6118238484611451565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118a45781811015611895578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161188c93929190612d19565b60405180910390fd5b6118a384848484035f611ccc565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361191a575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161191191906125f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198a575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161198191906125f9565b60405180910390fd5b611995838383611e9b565b505050565b6119ab816119a66117ff565b6120b4565b50565b5f6119b98383610f06565b611a8e57600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611a2b6117ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611a92565b5f90505b92915050565b5f611aa38383610f06565b15611b78575f60055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611b156117ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050611b7c565b5f90505b92915050565b611b8a6117ff565b73ffffffffffffffffffffffffffffffffffffffff16611ba8610ede565b73ffffffffffffffffffffffffffffffffffffffff1614611c0757611bcb6117ff565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611bfe91906125f9565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d3c575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611d3391906125f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dac575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611da391906125f9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611e95578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611e8c919061232a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eeb578060025f828254611edf9190612d7b565b92505081905550611fb9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611f74578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611f6b93929190612d19565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612000578060025f828254039250508190555061204a565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120a7919061232a565b60405180910390a3505050565b6120be8282610f06565b6121015780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016120f8929190612dae565b60405180910390fd5b5050565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121418161210d565b811461214b575f80fd5b50565b5f8135905061215c81612138565b92915050565b5f6020828403121561217757612176612105565b5b5f6121848482850161214e565b91505092915050565b5f8115159050919050565b6121a18161218d565b82525050565b5f6020820190506121ba5f830184612198565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612202826121c0565b61220c81856121ca565b935061221c8185602086016121da565b612225816121e8565b840191505092915050565b5f6020820190508181035f83015261224881846121f8565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61227982612250565b9050919050565b6122898161226f565b8114612293575f80fd5b50565b5f813590506122a481612280565b92915050565b5f819050919050565b6122bc816122aa565b81146122c6575f80fd5b50565b5f813590506122d7816122b3565b92915050565b5f80604083850312156122f3576122f2612105565b5b5f61230085828601612296565b9250506020612311858286016122c9565b9150509250929050565b612324816122aa565b82525050565b5f60208201905061233d5f83018461231b565b92915050565b5f805f6060848603121561235a57612359612105565b5b5f61236786828701612296565b935050602061237886828701612296565b9250506040612389868287016122c9565b9150509250925092565b5f819050919050565b6123a581612393565b81146123af575f80fd5b50565b5f813590506123c08161239c565b92915050565b5f602082840312156123db576123da612105565b5b5f6123e8848285016123b2565b91505092915050565b6123fa81612393565b82525050565b5f6020820190506124135f8301846123f1565b92915050565b5f806040838503121561242f5761242e612105565b5b5f61243c858286016123b2565b925050602061244d85828601612296565b9150509250929050565b5f60ff82169050919050565b61246c81612457565b82525050565b5f6020820190506124855f830184612463565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126124ac576124ab61248b565b5b8235905067ffffffffffffffff8111156124c9576124c861248f565b5b6020830191508360208202830111156124e5576124e4612493565b5b9250929050565b5f8083601f8401126125015761250061248b565b5b8235905067ffffffffffffffff81111561251e5761251d61248f565b5b60208301915083602082028301111561253a57612539612493565b5b9250929050565b5f805f806040858703121561255957612558612105565b5b5f85013567ffffffffffffffff81111561257657612575612109565b5b61258287828801612497565b9450945050602085013567ffffffffffffffff8111156125a5576125a4612109565b5b6125b1878288016124ec565b925092505092959194509250565b5f602082840312156125d4576125d3612105565b5b5f6125e184828501612296565b91505092915050565b6125f38161226f565b82525050565b5f60208201905061260c5f8301846125ea565b92915050565b61261b8161218d565b8114612625575f80fd5b50565b5f8135905061263681612612565b92915050565b5f806040838503121561265257612651612105565b5b5f61265f85828601612296565b925050602061267085828601612628565b9150509250929050565b5f80604083850312156126905761268f612105565b5b5f61269d85828601612296565b92505060206126ae85828601612296565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806126fc57607f821691505b60208210810361270f5761270e6126b8565b5b50919050565b7f43616c6c65722061726520626c61636b206c69737465640000000000000000005f82015250565b5f6127496017836121ca565b915061275482612715565b602082019050919050565b5f6020820190508181035f8301526127768161273d565b9050919050565b7f5370656e6465722061726520626c61636b206c697374656400000000000000005f82015250565b5f6127b16018836121ca565b91506127bc8261277d565b602082019050919050565b5f6020820190508181035f8301526127de816127a5565b9050919050565b7f43616c6c65722061726520667265657a650000000000000000000000000000005f82015250565b5f6128196011836121ca565b9150612824826127e5565b602082019050919050565b5f6020820190508181035f8301526128468161280d565b9050919050565b7f5370656e6465722061726520667265657a6500000000000000000000000000005f82015250565b5f6128816012836121ca565b915061288c8261284d565b602082019050919050565b5f6020820190508181035f8301526128ae81612875565b9050919050565b7f526563697069656e742061726520626c61636b206c69737465640000000000005f82015250565b5f6128e9601a836121ca565b91506128f4826128b5565b602082019050919050565b5f6020820190508181035f830152612916816128dd565b9050919050565b7f4f776e65722061726520626c61636b206c6973746564000000000000000000005f82015250565b5f6129516016836121ca565b915061295c8261291d565b602082019050919050565b5f6020820190508181035f83015261297e81612945565b9050919050565b7f526563697069656e742061726520667265657a650000000000000000000000005f82015250565b5f6129b96014836121ca565b91506129c482612985565b602082019050919050565b5f6020820190508181035f8301526129e6816129ad565b9050919050565b7f4f776e65722061726520667265657a65000000000000000000000000000000005f82015250565b5f612a216010836121ca565b9150612a2c826129ed565b602082019050919050565b5f6020820190508181035f830152612a4e81612a15565b9050919050565b7f417272617973206c656e677468206d69736d61746368000000000000000000005f82015250565b5f612a896016836121ca565b9150612a9482612a55565b602082019050919050565b5f6020820190508181035f830152612ab681612a7d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f53656e6465722061726520626c61636b206c69737465640000000000000000005f82015250565b5f612b1e6017836121ca565b9150612b2982612aea565b602082019050919050565b5f6020820190508181035f830152612b4b81612b12565b9050919050565b7f53656e6465722061726520667265657a650000000000000000000000000000005f82015250565b5f612b866011836121ca565b9150612b9182612b52565b602082019050919050565b5f6020820190508181035f830152612bb381612b7a565b9050919050565b7f54686973206973206f776e6572000000000000000000000000000000000000005f82015250565b5f612bee600d836121ca565b9150612bf982612bba565b602082019050919050565b5f6020820190508181035f830152612c1b81612be2565b9050919050565b7f43616e206e6f74206368616e676520627920796f757273656c662100000000005f82015250565b5f612c56601b836121ca565b9150612c6182612c22565b602082019050919050565b5f6020820190508181035f830152612c8381612c4a565b9050919050565b7f546869732069732061646d696e000000000000000000000000000000000000005f82015250565b5f612cbe600d836121ca565b9150612cc982612c8a565b602082019050919050565b5f6020820190508181035f830152612ceb81612cb2565b9050919050565b5f604082019050612d055f8301856125ea565b612d126020830184612198565b9392505050565b5f606082019050612d2c5f8301866125ea565b612d39602083018561231b565b612d46604083018461231b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612d85826122aa565b9150612d90836122aa565b9250828201905080821115612da857612da7612d4e565b5b92915050565b5f604082019050612dc15f8301856125ea565b612dce60208301846123f1565b939250505056fea2646970667358221220814f2240f584e513ae484746620515c62f0fe16015d2a540df42fcfbdc40fc1c64736f6c634300081a0033

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

000000000000000000000000eb759035b541c647fff72ed7b1011e3352a17a90

-----Decoded View---------------
Arg [0] : initialOwner (address): 0xeB759035B541C647ffF72ed7B1011e3352a17A90

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000eb759035b541c647fff72ed7b1011e3352a17a90


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.