ETH Price: $3,347.11 (-1.51%)

Token

Butter (BUTT)
 

Overview

Max Total Supply

20,385,896.538501958592038659 BUTT

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11 BUTT

Value
$0.00
0x04542afd320819eb69d88029e6df225a6e897147
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Butter

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 22 : Butter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "./ERC20Resource.sol";

contract Butter is ERC20Resource {
    function initialize(
        address spatialSystem_,
        uint256 transferRadius_,
        address[] memory approvedSpenders
    ) public initializer {
        __ERC20Resource_init(
            "Butter",
            "BUTT",
            spatialSystem_,
            transferRadius_,
            approvedSpenders
        );
    }
}

File 2 of 22 : IERC1363.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1363.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC165.sol";

interface IERC1363 is IERC165, IERC20 {
    /*
     * Note: the ERC-165 identifier for this interface is 0x4bbee2df.
     * 0x4bbee2df ===
     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^
     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)'))
     */

    /*
     * Note: the ERC-165 identifier for this interface is 0xfb9ec8ce.
     * 0xfb9ec8ce ===
     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
     */

    /**
     * @dev Transfer tokens from `msg.sender` to another address and then call `onTransferReceived` on receiver
     * @param to address The address which you want to transfer to
     * @param value uint256 The amount of tokens to be transferred
     * @return true unless throwing
     */
    function transferAndCall(address to, uint256 value) external returns (bool);

    /**
     * @dev Transfer tokens from `msg.sender` to another address and then call `onTransferReceived` on receiver
     * @param to address The address which you want to transfer to
     * @param value uint256 The amount of tokens to be transferred
     * @param data bytes Additional data with no specified format, sent in call to `to`
     * @return true unless throwing
     */
    function transferAndCall(
        address to,
        uint256 value,
        bytes memory data
    ) external returns (bool);

    /**
     * @dev Transfer tokens from one address to another and then call `onTransferReceived` on receiver
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 The amount of tokens to be transferred
     * @return true unless throwing
     */
    function transferFromAndCall(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    /**
     * @dev Transfer tokens from one address to another and then call `onTransferReceived` on receiver
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 The amount of tokens to be transferred
     * @param data bytes Additional data with no specified format, sent in call to `to`
     * @return true unless throwing
     */
    function transferFromAndCall(
        address from,
        address to,
        uint256 value,
        bytes memory data
    ) external returns (bool);

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender
     * and then call `onApprovalReceived` on spender.
     * @param spender address The address which will spend the funds
     * @param value uint256 The amount of tokens to be spent
     */
    function approveAndCall(address spender, uint256 value) external returns (bool);

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender
     * and then call `onApprovalReceived` on spender.
     * @param spender address The address which will spend the funds
     * @param value uint256 The amount of tokens to be spent
     * @param data bytes Additional data with no specified format, sent in call to `spender`
     */
    function approveAndCall(
        address spender,
        uint256 value,
        bytes memory data
    ) external returns (bool);
}

File 3 of 22 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

File 4 of 22 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 5 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 6 of 22 : IERC1363Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1363Receiver.sol)

pragma solidity ^0.8.0;

interface IERC1363Receiver {
    /*
     * Note: the ERC-165 identifier for this interface is 0x88a7ca5c.
     * 0x88a7ca5c === bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))
     */

    /**
     * @notice Handle the receipt of ERC1363 tokens
     * @dev Any ERC1363 smart contract calls this function on the recipient
     * after a `transfer` or a `transferFrom`. This function MAY throw to revert and reject the
     * transfer. Return of other than the magic value MUST result in the
     * transaction being reverted.
     * Note: the token contract address is always the message sender.
     * @param operator address The address which called `transferAndCall` or `transferFromAndCall` function
     * @param from address The address which are token transferred from
     * @param value uint256 The amount of tokens transferred
     * @param data bytes Additional data with no specified format
     * @return `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))`
     *  unless throwing
     */
    function onTransferReceived(
        address operator,
        address from,
        uint256 value,
        bytes memory data
    ) external returns (bytes4);
}

File 7 of 22 : IERC1363Spender.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1363Spender.sol)

pragma solidity ^0.8.0;

interface IERC1363Spender {
    /*
     * Note: the ERC-165 identifier for this interface is 0x7b04a2d0.
     * 0x7b04a2d0 === bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))
     */

    /**
     * @notice Handle the approval of ERC1363 tokens
     * @dev Any ERC1363 smart contract calls this function on the recipient
     * after an `approve`. This function MAY throw to revert and reject the
     * approval. Return of other than the magic value MUST result in the
     * transaction being reverted.
     * Note: the token contract address is always the message sender.
     * @param owner address The address which called `approveAndCall` function
     * @param value uint256 The amount of tokens to be spent
     * @param data bytes Additional data with no specified format
     * @return `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))`
     *  unless throwing
     */
    function onApprovalReceived(
        address owner,
        uint256 value,
        bytes memory data
    ) external returns (bytes4);
}

File 8 of 22 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/Address.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Internal function that returns the initialized version. Returns `_initialized`
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Internal function that returns the initialized version. Returns `_initializing`
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}

File 9 of 22 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

File 10 of 22 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 11 of 22 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 12 of 22 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 13 of 22 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 14 of 22 : Multicall.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol)

pragma solidity ^0.8.0;

import "./Address.sol";

/**
 * @dev Provides a function to batch together multiple calls in a single external call.
 *
 * _Available since v4.1._
 */
abstract contract Multicall {
    /**
     * @dev Receives and executes a batch of function calls on this contract.
     */
    function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
        results = new bytes[](data.length);
        for (uint256 i = 0; i < data.length; i++) {
            results[i] = Address.functionDelegateCall(address(this), data[i]);
        }
        return results;
    }
}

File 15 of 22 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 16 of 22 : ERC20Resource.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/Multicall.sol";
import "./extensions/ERC20EntityBurnable.sol";
import "./systems/ISpatialSystem.sol";
import "./IMiaocraft.sol";

contract ERC20Resource is ERC20EntityBurnable, Ownable, Multicall {
    ISpatialSystem public spatialSystem;

    uint256 public transferRadius;

    mapping(address => bool) internal _approvedSpenders;

    function __ERC20Resource_init(
        string memory name_,
        string memory symbol_,
        address spatialSystem_,
        uint256 transferRadius_,
        address[] memory approvedSpenders
    ) internal onlyInitializing {
        __ERC20Entity_init(name_, symbol_);
        __ERC20Resource_init_unchained(
            spatialSystem_,
            transferRadius_,
            approvedSpenders
        );
    }

    function __ERC20Resource_init_unchained(
        address spatialSystem_,
        uint256 transferRadius_,
        address[] memory approvedSpenders
    ) internal onlyInitializing {
        spatialSystem = ISpatialSystem(spatialSystem_);
        transferRadius = transferRadius_;
        for (uint256 i = 0; i < approvedSpenders.length; i++) {
            _approvedSpenders[approvedSpenders[i]] = true;
        }
        _transferOwnership(msg.sender);
    }

    function mint(address to, uint256 amount) public virtual {
        mint(accountToEntity(to), amount);
    }

    function mint(uint256 to, uint256 amount) public virtual {
        require(_approvedSpenders[msg.sender], "ERC20Resource: not approved");
        _mint(to, amount);
    }

    function mintAndCall(address to, uint256 amount) public virtual {
        mint(to, amount);
        IERC1363Receiver(to).onTransferReceived(
            _msgSender(),
            address(0),
            amount,
            ""
        );
    }

    function allowance(uint256 owner, uint256 spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        if (
            entityIsAccount(spender) &&
            _approvedSpenders[entityToAccount(spender)]
        ) {
            return type(uint256).max;
        }

        return super.allowance(owner, spender);
    }

    function isApprovedSpender(address spender) public view returns (bool) {
        return _approvedSpenders[spender];
    }

    function _beforeTokenTransfer(
        uint256 from,
        uint256 to,
        uint256 amount
    ) internal virtual override {
        if (from == 0 || to == 0) {
            super._beforeTokenTransfer(from, to, amount);
            return;
        }

        if (!entityIsAccount(from) && !entityIsAccount(to)) {
            require(
                spatialSystem.collocated(from, to, transferRadius),
                "ERC20Resource: not collocated"
            );
        } else if (!entityIsAccount(to)) {
            (int256 x, int256 y) = spatialSystem.coordinate(to);
            require(x == 0 && y == 0, "ERC20Resource: not at origin");
        } else if (!entityIsAccount(from)) {
            (int256 x, int256 y) = spatialSystem.coordinate(from);
            require(x == 0 && y == 0, "ERC20Resource: not at origin");
        }

        super._beforeTokenTransfer(from, to, amount);
    }

    /*
    OWNER FUNCTIONS
    */

    function setTransferRadius(uint256 transferRadius_) public onlyOwner {
        transferRadius = transferRadius_;
    }
}

File 17 of 22 : IMiaocraft.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

struct ShipInfo {
    uint96 spins;
    uint96 spinsBurned;
    uint40 lastServiceTime;
    string name;
}

interface IMiaocraft is IERC721 {
    event Build(
        address indexed owner,
        uint256 indexed id,
        uint256 spins,
        string name
    );

    event Upgrade(address indexed owner, uint256 indexed id, uint256 spins);

    event Merge(
        address indexed owner,
        uint256 indexed id1,
        uint256 indexed id2,
        uint256 spins
    );

    event Scrap(
        address indexed scavengerOwner,
        uint256 indexed scavengerId,
        uint256 indexed targetId
    );

    event Service(
        address indexed owner,
        uint256 indexed id,
        uint256 spins,
        uint256 cost
    );

    event Rename(address indexed owner, uint256 indexed id, string name);

    function spinsOf(uint256 id) external view returns (uint256);

    function spinsDecayOf(uint256 id) external view returns (uint256);

    function buildCost(uint256 spins_) external view returns (uint256);

    function serviceCostOf(uint256 id) external view returns (uint256);

    function getShipInfo(uint256 id) external view returns (ShipInfo memory);

    function build(uint256 spins_, string calldata name_) external;

    function upgrade(uint256 id, uint256 spins_) external;

    function merge(uint256 id1, uint256 id2) external;

    function scrap(uint256 scavengerId, uint256 targetId) external;

    function service(uint256 id) external;

    function rename(uint256 id, string calldata name_) external;

    function isApprovedOrOwner(address spender, uint256 id)
        external
        view
        returns (bool);
}

File 18 of 22 : ERC20Entity.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/interfaces/IERC1363Receiver.sol";
import "@openzeppelin/contracts/interfaces/IERC1363Spender.sol";
import "@openzeppelin/contracts/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "../utils/EntityUtils.sol";
import "./IERC20Entity.sol";

/// @title ERC20 with entity-based ownership and allowances.
/// @author boffee
/// @author Modified from openzeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol)
contract ERC20Entity is
    IERC20,
    IERC20Entity,
    IERC20Metadata,
    Initializable,
    Context
{
    mapping(uint256 => uint256) private _balances;

    mapping(uint256 => mapping(uint256 => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC20).interfaceId ||
            interfaceId == type(IERC20Metadata).interfaceId ||
            interfaceId == type(IERC1363).interfaceId;
    }

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    function __ERC20Entity_init(string memory name_, string memory symbol_)
        internal
        onlyInitializing
    {
        __ERC20Entity_init_unchained(name_, symbol_);
    }

    function __ERC20Entity_init_unchained(
        string memory name_,
        string memory symbol_
    ) internal onlyInitializing {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return balanceOf(accountToEntity(account));
    }

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

    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        return transfer(accountToEntity(to), amount);
    }

    /**
     * @dev See {IERC1363-transferAndCall}.
     */
    function transferAndCall(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        return transferAndCall(to, amount, "");
    }

    function transferAndCall(
        address to,
        uint256 amount,
        bytes memory data
    ) public virtual override returns (bool) {
        transfer(to, amount);
        IERC1363Receiver(to).onTransferReceived(
            _msgSender(),
            _msgSender(),
            amount,
            data
        );
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(uint256 owner, uint256 spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        if (!entityIsAccount(owner)) {
            (address token, uint256 id) = entityToToken(owner);
            owner = accountToEntity(IERC721(token).ownerOf(id));
        }

        if (owner == spender) return type(uint256).max;

        return _allowances[owner][spender];
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return allowance(accountToEntity(owner), accountToEntity(spender));
    }

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

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        return approve(accountToEntity(spender), amount);
    }

    /**
     * @dev See {IERC1363-approveAndCall}.
     */
    function approveAndCall(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        return approveAndCall(spender, amount, "");
    }

    function approveAndCall(
        address spender,
        uint256 amount,
        bytes memory data
    ) public virtual override returns (bool) {
        approve(spender, amount);
        IERC1363Spender(spender).onApprovalReceived(_msgSender(), amount, data);
        return true;
    }

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

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        return transferFrom(accountToEntity(from), accountToEntity(to), amount);
    }

    /**
     * @dev See {IERC1363-transferFromAndCall}.
     */
    function transferFromAndCall(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        return transferFromAndCall(from, to, amount, "");
    }

    function transferFromAndCall(
        address from,
        address to,
        uint256 amount,
        bytes memory data
    ) public virtual override returns (bool) {
        transferFrom(from, to, amount);
        IERC1363Receiver(to).onTransferReceived(
            _msgSender(),
            from,
            amount,
            data
        );
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero uint256.
     */
    function increaseAllowance(uint256 spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        uint256 owner = accountToEntity(_msgSender());
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        return increaseAllowance(accountToEntity(spender), addedValue);
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero uint256.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(uint256 spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        uint256 owner = accountToEntity(_msgSender());
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        return decreaseAllowance(accountToEntity(spender), subtractedValue);
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero uint256.
     * - `to` cannot be the zero uint256.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        uint256 from,
        uint256 to,
        uint256 amount
    ) internal virtual {
        require(from != uint256(0), "ERC20: transfer from the zero uint256");
        require(to != uint256(0), "ERC20: transfer to the zero uint256");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        _emitTransfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero uint256.
     *
     * Requirements:
     *
     * - `account` cannot be the zero uint256.
     */
    function _mint(uint256 account, uint256 amount) internal virtual {
        require(account != uint256(0), "ERC20: mint to the zero uint256");

        _beforeTokenTransfer(uint256(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }

        _emitTransfer(uint256(0), account, amount);

        _afterTokenTransfer(uint256(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero uint256.
     *
     * Requirements:
     *
     * - `account` cannot be the zero uint256.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(uint256 account, uint256 amount) internal virtual {
        require(account != uint256(0), "ERC20: burn from the zero uint256");

        _beforeTokenTransfer(account, uint256(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        _emitTransfer(account, uint256(0), amount);

        _afterTokenTransfer(account, uint256(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero uint256.
     * - `spender` cannot be the zero uint256.
     */
    function _approve(
        uint256 owner,
        uint256 spender,
        uint256 amount
    ) internal virtual {
        require(owner != uint256(0), "ERC20: approve from the zero uint256");
        require(spender != uint256(0), "ERC20: approve to the zero uint256");

        _allowances[owner][spender] = amount;
        _emitApproval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        uint256 owner,
        uint256 spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _emitTransfer(
        uint256 from,
        uint256 to,
        uint256 amount
    ) internal virtual {
        emit EntityTransfer(from, to, amount);

        bool fromIsAccount = entityIsAccount(from);
        bool toIsAccount = entityIsAccount(to);

        if (fromIsAccount && toIsAccount) {
            emit Transfer(entityToAccount(from), entityToAccount(to), amount);
        } else if (fromIsAccount) {
            emit Transfer(entityToAccount(from), address(0), amount);
        } else if (toIsAccount) {
            emit Transfer(address(0), entityToAccount(to), amount);
        }
    }

    function _emitApproval(
        uint256 owner,
        uint256 spender,
        uint256 amount
    ) internal virtual {
        emit EntityApproval(owner, spender, amount);

        if (entityIsAccount(owner) && entityIsAccount(spender)) {
            emit Approval(
                entityToAccount(owner),
                entityToAccount(spender),
                amount
            );
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        uint256 from,
        uint256 to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        uint256 from,
        uint256 to,
        uint256 amount
    ) internal virtual {}
}

File 19 of 22 : ERC20EntityBurnable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "./ERC20Entity.sol";

abstract contract ERC20EntityBurnable is ERC20Entity {
    function burn(uint256 amount) public virtual {
        _burn(accountToEntity(_msgSender()), amount);
    }

    function burnFrom(uint256 entity, uint256 amount) public virtual {
        _spendAllowance(entity, accountToEntity(_msgSender()), amount);
        _burn(entity, amount);
    }

    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(
            accountToEntity(account),
            accountToEntity(_msgSender()),
            amount
        );
        _burn(accountToEntity(account), amount);
    }
}

File 20 of 22 : IERC20Entity.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/Interfaces/IERC1363.sol";

/// @title ERC20 with entity-based ownership and allowances.
/// @author boffee
/// @author Modified from openzeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol)
interface IERC20Entity is IERC1363 {
    /**
     * @dev Emitted when `value` tokens are moved from one entity (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event EntityTransfer(
        uint256 indexed from,
        uint256 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 EntityApproval(
        uint256 indexed owner,
        uint256 indexed spender,
        uint256 value
    );

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

    /**
     * @dev Moves `amount` tokens from the caller's entity to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {EntityTransfer} event.
     */
    function transfer(uint256 to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(uint256 owner, uint256 spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(uint256 spender, uint256 amount) external returns (bool);

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

File 21 of 22 : ISpatialSystem.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

struct LocationInfo {
    int40 xOrigin;
    int40 yOrigin;
    int40 xDest;
    int40 yDest;
    uint40 speed;
    uint40 departureTime;
    bool locked;
}

interface ISpatialSystem {
    event UpdateLocation(
        uint256 indexed entityId,
        int256 xOrigin,
        int256 yOrigin,
        int256 xDest,
        int256 yDest,
        uint256 speed,
        uint256 departureTime
    );

    event Move(
        uint256 indexed entityId,
        int256 xOrigin,
        int256 yOrigin,
        int256 xDest,
        int256 yDest,
        uint256 speed,
        uint256 departureTime
    );

    event SetLocation(
        uint256 indexed entityId,
        int256 xOrigin,
        int256 yOrigin,
        int256 xDest,
        int256 yDest,
        uint256 speed,
        uint256 departureTime
    );

    event SetCoordinate(uint256 indexed entityId, int256 x, int256 y);

    event Locked(uint256 indexed entityId);

    event Unlocked(uint256 indexed entityId);

    function coordinate(uint256 entityId)
        external
        view
        returns (int256 x, int256 y);

    function collocated(uint256 entityId1, uint256 entityId2)
        external
        view
        returns (bool);

    function collocated(
        uint256 entityId1,
        uint256 entityId2,
        uint256 radius
    ) external view returns (bool);

    function getLocationInfo(uint256 entityId)
        external
        view
        returns (LocationInfo memory);

    function locked(uint256 entityId) external view returns (bool);

    function updateLocation(uint256 entityId) external;
}

File 22 of 22 : EntityUtils.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

function tokenToEntity(address token, uint256 id) pure returns (uint256) {
    return (uint256(uint160(token)) << 96) | id;
}

function entityToToken(uint256 entity)
    pure
    returns (address token, uint256 id)
{
    token = address(uint160(entity >> 96));
    id = entity & 0xffffffffffffffffffffffff;
}

function accountToEntity(address account) pure returns (uint256) {
    return (uint256(uint160(account)));
}

function entityToAccount(uint256 entity) pure returns (address account) {
    account = address(uint160(entity));
}

function entityIsAccount(uint256 entity) pure returns (bool) {
    return entity >> 160 == 0;
}

Settings
{
  "remappings": [
    "@chainlink/=lib/chainlink/contracts/src/",
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "chainlink/=lib/chainlink/integration-tests/contracts/ethereum/src/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "miaocraft/=src/",
    "solmate/=lib/solmate/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"owner","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"spender","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"EntityApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"from","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"to","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"EntityTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"owner","type":"uint256"},{"internalType":"uint256","name":"spender","type":"uint256"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"spender","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"account","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"entity","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"spender","type":"uint256"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"spender","type":"uint256"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spatialSystem_","type":"address"},{"internalType":"uint256","name":"transferRadius_","type":"uint256"},{"internalType":"address[]","name":"approvedSpenders","type":"address[]"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"isApprovedSpender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"to","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintAndCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"transferRadius_","type":"uint256"}],"name":"setTransferRadius","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spatialSystem","outputs":[{"internalType":"contract ISpatialSystem","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"to","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"from","type":"uint256"},{"internalType":"uint256","name":"to","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferRadius","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b5061001a3361001f565b610071565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612378806100806000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b578063ac9650d8116100b8578063cca16fa81161007c578063cca16fa81461052d578063d8fbe99414610540578063dd62ed3e14610553578063f2fde38b14610566578063f9722f481461057957600080fd5b8063ac9650d8146104a8578063c1d34b89146104c8578063c303a6a7146104db578063ca2ed3dd14610507578063cae9ca511461051a57600080fd5b806395d89b41116100ff57806395d89b411461044757806398de4ba31461044f5780639cc7f70814610462578063a457c2d714610482578063a9059cbb1461049557600080fd5b8063715018a6146103f55780637611ca5b146103fd57806379cc6790146104105780638769fd41146104235780638da5cb5b1461043657600080fd5b80633177029f116101c95780634ab4ab1c1161018d5780634ab4ab1c1461037e5780635d35a3d91461039157806360c5888e146103a45780636d91457a146103cf57806370a08231146103e257600080fd5b80633177029f1461031f57806339509351146103325780634000aea01461034557806340c10f191461035857806342966c681461036b57600080fd5b806318160ddd1161021057806318160ddd146102c35780631b2ef1ca146102d557806323b872dd146102ea578063310ed7f0146102fd578063313ce5671461031057600080fd5b806301ffc9a71461024d57806306fdde0314610275578063095ea7b31461028a5780630cf79e0a1461029d5780631296ee62146102b0575b600080fd5b61026061025b366004611b01565b610582565b60405190151581526020015b60405180910390f35b61027d6105d4565b60405161026c9190611b6e565b610260610298366004611b96565b610666565b6102606102ab366004611bc2565b610682565b6102606102be366004611b96565b6106ad565b6003545b60405190815260200161026c565b6102e86102e3366004611bc2565b6106c9565b005b6102606102f8366004611be4565b61073b565b61026061030b366004611c25565b610762565b6040516012815260200161026c565b61026061032d366004611b96565b610791565b610260610340366004611b96565b6107ad565b610260610353366004611d08565b6107c2565b6102e8610366366004611b96565b610844565b6102e8610379366004611d61565b610857565b61026061038c366004611bc2565b61086c565b61026061039f366004611bc2565b610899565b6007546103b7906001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b6102e86103dd366004611d7a565b6108b2565b6102c76103f0366004611e4a565b610a05565b6102e8610a19565b61026061040b366004611bc2565b610a2d565b6102e861041e366004611b96565b610ab4565b6102e8610431366004611bc2565b610ae2565b6006546001600160a01b03166103b7565b61027d610af9565b6102e861045d366004611b96565b610b08565b6102c7610470366004611d61565b60009081526001602052604090205490565b610260610490366004611b96565b610bad565b6102606104a3366004611b96565b610bc2565b6104bb6104b6366004611e67565b610bd7565b60405161026c9190611edc565b6102606104d6366004611f3e565b610ccc565b6102606104e9366004611e4a565b6001600160a01b031660009081526009602052604090205460ff1690565b6102e8610515366004611d61565b610d5b565b610260610528366004611d08565b610d68565b6102c761053b366004611bc2565b610da5565b61026061054e366004611be4565b610dee565b6102c7610561366004611faa565b610e0b565b6102e8610574366004611e4a565b610e29565b6102c760085481565b60006001600160e01b031982166336372b0760e01b14806105b357506001600160e01b0319821663a219a02560e01b145b806105ce57506001600160e01b0319821663b0202a1160e01b145b92915050565b6060600480546105e390611fe3565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90611fe3565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600061067b6001600160a01b03841683610899565b9392505050565b600080610696335b6001600160a01b031690565b90506106a3818585610e9f565b5060019392505050565b600061067b8383604051806020016040528060008152506107c2565b3360009081526009602052604090205460ff1661072d5760405162461bcd60e51b815260206004820152601b60248201527f45524332305265736f757263653a206e6f7420617070726f766564000000000060448201526064015b60405180910390fd5b6107378282610ffb565b5050565b600061075a6001600160a01b0385166001600160a01b03851684610762565b949350505050565b60008061076e3361068a565b905061077b85828561108a565b610786858585610e9f565b506001949350505050565b600061067b838360405180602001604052806000815250610d68565b600061067b6001600160a01b0384168361086c565b60006107ce8484610bc2565b50604051632229f29760e21b81526001600160a01b038516906388a7ca5c9061080190339081908890889060040161201d565b6020604051808303816000875af1158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107869190612050565b6107376001600160a01b038316826106c9565b6108696108633361068a565b826110fe565b50565b6000806108783361068a565b90506106a381858561088a8589610da5565b6108949190612083565b6111f3565b6000806108a53361068a565b90506106a38185856111f3565b600054610100900460ff16158080156108d25750600054600160ff909116105b806108ec5750303b1580156108ec575060005460ff166001145b61094f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610724565b6000805460ff191660011790558015610972576000805461ff0019166101001790555b6109b960405180604001604052806006815260200165213aba3a32b960d11b815250604051806040016040528060048152602001631095551560e21b8152508686866112cb565b80156109ff576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050565b60006105ce6001600160a01b038316610470565b610a2161130e565b610a2b6000611368565b565b600080610a393361068a565b90506000610a478286610da5565b905083811015610aa75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610724565b61078682868684036111f3565b610ad06001600160a01b038316610aca3361068a565b8361108a565b6107376001600160a01b038316610863565b610aef82610aca3361068a565b61073782826110fe565b6060600580546105e390611fe3565b610b128282610844565b6001600160a01b0382166388a7ca5c336040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526000602482018190526044820185905260806064830152608482015260a4016020604051808303816000875af1158015610b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba89190612050565b505050565b600061067b6001600160a01b03841683610a2d565b600061067b6001600160a01b03841683610682565b60608167ffffffffffffffff811115610bf257610bf2611c51565b604051908082528060200260200182016040528015610c2557816020015b6060815260200190600190039081610c105790505b50905060005b82811015610cc557610c9530858584818110610c4957610c49612096565b9050602002810190610c5b91906120ac565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113ba92505050565b828281518110610ca757610ca7612096565b60200260200101819052508080610cbd906120fa565b915050610c2b565b5092915050565b6000610cd985858561073b565b50604051632229f29760e21b81526001600160a01b038516906388a7ca5c90610d0c90339089908890889060040161201d565b6020604051808303816000875af1158015610d2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4f9190612050565b50600195945050505050565b610d6361130e565b600855565b6000610d748484610666565b506040516307b04a2d60e41b81526001600160a01b03851690637b04a2d09061080190339087908790600401612113565b6000610db28260a01c1590565b8015610dd657506001600160a01b03821660009081526009602052604090205460ff165b15610de457506000196105ce565b61067b83836113df565b600061075a84848460405180602001604052806000815250610ccc565b600061067b6001600160a01b0384166001600160a01b038416610da5565b610e3161130e565b6001600160a01b038116610e965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610724565b61086981611368565b82610efa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f207569604482015264373a191a9b60d91b6064820152608401610724565b81610f535760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f2075696e74604482015262191a9b60e91b6064820152608401610724565b610f5e8383836114ac565b60008381526001602052604090205481811015610fcc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610724565b60008481526001602052604080822084840390558482529020805483019055610ff68484846116e5565b6109ff565b816110485760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2075696e74323536006044820152606401610724565b611054600083836114ac565b80600360008282546110669190612083565b909155505060008281526001602052604081208054830190556107379083836116e5565b60006110968484610da5565b905060001981146109ff57818110156110f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610724565b6109ff84848484036111f3565b816111555760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2075696e7432356044820152601b60f91b6064820152608401610724565b611161826000836114ac565b600082815260016020526040902054818110156111cb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610724565b60008381526001602052604081208383039055600380548490039055610ba8908490846116e5565b8261124c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2075696e6044820152633a191a9b60e11b6064820152608401610724565b816112a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f2075696e74326044820152611a9b60f11b6064820152608401610724565b60008381526002602090815260408083208584529091529020819055610ba88383836117fc565b600054610100900460ff166112f25760405162461bcd60e51b815260040161072490612143565b6112fc85856118ab565b6113078383836118dc565b5050505050565b6006546001600160a01b03163314610a2b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610724565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606061067b838360405180606001604052806027815260200161231c60279139611995565b60006113ec8360a01c1590565b61147e57600080606085901c6bffffffffffffffffffffffff86166040516331a9108f60e11b8152600481018290529193509150611479906001600160a01b03841690636352211e90602401602060405180830381865afa158015611455573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068a919061218e565b945050505b81830361148e57506000196105ce565b50600091825260026020908152604080842092845291905290205490565b8215806114b7575081155b610ba8576114c68360a01c1590565b1580156114db57506114d98260a01c1590565b155b156115ab57600754600854604051631310588f60e11b8152600481018690526024810185905260448101919091526001600160a01b0390911690632620b11e90606401602060405180830381865afa15801561153b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155f91906121ab565b610ba85760405162461bcd60e51b815260206004820152601d60248201527f45524332305265736f757263653a206e6f7420636f6c6c6f63617465640000006044820152606401610724565b6115b68260a01c1590565b611689576007546040516304e6763d60e31b81526004810184905260009182916001600160a01b0390911690632733b1e8906024016040805180830381865afa158015611607573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162b91906121cd565b9150915081600014801561163d575080155b6113075760405162461bcd60e51b815260206004820152601c60248201527f45524332305265736f757263653a206e6f74206174206f726967696e000000006044820152606401610724565b6116948360a01c1590565b610ba8576007546040516304e6763d60e31b81526004810185905260009182916001600160a01b0390911690632733b1e8906024016040805180830381865afa158015611607573d6000803e3d6000fd5b81837fb50d882a62cd651c221965f806876e6dd4f93b24162e225d1e79feb4234210948360405161171891815260200190565b60405180910390a3600061172d8460a01c1590565b9050600061173c8460a01c1590565b90508180156117485750805b156117a057836001600160a01b0316855b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161179391815260200190565b60405180910390a3611307565b81156117ae57600085611759565b8015611307576040518381526001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b81837fabfcbc86ccb15e07ef9063f96701518c738e1de29db41422a410e0c44197f85a8360405161182f91815260200190565b60405180910390a36118428360a01c1590565b801561185457506118548260a01c1590565b15610ba857816001600160a01b0316836001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161189e91815260200190565b60405180910390a3505050565b600054610100900460ff166118d25760405162461bcd60e51b815260040161072490612143565b6107378282611a0d565b600054610100900460ff166119035760405162461bcd60e51b815260040161072490612143565b600780546001600160a01b0319166001600160a01b038516179055600882905560005b815181101561198b5760016009600084848151811061194757611947612096565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611983816120fa565b915050611926565b50610ba833611368565b6060600080856001600160a01b0316856040516119b291906121f1565b600060405180830381855af49150503d80600081146119ed576040519150601f19603f3d011682016040523d82523d6000602084013e6119f2565b606091505b5091509150611a0386838387611a4d565b9695505050505050565b600054610100900460ff16611a345760405162461bcd60e51b815260040161072490612143565b6004611a40838261225b565b506005610ba8828261225b565b60608315611abc578251600003611ab5576001600160a01b0385163b611ab55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610724565b508161075a565b61075a8383815115611ad15781518083602001fd5b8060405162461bcd60e51b81526004016107249190611b6e565b6001600160e01b03198116811461086957600080fd5b600060208284031215611b1357600080fd5b813561067b81611aeb565b60005b83811015611b39578181015183820152602001611b21565b50506000910152565b60008151808452611b5a816020860160208601611b1e565b601f01601f19169290920160200192915050565b60208152600061067b6020830184611b42565b6001600160a01b038116811461086957600080fd5b60008060408385031215611ba957600080fd5b8235611bb481611b81565b946020939093013593505050565b60008060408385031215611bd557600080fd5b50508035926020909101359150565b600080600060608486031215611bf957600080fd5b8335611c0481611b81565b92506020840135611c1481611b81565b929592945050506040919091013590565b600080600060608486031215611c3a57600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611c9057611c90611c51565b604052919050565b600082601f830112611ca957600080fd5b813567ffffffffffffffff811115611cc357611cc3611c51565b611cd6601f8201601f1916602001611c67565b818152846020838601011115611ceb57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600060608486031215611d1d57600080fd5b8335611d2881611b81565b925060208401359150604084013567ffffffffffffffff811115611d4b57600080fd5b611d5786828701611c98565b9150509250925092565b600060208284031215611d7357600080fd5b5035919050565b600080600060608486031215611d8f57600080fd5b8335611d9a81611b81565b92506020848101359250604085013567ffffffffffffffff80821115611dbf57600080fd5b818701915087601f830112611dd357600080fd5b813581811115611de557611de5611c51565b8060051b9150611df6848301611c67565b818152918301840191848101908a841115611e1057600080fd5b938501935b83851015611e3a5784359250611e2a83611b81565b8282529385019390850190611e15565b8096505050505050509250925092565b600060208284031215611e5c57600080fd5b813561067b81611b81565b60008060208385031215611e7a57600080fd5b823567ffffffffffffffff80821115611e9257600080fd5b818501915085601f830112611ea657600080fd5b813581811115611eb557600080fd5b8660208260051b8501011115611eca57600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611f3157603f19888603018452611f1f858351611b42565b94509285019290850190600101611f03565b5092979650505050505050565b60008060008060808587031215611f5457600080fd5b8435611f5f81611b81565b93506020850135611f6f81611b81565b925060408501359150606085013567ffffffffffffffff811115611f9257600080fd5b611f9e87828801611c98565b91505092959194509250565b60008060408385031215611fbd57600080fd5b8235611fc881611b81565b91506020830135611fd881611b81565b809150509250929050565b600181811c90821680611ff757607f821691505b60208210810361201757634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a0390830184611b42565b60006020828403121561206257600080fd5b815161067b81611aeb565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ce576105ce61206d565b634e487b7160e01b600052603260045260246000fd5b6000808335601e198436030181126120c357600080fd5b83018035915067ffffffffffffffff8211156120de57600080fd5b6020019150368190038213156120f357600080fd5b9250929050565b60006001820161210c5761210c61206d565b5060010190565b60018060a01b038416815282602082015260606040820152600061213a6060830184611b42565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000602082840312156121a057600080fd5b815161067b81611b81565b6000602082840312156121bd57600080fd5b8151801515811461067b57600080fd5b600080604083850312156121e057600080fd5b505080516020909101519092909150565b60008251612203818460208701611b1e565b9190910192915050565b601f821115610ba857600081815260208120601f850160051c810160208610156122345750805b601f850160051c820191505b8181101561225357828155600101612240565b505050505050565b815167ffffffffffffffff81111561227557612275611c51565b612289816122838454611fe3565b8461220d565b602080601f8311600181146122be57600084156122a65750858301515b600019600386901b1c1916600185901b178555612253565b600085815260208120601f198616915b828110156122ed578886015182559484019460019091019084016122ce565b508582101561230b5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122004abe17c6f14b89a50ad9293240daf2add5031720c65b178a9de8039078f10de64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b578063ac9650d8116100b8578063cca16fa81161007c578063cca16fa81461052d578063d8fbe99414610540578063dd62ed3e14610553578063f2fde38b14610566578063f9722f481461057957600080fd5b8063ac9650d8146104a8578063c1d34b89146104c8578063c303a6a7146104db578063ca2ed3dd14610507578063cae9ca511461051a57600080fd5b806395d89b41116100ff57806395d89b411461044757806398de4ba31461044f5780639cc7f70814610462578063a457c2d714610482578063a9059cbb1461049557600080fd5b8063715018a6146103f55780637611ca5b146103fd57806379cc6790146104105780638769fd41146104235780638da5cb5b1461043657600080fd5b80633177029f116101c95780634ab4ab1c1161018d5780634ab4ab1c1461037e5780635d35a3d91461039157806360c5888e146103a45780636d91457a146103cf57806370a08231146103e257600080fd5b80633177029f1461031f57806339509351146103325780634000aea01461034557806340c10f191461035857806342966c681461036b57600080fd5b806318160ddd1161021057806318160ddd146102c35780631b2ef1ca146102d557806323b872dd146102ea578063310ed7f0146102fd578063313ce5671461031057600080fd5b806301ffc9a71461024d57806306fdde0314610275578063095ea7b31461028a5780630cf79e0a1461029d5780631296ee62146102b0575b600080fd5b61026061025b366004611b01565b610582565b60405190151581526020015b60405180910390f35b61027d6105d4565b60405161026c9190611b6e565b610260610298366004611b96565b610666565b6102606102ab366004611bc2565b610682565b6102606102be366004611b96565b6106ad565b6003545b60405190815260200161026c565b6102e86102e3366004611bc2565b6106c9565b005b6102606102f8366004611be4565b61073b565b61026061030b366004611c25565b610762565b6040516012815260200161026c565b61026061032d366004611b96565b610791565b610260610340366004611b96565b6107ad565b610260610353366004611d08565b6107c2565b6102e8610366366004611b96565b610844565b6102e8610379366004611d61565b610857565b61026061038c366004611bc2565b61086c565b61026061039f366004611bc2565b610899565b6007546103b7906001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b6102e86103dd366004611d7a565b6108b2565b6102c76103f0366004611e4a565b610a05565b6102e8610a19565b61026061040b366004611bc2565b610a2d565b6102e861041e366004611b96565b610ab4565b6102e8610431366004611bc2565b610ae2565b6006546001600160a01b03166103b7565b61027d610af9565b6102e861045d366004611b96565b610b08565b6102c7610470366004611d61565b60009081526001602052604090205490565b610260610490366004611b96565b610bad565b6102606104a3366004611b96565b610bc2565b6104bb6104b6366004611e67565b610bd7565b60405161026c9190611edc565b6102606104d6366004611f3e565b610ccc565b6102606104e9366004611e4a565b6001600160a01b031660009081526009602052604090205460ff1690565b6102e8610515366004611d61565b610d5b565b610260610528366004611d08565b610d68565b6102c761053b366004611bc2565b610da5565b61026061054e366004611be4565b610dee565b6102c7610561366004611faa565b610e0b565b6102e8610574366004611e4a565b610e29565b6102c760085481565b60006001600160e01b031982166336372b0760e01b14806105b357506001600160e01b0319821663a219a02560e01b145b806105ce57506001600160e01b0319821663b0202a1160e01b145b92915050565b6060600480546105e390611fe3565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90611fe3565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600061067b6001600160a01b03841683610899565b9392505050565b600080610696335b6001600160a01b031690565b90506106a3818585610e9f565b5060019392505050565b600061067b8383604051806020016040528060008152506107c2565b3360009081526009602052604090205460ff1661072d5760405162461bcd60e51b815260206004820152601b60248201527f45524332305265736f757263653a206e6f7420617070726f766564000000000060448201526064015b60405180910390fd5b6107378282610ffb565b5050565b600061075a6001600160a01b0385166001600160a01b03851684610762565b949350505050565b60008061076e3361068a565b905061077b85828561108a565b610786858585610e9f565b506001949350505050565b600061067b838360405180602001604052806000815250610d68565b600061067b6001600160a01b0384168361086c565b60006107ce8484610bc2565b50604051632229f29760e21b81526001600160a01b038516906388a7ca5c9061080190339081908890889060040161201d565b6020604051808303816000875af1158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107869190612050565b6107376001600160a01b038316826106c9565b6108696108633361068a565b826110fe565b50565b6000806108783361068a565b90506106a381858561088a8589610da5565b6108949190612083565b6111f3565b6000806108a53361068a565b90506106a38185856111f3565b600054610100900460ff16158080156108d25750600054600160ff909116105b806108ec5750303b1580156108ec575060005460ff166001145b61094f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610724565b6000805460ff191660011790558015610972576000805461ff0019166101001790555b6109b960405180604001604052806006815260200165213aba3a32b960d11b815250604051806040016040528060048152602001631095551560e21b8152508686866112cb565b80156109ff576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050565b60006105ce6001600160a01b038316610470565b610a2161130e565b610a2b6000611368565b565b600080610a393361068a565b90506000610a478286610da5565b905083811015610aa75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610724565b61078682868684036111f3565b610ad06001600160a01b038316610aca3361068a565b8361108a565b6107376001600160a01b038316610863565b610aef82610aca3361068a565b61073782826110fe565b6060600580546105e390611fe3565b610b128282610844565b6001600160a01b0382166388a7ca5c336040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526000602482018190526044820185905260806064830152608482015260a4016020604051808303816000875af1158015610b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba89190612050565b505050565b600061067b6001600160a01b03841683610a2d565b600061067b6001600160a01b03841683610682565b60608167ffffffffffffffff811115610bf257610bf2611c51565b604051908082528060200260200182016040528015610c2557816020015b6060815260200190600190039081610c105790505b50905060005b82811015610cc557610c9530858584818110610c4957610c49612096565b9050602002810190610c5b91906120ac565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113ba92505050565b828281518110610ca757610ca7612096565b60200260200101819052508080610cbd906120fa565b915050610c2b565b5092915050565b6000610cd985858561073b565b50604051632229f29760e21b81526001600160a01b038516906388a7ca5c90610d0c90339089908890889060040161201d565b6020604051808303816000875af1158015610d2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4f9190612050565b50600195945050505050565b610d6361130e565b600855565b6000610d748484610666565b506040516307b04a2d60e41b81526001600160a01b03851690637b04a2d09061080190339087908790600401612113565b6000610db28260a01c1590565b8015610dd657506001600160a01b03821660009081526009602052604090205460ff165b15610de457506000196105ce565b61067b83836113df565b600061075a84848460405180602001604052806000815250610ccc565b600061067b6001600160a01b0384166001600160a01b038416610da5565b610e3161130e565b6001600160a01b038116610e965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610724565b61086981611368565b82610efa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f207569604482015264373a191a9b60d91b6064820152608401610724565b81610f535760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f2075696e74604482015262191a9b60e91b6064820152608401610724565b610f5e8383836114ac565b60008381526001602052604090205481811015610fcc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610724565b60008481526001602052604080822084840390558482529020805483019055610ff68484846116e5565b6109ff565b816110485760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2075696e74323536006044820152606401610724565b611054600083836114ac565b80600360008282546110669190612083565b909155505060008281526001602052604081208054830190556107379083836116e5565b60006110968484610da5565b905060001981146109ff57818110156110f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610724565b6109ff84848484036111f3565b816111555760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2075696e7432356044820152601b60f91b6064820152608401610724565b611161826000836114ac565b600082815260016020526040902054818110156111cb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610724565b60008381526001602052604081208383039055600380548490039055610ba8908490846116e5565b8261124c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2075696e6044820152633a191a9b60e11b6064820152608401610724565b816112a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f2075696e74326044820152611a9b60f11b6064820152608401610724565b60008381526002602090815260408083208584529091529020819055610ba88383836117fc565b600054610100900460ff166112f25760405162461bcd60e51b815260040161072490612143565b6112fc85856118ab565b6113078383836118dc565b5050505050565b6006546001600160a01b03163314610a2b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610724565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606061067b838360405180606001604052806027815260200161231c60279139611995565b60006113ec8360a01c1590565b61147e57600080606085901c6bffffffffffffffffffffffff86166040516331a9108f60e11b8152600481018290529193509150611479906001600160a01b03841690636352211e90602401602060405180830381865afa158015611455573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068a919061218e565b945050505b81830361148e57506000196105ce565b50600091825260026020908152604080842092845291905290205490565b8215806114b7575081155b610ba8576114c68360a01c1590565b1580156114db57506114d98260a01c1590565b155b156115ab57600754600854604051631310588f60e11b8152600481018690526024810185905260448101919091526001600160a01b0390911690632620b11e90606401602060405180830381865afa15801561153b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155f91906121ab565b610ba85760405162461bcd60e51b815260206004820152601d60248201527f45524332305265736f757263653a206e6f7420636f6c6c6f63617465640000006044820152606401610724565b6115b68260a01c1590565b611689576007546040516304e6763d60e31b81526004810184905260009182916001600160a01b0390911690632733b1e8906024016040805180830381865afa158015611607573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162b91906121cd565b9150915081600014801561163d575080155b6113075760405162461bcd60e51b815260206004820152601c60248201527f45524332305265736f757263653a206e6f74206174206f726967696e000000006044820152606401610724565b6116948360a01c1590565b610ba8576007546040516304e6763d60e31b81526004810185905260009182916001600160a01b0390911690632733b1e8906024016040805180830381865afa158015611607573d6000803e3d6000fd5b81837fb50d882a62cd651c221965f806876e6dd4f93b24162e225d1e79feb4234210948360405161171891815260200190565b60405180910390a3600061172d8460a01c1590565b9050600061173c8460a01c1590565b90508180156117485750805b156117a057836001600160a01b0316855b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161179391815260200190565b60405180910390a3611307565b81156117ae57600085611759565b8015611307576040518381526001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b81837fabfcbc86ccb15e07ef9063f96701518c738e1de29db41422a410e0c44197f85a8360405161182f91815260200190565b60405180910390a36118428360a01c1590565b801561185457506118548260a01c1590565b15610ba857816001600160a01b0316836001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161189e91815260200190565b60405180910390a3505050565b600054610100900460ff166118d25760405162461bcd60e51b815260040161072490612143565b6107378282611a0d565b600054610100900460ff166119035760405162461bcd60e51b815260040161072490612143565b600780546001600160a01b0319166001600160a01b038516179055600882905560005b815181101561198b5760016009600084848151811061194757611947612096565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611983816120fa565b915050611926565b50610ba833611368565b6060600080856001600160a01b0316856040516119b291906121f1565b600060405180830381855af49150503d80600081146119ed576040519150601f19603f3d011682016040523d82523d6000602084013e6119f2565b606091505b5091509150611a0386838387611a4d565b9695505050505050565b600054610100900460ff16611a345760405162461bcd60e51b815260040161072490612143565b6004611a40838261225b565b506005610ba8828261225b565b60608315611abc578251600003611ab5576001600160a01b0385163b611ab55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610724565b508161075a565b61075a8383815115611ad15781518083602001fd5b8060405162461bcd60e51b81526004016107249190611b6e565b6001600160e01b03198116811461086957600080fd5b600060208284031215611b1357600080fd5b813561067b81611aeb565b60005b83811015611b39578181015183820152602001611b21565b50506000910152565b60008151808452611b5a816020860160208601611b1e565b601f01601f19169290920160200192915050565b60208152600061067b6020830184611b42565b6001600160a01b038116811461086957600080fd5b60008060408385031215611ba957600080fd5b8235611bb481611b81565b946020939093013593505050565b60008060408385031215611bd557600080fd5b50508035926020909101359150565b600080600060608486031215611bf957600080fd5b8335611c0481611b81565b92506020840135611c1481611b81565b929592945050506040919091013590565b600080600060608486031215611c3a57600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611c9057611c90611c51565b604052919050565b600082601f830112611ca957600080fd5b813567ffffffffffffffff811115611cc357611cc3611c51565b611cd6601f8201601f1916602001611c67565b818152846020838601011115611ceb57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600060608486031215611d1d57600080fd5b8335611d2881611b81565b925060208401359150604084013567ffffffffffffffff811115611d4b57600080fd5b611d5786828701611c98565b9150509250925092565b600060208284031215611d7357600080fd5b5035919050565b600080600060608486031215611d8f57600080fd5b8335611d9a81611b81565b92506020848101359250604085013567ffffffffffffffff80821115611dbf57600080fd5b818701915087601f830112611dd357600080fd5b813581811115611de557611de5611c51565b8060051b9150611df6848301611c67565b818152918301840191848101908a841115611e1057600080fd5b938501935b83851015611e3a5784359250611e2a83611b81565b8282529385019390850190611e15565b8096505050505050509250925092565b600060208284031215611e5c57600080fd5b813561067b81611b81565b60008060208385031215611e7a57600080fd5b823567ffffffffffffffff80821115611e9257600080fd5b818501915085601f830112611ea657600080fd5b813581811115611eb557600080fd5b8660208260051b8501011115611eca57600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611f3157603f19888603018452611f1f858351611b42565b94509285019290850190600101611f03565b5092979650505050505050565b60008060008060808587031215611f5457600080fd5b8435611f5f81611b81565b93506020850135611f6f81611b81565b925060408501359150606085013567ffffffffffffffff811115611f9257600080fd5b611f9e87828801611c98565b91505092959194509250565b60008060408385031215611fbd57600080fd5b8235611fc881611b81565b91506020830135611fd881611b81565b809150509250929050565b600181811c90821680611ff757607f821691505b60208210810361201757634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a0390830184611b42565b60006020828403121561206257600080fd5b815161067b81611aeb565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ce576105ce61206d565b634e487b7160e01b600052603260045260246000fd5b6000808335601e198436030181126120c357600080fd5b83018035915067ffffffffffffffff8211156120de57600080fd5b6020019150368190038213156120f357600080fd5b9250929050565b60006001820161210c5761210c61206d565b5060010190565b60018060a01b038416815282602082015260606040820152600061213a6060830184611b42565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000602082840312156121a057600080fd5b815161067b81611b81565b6000602082840312156121bd57600080fd5b8151801515811461067b57600080fd5b600080604083850312156121e057600080fd5b505080516020909101519092909150565b60008251612203818460208701611b1e565b9190910192915050565b601f821115610ba857600081815260208120601f850160051c810160208610156122345750805b601f850160051c820191505b8181101561225357828155600101612240565b505050505050565b815167ffffffffffffffff81111561227557612275611c51565b612289816122838454611fe3565b8461220d565b602080601f8311600181146122be57600084156122a65750858301515b600019600386901b1c1916600185901b178555612253565b600085815260208120601f198616915b828110156122ed578886015182559484019460019091019084016122ce565b508582101561230b5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122004abe17c6f14b89a50ad9293240daf2add5031720c65b178a9de8039078f10de64736f6c63430008110033

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.