ETH Price: $3,087.24 (-0.04%)
Gas: 4 Gwei

Token

 

Overview

Max Total Supply

221

Holders

212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sethr.eth
0x47ba9f86c3fa6e6741bb7c25e88f123644fb75cd
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DustMintPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-26
*/

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

// File: @openzeppelin/[email protected]/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: @openzeppelin/[email protected]/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: @openzeppelin/[email protected]/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/[email protected]/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: @openzeppelin/[email protected]/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155Receiver.sol



pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/IERC1155MetadataURI.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/[email protected]/token/ERC1155/ERC1155.sol



pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/[email protected]/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/AncientChip.sol


// https://remix.ethereum.org/#optimize=false&runs=200&evmVersion=null&version=soljson-v0.8.0+commit.c7dfd78e.js
pragma solidity ^0.8.0;





contract DustMintPass is ReentrancyGuard, Ownable, ERC1155{

    uint256 currentElementId = 1;

    bool public passSaleActive = false;

    uint256 public maxTotal = 200;
    mapping (address => uint256) public owned;
    

    event ActivatePassSale();
    event DeactivatePassSale();

    constructor() ERC1155("https://api.ancientdust.xyz/chip/{id}") {}

    function supportsInterface(bytes4 interfaceId) public view virtual override (ERC1155) returns (bool) {
        return ERC1155.supportsInterface(interfaceId);
    }

    function setURI(string memory newuri) external onlyOwner {
        _setURI(newuri);
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    
    function totalMinted() public view returns(uint256){
        return currentElementId - 1;
    }


    function activatePassSale() external onlyOwner {
        require(!passSaleActive, "Already active");
        passSaleActive = true;
        emit ActivatePassSale();
    }
    function deactivatePassSale() external onlyOwner {
        passSaleActive = false;
        emit DeactivatePassSale();
    }


    function mintChip() public payable nonReentrant {
        require(passSaleActive, "Mint not active");
        require(owned[msg.sender] < 1, "You can only buy one Ancient Chip");
        owned[msg.sender] += 1;
        _mint(msg.sender, currentElementId, 1, "");
        currentElementId++;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"ActivatePassSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[],"name":"DeactivatePassSale","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"activatePassSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivatePassSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintChip","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"owned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016005556006805460ff1916905560c86007553480156200002557600080fd5b5060405180606001604052806025815260200162001e80602591396001600055620000503362000062565b6200005b81620000b4565b50620001b0565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8051620000c9906004906020840190620000cd565b5050565b828054620000db9062000173565b90600052602060002090601f016020900481019282620000ff57600085556200014a565b82601f106200011a57805160ff19168380011785556200014a565b828001600101855582156200014a579182015b828111156200014a5782518255916020019190600101906200012d565b50620001589291506200015c565b5090565b5b808211156200015857600081556001016200015d565b600181811c908216806200018857607f821691505b60208210811415620001aa57634e487b7160e01b600052602260045260246000fd5b50919050565b611cc080620001c06000396000f3fe60806040526004361061011e5760003560e01c8063715018a6116100a0578063a2309ff811610064578063a2309ff8146102f6578063b1ab93171461030b578063e985e9c514610338578063f242432a14610381578063f2fde38b146103a157600080fd5b8063715018a61461027c5780638a6c4177146102915780638da5cb5b146102a65780639e6b7af3146102ce578063a22cb465146102d657600080fd5b80632a03998b116100e75780632a03998b146101ea5780632eb2c2d6146102045780633ccfd60b146102245780634e1273f414610239578063648e3c261461026657600080fd5b8062fdd58e1461012357806301ffc9a71461015657806302fe5305146101865780630e89341c146101a85780631c7d0395146101d5575b600080fd5b34801561012f57600080fd5b5061014361013e36600461168c565b6103c1565b6040519081526020015b60405180910390f35b34801561016257600080fd5b50610176610171366004611787565b61045a565b604051901515815260200161014d565b34801561019257600080fd5b506101a66101a13660046117c1565b61046b565b005b3480156101b457600080fd5b506101c86101c3366004611812565b6104a1565b60405161014d9190611997565b3480156101e157600080fd5b506101a6610535565b3480156101f657600080fd5b506006546101769060ff1681565b34801561021057600080fd5b506101a661021f366004611541565b6105db565b34801561023057600080fd5b506101a6610672565b34801561024557600080fd5b506102596102543660046116b6565b6106cf565b60405161014d9190611956565b34801561027257600080fd5b5061014360075481565b34801561028857600080fd5b506101a66107f9565b34801561029d57600080fd5b506101a661082f565b3480156102b257600080fd5b506001546040516001600160a01b03909116815260200161014d565b6101a661088e565b3480156102e257600080fd5b506101a66102f1366004611650565b6109f4565b34801561030257600080fd5b50610143610acb565b34801561031757600080fd5b506101436103263660046114f3565b60086020526000908152604090205481565b34801561034457600080fd5b5061017661035336600461150e565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b34801561038d57600080fd5b506101a661039c3660046115eb565b610ae1565b3480156103ad57600080fd5b506101a66103bc3660046114f3565b610b68565b60006001600160a01b0383166104325760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526002602090815260408083206001600160a01b03949094168352929052205490565b600061046582610c00565b92915050565b6001546001600160a01b031633146104955760405162461bcd60e51b815260040161042990611a81565b61049e81610c50565b50565b6060600480546104b090611b09565b80601f01602080910402602001604051908101604052809291908181526020018280546104dc90611b09565b80156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b50505050509050919050565b6001546001600160a01b0316331461055f5760405162461bcd60e51b815260040161042990611a81565b60065460ff16156105a35760405162461bcd60e51b815260206004820152600e60248201526d416c72656164792061637469766560901b6044820152606401610429565b6006805460ff191660011790556040517f56abb483fc0317d1ecfb1aa750e0de7971705fee1322fa8bacbe9c3d8049e21190600090a1565b6001600160a01b0385163314806105f757506105f78533610353565b61065e5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610429565b61066b8585858585610c63565b5050505050565b6001546001600160a01b0316331461069c5760405162461bcd60e51b815260040161042990611a81565b6040514790339082156108fc029083906000818181858888f193505050501580156106cb573d6000803e3d6000fd5b5050565b606081518351146107345760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610429565b6000835167ffffffffffffffff81111561075057610750611bb8565b604051908082528060200260200182016040528015610779578160200160208202803683370190505b50905060005b84518110156107f1576107c485828151811061079d5761079d611ba2565b60200260200101518583815181106107b7576107b7611ba2565b60200260200101516103c1565b8282815181106107d6576107d6611ba2565b60209081029190910101526107ea81611b71565b905061077f565b509392505050565b6001546001600160a01b031633146108235760405162461bcd60e51b815260040161042990611a81565b61082d6000610e43565b565b6001546001600160a01b031633146108595760405162461bcd60e51b815260040161042990611a81565b6006805460ff191690556040517f4882f680595c15b1d8e20750f0b4a095a42a48962e2482d059b843a81601182790600090a1565b600260005414156108e15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610429565b600260005560065460ff1661092a5760405162461bcd60e51b815260206004820152600f60248201526e4d696e74206e6f742061637469766560881b6044820152606401610429565b336000908152600860205260409020546001116109935760405162461bcd60e51b815260206004820152602160248201527f596f752063616e206f6e6c7920627579206f6e6520416e6369656e74204368696044820152600760fc1b6064820152608401610429565b3360009081526008602052604081208054600192906109b3908490611ada565b925050819055506109d833600554600160405180602001604052806000815250610e95565b600580549060006109e883611b71565b90915550506001600055565b336001600160a01b0383161415610a5f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610429565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600554610adc9190611af2565b905090565b6001600160a01b038516331480610afd5750610afd8533610353565b610b5b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610429565b61066b8585858585610fa1565b6001546001600160a01b03163314610b925760405162461bcd60e51b815260040161042990611a81565b6001600160a01b038116610bf75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610429565b61049e81610e43565b60006001600160e01b03198216636cdb3d1360e11b1480610c3157506001600160e01b031982166303a24d0760e21b145b8061046557506301ffc9a760e01b6001600160e01b0319831614610465565b80516106cb906004906020840190611342565b8151835114610cc55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610429565b6001600160a01b038416610ceb5760405162461bcd60e51b8152600401610429906119f2565b3360005b8451811015610dd5576000858281518110610d0c57610d0c611ba2565b602002602001015190506000858381518110610d2a57610d2a611ba2565b60209081029190910181015160008481526002835260408082206001600160a01b038e168352909352919091205490915081811015610d7b5760405162461bcd60e51b815260040161042990611a37565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610dba908490611ada565b9250508190555050505080610dce90611b71565b9050610cef565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e25929190611969565b60405180910390a4610e3b8187878787876110c2565b505050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610ef55760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610429565b33610f0f81600087610f068861122d565b61066b8861122d565b60008481526002602090815260408083206001600160a01b038916845290915281208054859290610f41908490611ada565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461066b81600087878787611278565b6001600160a01b038416610fc75760405162461bcd60e51b8152600401610429906119f2565b33610fd7818787610f068861122d565b60008481526002602090815260408083206001600160a01b038a1684529091529020548381101561101a5760405162461bcd60e51b815260040161042990611a37565b60008581526002602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611059908490611ada565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46110b9828888888888611278565b50505050505050565b6001600160a01b0384163b15610e3b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061110690899089908890889088906004016118b3565b602060405180830381600087803b15801561112057600080fd5b505af1925050508015611150575060408051601f3d908101601f1916820190925261114d918101906117a4565b60015b6111fd5761115c611bce565b806308c379a014156111965750611171611bea565b8061117c5750611198565b8060405162461bcd60e51b81526004016104299190611997565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610429565b6001600160e01b0319811663bc197c8160e01b146110b95760405162461bcd60e51b8152600401610429906119aa565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061126757611267611ba2565b602090810291909101015292915050565b6001600160a01b0384163b15610e3b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906112bc9089908990889088908890600401611911565b602060405180830381600087803b1580156112d657600080fd5b505af1925050508015611306575060408051601f3d908101601f19168201909252611303918101906117a4565b60015b6113125761115c611bce565b6001600160e01b0319811663f23a6e6160e01b146110b95760405162461bcd60e51b8152600401610429906119aa565b82805461134e90611b09565b90600052602060002090601f01602090048101928261137057600085556113b6565b82601f1061138957805160ff19168380011785556113b6565b828001600101855582156113b6579182015b828111156113b657825182559160200191906001019061139b565b506113c29291506113c6565b5090565b5b808211156113c257600081556001016113c7565b600067ffffffffffffffff8311156113f5576113f5611bb8565b60405161140c601f8501601f191660200182611b44565b80915083815284848401111561142157600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461145057600080fd5b919050565b600082601f83011261146657600080fd5b8135602061147382611ab6565b6040516114808282611b44565b8381528281019150858301600585901b870184018810156114a057600080fd5b60005b858110156114bf578135845292840192908401906001016114a3565b5090979650505050505050565b600082601f8301126114dd57600080fd5b6114ec838335602085016113db565b9392505050565b60006020828403121561150557600080fd5b6114ec82611439565b6000806040838503121561152157600080fd5b61152a83611439565b915061153860208401611439565b90509250929050565b600080600080600060a0868803121561155957600080fd5b61156286611439565b945061157060208701611439565b9350604086013567ffffffffffffffff8082111561158d57600080fd5b61159989838a01611455565b945060608801359150808211156115af57600080fd5b6115bb89838a01611455565b935060808801359150808211156115d157600080fd5b506115de888289016114cc565b9150509295509295909350565b600080600080600060a0868803121561160357600080fd5b61160c86611439565b945061161a60208701611439565b93506040860135925060608601359150608086013567ffffffffffffffff81111561164457600080fd5b6115de888289016114cc565b6000806040838503121561166357600080fd5b61166c83611439565b91506020830135801515811461168157600080fd5b809150509250929050565b6000806040838503121561169f57600080fd5b6116a883611439565b946020939093013593505050565b600080604083850312156116c957600080fd5b823567ffffffffffffffff808211156116e157600080fd5b818501915085601f8301126116f557600080fd5b8135602061170282611ab6565b60405161170f8282611b44565b8381528281019150858301600585901b870184018b101561172f57600080fd5b600096505b848710156117595761174581611439565b835260019690960195918301918301611734565b509650508601359250508082111561177057600080fd5b5061177d85828601611455565b9150509250929050565b60006020828403121561179957600080fd5b81356114ec81611c74565b6000602082840312156117b657600080fd5b81516114ec81611c74565b6000602082840312156117d357600080fd5b813567ffffffffffffffff8111156117ea57600080fd5b8201601f810184136117fb57600080fd5b61180a848235602084016113db565b949350505050565b60006020828403121561182457600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561185b5781518752958201959082019060010161183f565b509495945050505050565b6000815180845260005b8181101561188c57602081850181015186830182015201611870565b8181111561189e576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906118df9083018661182b565b82810360608401526118f1818661182b565b905082810360808401526119058185611866565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061194b90830184611866565b979650505050505050565b6020815260006114ec602083018461182b565b60408152600061197c604083018561182b565b828103602084015261198e818561182b565b95945050505050565b6020815260006114ec6020830184611866565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611ad057611ad0611bb8565b5060051b60200190565b60008219821115611aed57611aed611b8c565b500190565b600082821015611b0457611b04611b8c565b500390565b600181811c90821680611b1d57607f821691505b60208210811415611b3e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611b6a57611b6a611bb8565b6040525050565b6000600019821415611b8557611b85611b8c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611be75760046000803e5060005160e01c5b90565b600060443d1015611bf85790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611c2857505050505090565b8285019150815181811115611c405750505050505090565b843d8701016020828501011115611c5a5750505050505090565b611c6960208286010187611b44565b509095945050505050565b6001600160e01b03198116811461049e57600080fdfea264697066735822122075d9d33a7b27a4accb8b3383711c7c3b38ffa0abb36eb713772670bc4e1be61a64736f6c6343000807003368747470733a2f2f6170692e616e6369656e74647573742e78797a2f636869702f7b69647d

Deployed Bytecode

0x60806040526004361061011e5760003560e01c8063715018a6116100a0578063a2309ff811610064578063a2309ff8146102f6578063b1ab93171461030b578063e985e9c514610338578063f242432a14610381578063f2fde38b146103a157600080fd5b8063715018a61461027c5780638a6c4177146102915780638da5cb5b146102a65780639e6b7af3146102ce578063a22cb465146102d657600080fd5b80632a03998b116100e75780632a03998b146101ea5780632eb2c2d6146102045780633ccfd60b146102245780634e1273f414610239578063648e3c261461026657600080fd5b8062fdd58e1461012357806301ffc9a71461015657806302fe5305146101865780630e89341c146101a85780631c7d0395146101d5575b600080fd5b34801561012f57600080fd5b5061014361013e36600461168c565b6103c1565b6040519081526020015b60405180910390f35b34801561016257600080fd5b50610176610171366004611787565b61045a565b604051901515815260200161014d565b34801561019257600080fd5b506101a66101a13660046117c1565b61046b565b005b3480156101b457600080fd5b506101c86101c3366004611812565b6104a1565b60405161014d9190611997565b3480156101e157600080fd5b506101a6610535565b3480156101f657600080fd5b506006546101769060ff1681565b34801561021057600080fd5b506101a661021f366004611541565b6105db565b34801561023057600080fd5b506101a6610672565b34801561024557600080fd5b506102596102543660046116b6565b6106cf565b60405161014d9190611956565b34801561027257600080fd5b5061014360075481565b34801561028857600080fd5b506101a66107f9565b34801561029d57600080fd5b506101a661082f565b3480156102b257600080fd5b506001546040516001600160a01b03909116815260200161014d565b6101a661088e565b3480156102e257600080fd5b506101a66102f1366004611650565b6109f4565b34801561030257600080fd5b50610143610acb565b34801561031757600080fd5b506101436103263660046114f3565b60086020526000908152604090205481565b34801561034457600080fd5b5061017661035336600461150e565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b34801561038d57600080fd5b506101a661039c3660046115eb565b610ae1565b3480156103ad57600080fd5b506101a66103bc3660046114f3565b610b68565b60006001600160a01b0383166104325760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526002602090815260408083206001600160a01b03949094168352929052205490565b600061046582610c00565b92915050565b6001546001600160a01b031633146104955760405162461bcd60e51b815260040161042990611a81565b61049e81610c50565b50565b6060600480546104b090611b09565b80601f01602080910402602001604051908101604052809291908181526020018280546104dc90611b09565b80156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b50505050509050919050565b6001546001600160a01b0316331461055f5760405162461bcd60e51b815260040161042990611a81565b60065460ff16156105a35760405162461bcd60e51b815260206004820152600e60248201526d416c72656164792061637469766560901b6044820152606401610429565b6006805460ff191660011790556040517f56abb483fc0317d1ecfb1aa750e0de7971705fee1322fa8bacbe9c3d8049e21190600090a1565b6001600160a01b0385163314806105f757506105f78533610353565b61065e5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610429565b61066b8585858585610c63565b5050505050565b6001546001600160a01b0316331461069c5760405162461bcd60e51b815260040161042990611a81565b6040514790339082156108fc029083906000818181858888f193505050501580156106cb573d6000803e3d6000fd5b5050565b606081518351146107345760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610429565b6000835167ffffffffffffffff81111561075057610750611bb8565b604051908082528060200260200182016040528015610779578160200160208202803683370190505b50905060005b84518110156107f1576107c485828151811061079d5761079d611ba2565b60200260200101518583815181106107b7576107b7611ba2565b60200260200101516103c1565b8282815181106107d6576107d6611ba2565b60209081029190910101526107ea81611b71565b905061077f565b509392505050565b6001546001600160a01b031633146108235760405162461bcd60e51b815260040161042990611a81565b61082d6000610e43565b565b6001546001600160a01b031633146108595760405162461bcd60e51b815260040161042990611a81565b6006805460ff191690556040517f4882f680595c15b1d8e20750f0b4a095a42a48962e2482d059b843a81601182790600090a1565b600260005414156108e15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610429565b600260005560065460ff1661092a5760405162461bcd60e51b815260206004820152600f60248201526e4d696e74206e6f742061637469766560881b6044820152606401610429565b336000908152600860205260409020546001116109935760405162461bcd60e51b815260206004820152602160248201527f596f752063616e206f6e6c7920627579206f6e6520416e6369656e74204368696044820152600760fc1b6064820152608401610429565b3360009081526008602052604081208054600192906109b3908490611ada565b925050819055506109d833600554600160405180602001604052806000815250610e95565b600580549060006109e883611b71565b90915550506001600055565b336001600160a01b0383161415610a5f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610429565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600554610adc9190611af2565b905090565b6001600160a01b038516331480610afd5750610afd8533610353565b610b5b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610429565b61066b8585858585610fa1565b6001546001600160a01b03163314610b925760405162461bcd60e51b815260040161042990611a81565b6001600160a01b038116610bf75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610429565b61049e81610e43565b60006001600160e01b03198216636cdb3d1360e11b1480610c3157506001600160e01b031982166303a24d0760e21b145b8061046557506301ffc9a760e01b6001600160e01b0319831614610465565b80516106cb906004906020840190611342565b8151835114610cc55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610429565b6001600160a01b038416610ceb5760405162461bcd60e51b8152600401610429906119f2565b3360005b8451811015610dd5576000858281518110610d0c57610d0c611ba2565b602002602001015190506000858381518110610d2a57610d2a611ba2565b60209081029190910181015160008481526002835260408082206001600160a01b038e168352909352919091205490915081811015610d7b5760405162461bcd60e51b815260040161042990611a37565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610dba908490611ada565b9250508190555050505080610dce90611b71565b9050610cef565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e25929190611969565b60405180910390a4610e3b8187878787876110c2565b505050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610ef55760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610429565b33610f0f81600087610f068861122d565b61066b8861122d565b60008481526002602090815260408083206001600160a01b038916845290915281208054859290610f41908490611ada565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461066b81600087878787611278565b6001600160a01b038416610fc75760405162461bcd60e51b8152600401610429906119f2565b33610fd7818787610f068861122d565b60008481526002602090815260408083206001600160a01b038a1684529091529020548381101561101a5760405162461bcd60e51b815260040161042990611a37565b60008581526002602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611059908490611ada565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46110b9828888888888611278565b50505050505050565b6001600160a01b0384163b15610e3b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061110690899089908890889088906004016118b3565b602060405180830381600087803b15801561112057600080fd5b505af1925050508015611150575060408051601f3d908101601f1916820190925261114d918101906117a4565b60015b6111fd5761115c611bce565b806308c379a014156111965750611171611bea565b8061117c5750611198565b8060405162461bcd60e51b81526004016104299190611997565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610429565b6001600160e01b0319811663bc197c8160e01b146110b95760405162461bcd60e51b8152600401610429906119aa565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061126757611267611ba2565b602090810291909101015292915050565b6001600160a01b0384163b15610e3b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906112bc9089908990889088908890600401611911565b602060405180830381600087803b1580156112d657600080fd5b505af1925050508015611306575060408051601f3d908101601f19168201909252611303918101906117a4565b60015b6113125761115c611bce565b6001600160e01b0319811663f23a6e6160e01b146110b95760405162461bcd60e51b8152600401610429906119aa565b82805461134e90611b09565b90600052602060002090601f01602090048101928261137057600085556113b6565b82601f1061138957805160ff19168380011785556113b6565b828001600101855582156113b6579182015b828111156113b657825182559160200191906001019061139b565b506113c29291506113c6565b5090565b5b808211156113c257600081556001016113c7565b600067ffffffffffffffff8311156113f5576113f5611bb8565b60405161140c601f8501601f191660200182611b44565b80915083815284848401111561142157600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461145057600080fd5b919050565b600082601f83011261146657600080fd5b8135602061147382611ab6565b6040516114808282611b44565b8381528281019150858301600585901b870184018810156114a057600080fd5b60005b858110156114bf578135845292840192908401906001016114a3565b5090979650505050505050565b600082601f8301126114dd57600080fd5b6114ec838335602085016113db565b9392505050565b60006020828403121561150557600080fd5b6114ec82611439565b6000806040838503121561152157600080fd5b61152a83611439565b915061153860208401611439565b90509250929050565b600080600080600060a0868803121561155957600080fd5b61156286611439565b945061157060208701611439565b9350604086013567ffffffffffffffff8082111561158d57600080fd5b61159989838a01611455565b945060608801359150808211156115af57600080fd5b6115bb89838a01611455565b935060808801359150808211156115d157600080fd5b506115de888289016114cc565b9150509295509295909350565b600080600080600060a0868803121561160357600080fd5b61160c86611439565b945061161a60208701611439565b93506040860135925060608601359150608086013567ffffffffffffffff81111561164457600080fd5b6115de888289016114cc565b6000806040838503121561166357600080fd5b61166c83611439565b91506020830135801515811461168157600080fd5b809150509250929050565b6000806040838503121561169f57600080fd5b6116a883611439565b946020939093013593505050565b600080604083850312156116c957600080fd5b823567ffffffffffffffff808211156116e157600080fd5b818501915085601f8301126116f557600080fd5b8135602061170282611ab6565b60405161170f8282611b44565b8381528281019150858301600585901b870184018b101561172f57600080fd5b600096505b848710156117595761174581611439565b835260019690960195918301918301611734565b509650508601359250508082111561177057600080fd5b5061177d85828601611455565b9150509250929050565b60006020828403121561179957600080fd5b81356114ec81611c74565b6000602082840312156117b657600080fd5b81516114ec81611c74565b6000602082840312156117d357600080fd5b813567ffffffffffffffff8111156117ea57600080fd5b8201601f810184136117fb57600080fd5b61180a848235602084016113db565b949350505050565b60006020828403121561182457600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561185b5781518752958201959082019060010161183f565b509495945050505050565b6000815180845260005b8181101561188c57602081850181015186830182015201611870565b8181111561189e576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906118df9083018661182b565b82810360608401526118f1818661182b565b905082810360808401526119058185611866565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061194b90830184611866565b979650505050505050565b6020815260006114ec602083018461182b565b60408152600061197c604083018561182b565b828103602084015261198e818561182b565b95945050505050565b6020815260006114ec6020830184611866565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611ad057611ad0611bb8565b5060051b60200190565b60008219821115611aed57611aed611b8c565b500190565b600082821015611b0457611b04611b8c565b500390565b600181811c90821680611b1d57607f821691505b60208210811415611b3e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611b6a57611b6a611bb8565b6040525050565b6000600019821415611b8557611b85611b8c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611be75760046000803e5060005160e01c5b90565b600060443d1015611bf85790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611c2857505050505090565b8285019150815181811115611c405750505050505090565b843d8701016020828501011115611c5a5750505050505090565b611c6960208286010187611b44565b509095945050505050565b6001600160e01b03198116811461049e57600080fdfea264697066735822122075d9d33a7b27a4accb8b3383711c7c3b38ffa0abb36eb713772670bc4e1be61a64736f6c63430008070033

Deployed Bytecode Sourcemap

41280:1530:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25099:231;;;;;;;;;;-1:-1:-1;25099:231:0;;;;;:::i;:::-;;:::i;:::-;;;17178:25:1;;;17166:2;17151:18;25099:231:0;;;;;;;;41658:165;;;;;;;;;;-1:-1:-1;41658:165:0;;;;;:::i;:::-;;:::i;:::-;;;10045:14:1;;10038:22;10020:41;;10008:2;9993:18;41658:165:0;9880:187:1;41831:91:0;;;;;;;;;;-1:-1:-1;41831:91:0;;;;;:::i;:::-;;:::i;:::-;;24843:105;;;;;;;;;;-1:-1:-1;24843:105:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42189:174::-;;;;;;;;;;;;;:::i;41384:34::-;;;;;;;;;;-1:-1:-1;41384:34:0;;;;;;;;27194:442;;;;;;;;;;-1:-1:-1;27194:442:0;;;;;:::i;:::-;;:::i;41930:140::-;;;;;;;;;;;;;:::i;25496:524::-;;;;;;;;;;-1:-1:-1;25496:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41427:29::-;;;;;;;;;;;;;;;;5343:94;;;;;;;;;;;;;:::i;42369:126::-;;;;;;;;;;;;;:::i;4692:87::-;;;;;;;;;;-1:-1:-1;4765:6:0;;4692:87;;-1:-1:-1;;;;;4765:6:0;;;7686:51:1;;7674:2;7659:18;4692:87:0;7540:203:1;42505:302:0;;;:::i;26093:311::-;;;;;;;;;;-1:-1:-1;26093:311:0;;;;;:::i;:::-;;:::i;42082:97::-;;;;;;;;;;;;;:::i;41463:41::-;;;;;;;;;;-1:-1:-1;41463:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;26476:168;;;;;;;;;;-1:-1:-1;26476:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;26599:27:0;;;26575:4;26599:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;26476:168;26716:401;;;;;;;;;;-1:-1:-1;26716:401:0;;;;;:::i;:::-;;:::i;5592:192::-;;;;;;;;;;-1:-1:-1;5592:192:0;;;;;:::i;:::-;;:::i;25099:231::-;25185:7;-1:-1:-1;;;;;25213:21:0;;25205:77;;;;-1:-1:-1;;;25205:77:0;;11328:2:1;25205:77:0;;;11310:21:1;11367:2;11347:18;;;11340:30;11406:34;11386:18;;;11379:62;-1:-1:-1;;;11457:18:1;;;11450:41;11508:19;;25205:77:0;;;;;;;;;-1:-1:-1;25300:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;25300:22:0;;;;;;;;;;;;25099:231::o;41658:165::-;41753:4;41777:38;41803:11;41777:25;:38::i;:::-;41770:45;41658:165;-1:-1:-1;;41658:165:0:o;41831:91::-;4765:6;;-1:-1:-1;;;;;4765:6:0;3554:10;4912:23;4904:68;;;;-1:-1:-1;;;4904:68:0;;;;;;;:::i;:::-;41899:15:::1;41907:6;41899:7;:15::i;:::-;41831:91:::0;:::o;24843:105::-;24903:13;24936:4;24929:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24843:105;;;:::o;42189:174::-;4765:6;;-1:-1:-1;;;;;4765:6:0;3554:10;4912:23;4904:68;;;;-1:-1:-1;;;4904:68:0;;;;;;;:::i;:::-;42256:14:::1;::::0;::::1;;42255:15;42247:42;;;::::0;-1:-1:-1;;;42247:42:0;;14900:2:1;42247:42:0::1;::::0;::::1;14882:21:1::0;14939:2;14919:18;;;14912:30;-1:-1:-1;;;14958:18:1;;;14951:44;15012:18;;42247:42:0::1;14698:338:1::0;42247:42:0::1;42300:14;:21:::0;;-1:-1:-1;;42300:21:0::1;42317:4;42300:21;::::0;;42337:18:::1;::::0;::::1;::::0;42300:14:::1;::::0;42337:18:::1;42189:174::o:0;27194:442::-;-1:-1:-1;;;;;27427:20:0;;3554:10;27427:20;;:60;;-1:-1:-1;27451:36:0;27468:4;3554:10;26476:168;:::i;27451:36::-;27405:160;;;;-1:-1:-1;;;27405:160:0;;13709:2:1;27405:160:0;;;13691:21:1;13748:2;13728:18;;;13721:30;13787:34;13767:18;;;13760:62;-1:-1:-1;;;13838:18:1;;;13831:48;13896:19;;27405:160:0;13507:414:1;27405:160:0;27576:52;27599:4;27605:2;27609:3;27614:7;27623:4;27576:22;:52::i;:::-;27194:442;;;;;:::o;41930:140::-;4765:6;;-1:-1:-1;;;;;4765:6:0;3554:10;4912:23;4904:68;;;;-1:-1:-1;;;4904:68:0;;;;;;;:::i;:::-;42025:37:::1;::::0;41993:21:::1;::::0;42033:10:::1;::::0;42025:37;::::1;;;::::0;41993:21;;41978:12:::1;42025:37:::0;41978:12;42025:37;41993:21;42033:10;42025:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41967:103;41930:140::o:0;25496:524::-;25652:16;25713:3;:10;25694:8;:15;:29;25686:83;;;;-1:-1:-1;;;25686:83:0;;15653:2:1;25686:83:0;;;15635:21:1;15692:2;15672:18;;;15665:30;15731:34;15711:18;;;15704:62;-1:-1:-1;;;15782:18:1;;;15775:39;15831:19;;25686:83:0;15451:405:1;25686:83:0;25782:30;25829:8;:15;25815:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25815:30:0;;25782:63;;25863:9;25858:122;25882:8;:15;25878:1;:19;25858:122;;;25938:30;25948:8;25957:1;25948:11;;;;;;;;:::i;:::-;;;;;;;25961:3;25965:1;25961:6;;;;;;;;:::i;:::-;;;;;;;25938:9;:30::i;:::-;25919:13;25933:1;25919:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25899:3;;;:::i;:::-;;;25858:122;;;-1:-1:-1;25999:13:0;25496:524;-1:-1:-1;;;25496:524:0:o;5343:94::-;4765:6;;-1:-1:-1;;;;;4765:6:0;3554:10;4912:23;4904:68;;;;-1:-1:-1;;;4904:68:0;;;;;;;:::i;:::-;5408:21:::1;5426:1;5408:9;:21::i;:::-;5343:94::o:0;42369:126::-;4765:6;;-1:-1:-1;;;;;4765:6:0;3554:10;4912:23;4904:68;;;;-1:-1:-1;;;4904:68:0;;;;;;;:::i;:::-;42429:14:::1;:22:::0;;-1:-1:-1;;42429:22:0::1;::::0;;42467:20:::1;::::0;::::1;::::0;42446:5:::1;::::0;42467:20:::1;42369:126::o:0;42505:302::-;40146:1;40742:7;;:19;;40734:63;;;;-1:-1:-1;;;40734:63:0;;16874:2:1;40734:63:0;;;16856:21:1;16913:2;16893:18;;;16886:30;16952:33;16932:18;;;16925:61;17003:18;;40734:63:0;16672:355:1;40734:63:0;40146:1;40875:7;:18;42572:14:::1;::::0;::::1;;42564:42;;;::::0;-1:-1:-1;;;42564:42:0;;12147:2:1;42564:42:0::1;::::0;::::1;12129:21:1::0;12186:2;12166:18;;;12159:30;-1:-1:-1;;;12205:18:1;;;12198:45;12260:18;;42564:42:0::1;11945:339:1::0;42564:42:0::1;42631:10;42625:17;::::0;;;:5:::1;:17;::::0;;;;;42645:1:::1;-1:-1:-1::0;42617:67:0::1;;;::::0;-1:-1:-1;;;42617:67:0;;12491:2:1;42617:67:0::1;::::0;::::1;12473:21:1::0;12530:2;12510:18;;;12503:30;12569:34;12549:18;;;12542:62;-1:-1:-1;;;12620:18:1;;;12613:31;12661:19;;42617:67:0::1;12289:397:1::0;42617:67:0::1;42701:10;42695:17;::::0;;;:5:::1;:17;::::0;;;;:22;;42716:1:::1;::::0;42695:17;:22:::1;::::0;42716:1;;42695:22:::1;:::i;:::-;;;;;;;;42728:42;42734:10;42746:16;;42764:1;42728:42;;;;;;;;;;;::::0;:5:::1;:42::i;:::-;42781:16;:18:::0;;;:16:::1;:18;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;40102:1:0;41054:7;:22;42505:302::o;26093:311::-;3554:10;-1:-1:-1;;;;;26196:24:0;;;;26188:78;;;;-1:-1:-1;;;26188:78:0;;15243:2:1;26188:78:0;;;15225:21:1;15282:2;15262:18;;;15255:30;15321:34;15301:18;;;15294:62;-1:-1:-1;;;15372:18:1;;;15365:39;15421:19;;26188:78:0;15041:405:1;26188:78:0;3554:10;26279:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26279:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26279:53:0;;;;;;;;;;26348:48;;10020:41:1;;;26279:42:0;;3554:10;26348:48;;9993:18:1;26348:48:0;;;;;;;26093:311;;:::o;42082:97::-;42125:7;42170:1;42151:16;;:20;;;;:::i;:::-;42144:27;;42082:97;:::o;26716:401::-;-1:-1:-1;;;;;26924:20:0;;3554:10;26924:20;;:60;;-1:-1:-1;26948:36:0;26965:4;3554:10;26476:168;:::i;26948:36::-;26902:151;;;;-1:-1:-1;;;26902:151:0;;12893:2:1;26902:151:0;;;12875:21:1;12932:2;12912:18;;;12905:30;12971:34;12951:18;;;12944:62;-1:-1:-1;;;13022:18:1;;;13015:39;13071:19;;26902:151:0;12691:405:1;26902:151:0;27064:45;27082:4;27088:2;27092;27096:6;27104:4;27064:17;:45::i;5592:192::-;4765:6;;-1:-1:-1;;;;;4765:6:0;3554:10;4912:23;4904:68;;;;-1:-1:-1;;;4904:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5681:22:0;::::1;5673:73;;;::::0;-1:-1:-1;;;5673:73:0;;11740:2:1;5673:73:0::1;::::0;::::1;11722:21:1::0;11779:2;11759:18;;;11752:30;11818:34;11798:18;;;11791:62;-1:-1:-1;;;11869:18:1;;;11862:36;11915:19;;5673:73:0::1;11538:402:1::0;5673:73:0::1;5757:19;5767:8;5757:9;:19::i;24122:310::-:0;24224:4;-1:-1:-1;;;;;;24261:41:0;;-1:-1:-1;;;24261:41:0;;:110;;-1:-1:-1;;;;;;;24319:52:0;;-1:-1:-1;;;24319:52:0;24261:110;:163;;;-1:-1:-1;;;;;;;;;;15843:40:0;;;24388:36;15734:157;31196:88;31263:13;;;;:4;;:13;;;;;:::i;29278:1074::-;29505:7;:14;29491:3;:10;:28;29483:81;;;;-1:-1:-1;;;29483:81:0;;16063:2:1;29483:81:0;;;16045:21:1;16102:2;16082:18;;;16075:30;16141:34;16121:18;;;16114:62;-1:-1:-1;;;16192:18:1;;;16185:38;16240:19;;29483:81:0;15861:404:1;29483:81:0;-1:-1:-1;;;;;29583:16:0;;29575:66;;;;-1:-1:-1;;;29575:66:0;;;;;;;:::i;:::-;3554:10;29654:16;29771:421;29795:3;:10;29791:1;:14;29771:421;;;29827:10;29840:3;29844:1;29840:6;;;;;;;;:::i;:::-;;;;;;;29827:19;;29861:14;29878:7;29886:1;29878:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29905:19;29927:13;;;:9;:13;;;;;;-1:-1:-1;;;;;29927:19:0;;;;;;;;;;;;29878:10;;-1:-1:-1;29969:21:0;;;;29961:76;;;;-1:-1:-1;;;29961:76:0;;;;;;;:::i;:::-;30081:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;30081:19:0;;;;;;;;;;30103:20;;;30081:42;;30153:17;;;;;;;:27;;30103:20;;30081:13;30153:27;;30103:20;;30153:27;:::i;:::-;;;;;;;;29812:380;;;29807:3;;;;:::i;:::-;;;29771:421;;;;30239:2;-1:-1:-1;;;;;30209:47:0;30233:4;-1:-1:-1;;;;;30209:47:0;30223:8;-1:-1:-1;;;;;30209:47:0;;30243:3;30248:7;30209:47;;;;;;;:::i;:::-;;;;;;;;30269:75;30305:8;30315:4;30321:2;30325:3;30330:7;30339:4;30269:35;:75::i;:::-;29472:880;29278:1074;;;;;:::o;5792:173::-;5867:6;;;-1:-1:-1;;;;;5884:17:0;;;-1:-1:-1;;;;;;5884:17:0;;;;;;;5917:40;;5867:6;;;5884:17;5867:6;;5917:40;;5848:16;;5917:40;5837:128;5792:173;:::o;31685:599::-;-1:-1:-1;;;;;31843:21:0;;31835:67;;;;-1:-1:-1;;;31835:67:0;;16472:2:1;31835:67:0;;;16454:21:1;16511:2;16491:18;;;16484:30;16550:34;16530:18;;;16523:62;-1:-1:-1;;;16601:18:1;;;16594:31;16642:19;;31835:67:0;16270:397:1;31835:67:0;3554:10;31959:107;3554:10;31915:16;32002:7;32011:21;32029:2;32011:17;:21::i;:::-;32034:25;32052:6;32034:17;:25::i;31959:107::-;32079:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;32079:22:0;;;;;;;;;:32;;32105:6;;32079:13;:32;;32105:6;;32079:32;:::i;:::-;;;;-1:-1:-1;;32127:57:0;;;17388:25:1;;;17444:2;17429:18;;17422:34;;;-1:-1:-1;;;;;32127:57:0;;;;32160:1;;32127:57;;;;;;17361:18:1;32127:57:0;;;;;;;32197:79;32228:8;32246:1;32250:7;32259:2;32263:6;32271:4;32197:30;:79::i;28100:820::-;-1:-1:-1;;;;;28288:16:0;;28280:66;;;;-1:-1:-1;;;28280:66:0;;;;;;;:::i;:::-;3554:10;28403:96;3554:10;28434:4;28440:2;28444:21;28462:2;28444:17;:21::i;28403:96::-;28512:19;28534:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28534:19:0;;;;;;;;;;28572:21;;;;28564:76;;;;-1:-1:-1;;;28564:76:0;;;;;;;:::i;:::-;28676:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28676:19:0;;;;;;;;;;28698:20;;;28676:42;;28740:17;;;;;;;:27;;28698:20;;28676:13;28740:27;;28698:20;;28740:27;:::i;:::-;;;;-1:-1:-1;;28785:46:0;;;17388:25:1;;;17444:2;17429:18;;17422:34;;;-1:-1:-1;;;;;28785:46:0;;;;;;;;;;;;;;17361:18:1;28785:46:0;;;;;;;28844:68;28875:8;28885:4;28891:2;28895;28899:6;28907:4;28844:30;:68::i;:::-;28269:651;;28100:820;;;;;:::o;37367:813::-;-1:-1:-1;;;;;37607:13:0;;7067:20;7115:8;37603:570;;37643:79;;-1:-1:-1;;;37643:79:0;;-1:-1:-1;;;;;37643:43:0;;;;;:79;;37687:8;;37697:4;;37703:3;;37708:7;;37717:4;;37643:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37643:79:0;;;;;;;;-1:-1:-1;;37643:79:0;;;;;;;;;;;;:::i;:::-;;;37639:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;38035:6;38028:14;;-1:-1:-1;;;38028:14:0;;;;;;;;:::i;37639:523::-;;;38084:62;;-1:-1:-1;;;38084:62:0;;10498:2:1;38084:62:0;;;10480:21:1;10537:2;10517:18;;;10510:30;10576:34;10556:18;;;10549:62;-1:-1:-1;;;10627:18:1;;;10620:50;10687:19;;38084:62:0;10296:416:1;37639:523:0;-1:-1:-1;;;;;;37804:60:0;;-1:-1:-1;;;37804:60:0;37800:159;;37889:50;;-1:-1:-1;;;37889:50:0;;;;;;;:::i;38188:198::-;38308:16;;;38322:1;38308:16;;;;;;;;;38254;;38283:22;;38308:16;;;;;;;;;;;;-1:-1:-1;38308:16:0;38283:41;;38346:7;38335:5;38341:1;38335:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;38373:5;38188:198;-1:-1:-1;;38188:198:0:o;36615:744::-;-1:-1:-1;;;;;36830:13:0;;7067:20;7115:8;36826:526;;36866:72;;-1:-1:-1;;;36866:72:0;;-1:-1:-1;;;;;36866:38:0;;;;;:72;;36905:8;;36915:4;;36921:2;;36925:6;;36933:4;;36866:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36866:72:0;;;;;;;;-1:-1:-1;;36866:72:0;;;;;;;;;;;;:::i;:::-;;;36862:479;;;;:::i;:::-;-1:-1:-1;;;;;;36988:55:0;;-1:-1:-1;;;36988:55:0;36984:154;;37068:50;;-1:-1:-1;;;37068:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:347::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;;3889:2;3878:9;3874:18;3861:32;3936:5;3929:13;3922:21;3915:5;3912:32;3902:60;;3958:1;3955;3948:12;3902:60;3981:5;3971:15;;;3645:347;;;;;:::o;3997:254::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;4241:2;4226:18;;;;4213:32;;-1:-1:-1;;;3997:254:1:o;4256:1219::-;4374:6;4382;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4491:9;4478:23;4520:18;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4615:6;4604:9;4600:22;4590:32;;4660:7;4653:4;4649:2;4645:13;4641:27;4631:55;;4682:1;4679;4672:12;4631:55;4718:2;4705:16;4740:4;4763:43;4803:2;4763:43;:::i;:::-;4835:2;4829:9;4847:31;4875:2;4867:6;4847:31;:::i;:::-;4913:18;;;4947:15;;;;-1:-1:-1;4982:11:1;;;5024:1;5020:10;;;5012:19;;5008:28;;5005:41;-1:-1:-1;5002:61:1;;;5059:1;5056;5049:12;5002:61;5081:1;5072:10;;5091:169;5105:2;5102:1;5099:9;5091:169;;;5162:23;5181:3;5162:23;:::i;:::-;5150:36;;5123:1;5116:9;;;;;5206:12;;;;5238;;5091:169;;;-1:-1:-1;5279:6:1;-1:-1:-1;;5323:18:1;;5310:32;;-1:-1:-1;;5354:16:1;;;5351:36;;;5383:1;5380;5373:12;5351:36;;5406:63;5461:7;5450:8;5439:9;5435:24;5406:63;:::i;:::-;5396:73;;;4256:1219;;;;;:::o;5480:245::-;5538:6;5591:2;5579:9;5570:7;5566:23;5562:32;5559:52;;;5607:1;5604;5597:12;5559:52;5646:9;5633:23;5665:30;5689:5;5665:30;:::i;5730:249::-;5799:6;5852:2;5840:9;5831:7;5827:23;5823:32;5820:52;;;5868:1;5865;5858:12;5820:52;5900:9;5894:16;5919:30;5943:5;5919:30;:::i;5984:450::-;6053:6;6106:2;6094:9;6085:7;6081:23;6077:32;6074:52;;;6122:1;6119;6112:12;6074:52;6162:9;6149:23;6195:18;6187:6;6184:30;6181:50;;;6227:1;6224;6217:12;6181:50;6250:22;;6303:4;6295:13;;6291:27;-1:-1:-1;6281:55:1;;6332:1;6329;6322:12;6281:55;6355:73;6420:7;6415:2;6402:16;6397:2;6393;6389:11;6355:73;:::i;:::-;6345:83;5984:450;-1:-1:-1;;;;5984:450:1:o;6439:180::-;6498:6;6551:2;6539:9;6530:7;6526:23;6522:32;6519:52;;;6567:1;6564;6557:12;6519:52;-1:-1:-1;6590:23:1;;6439:180;-1:-1:-1;6439:180:1:o;6624:435::-;6677:3;6715:5;6709:12;6742:6;6737:3;6730:19;6768:4;6797:2;6792:3;6788:12;6781:19;;6834:2;6827:5;6823:14;6855:1;6865:169;6879:6;6876:1;6873:13;6865:169;;;6940:13;;6928:26;;6974:12;;;;7009:15;;;;6901:1;6894:9;6865:169;;;-1:-1:-1;7050:3:1;;6624:435;-1:-1:-1;;;;;6624:435:1:o;7064:471::-;7105:3;7143:5;7137:12;7170:6;7165:3;7158:19;7195:1;7205:162;7219:6;7216:1;7213:13;7205:162;;;7281:4;7337:13;;;7333:22;;7327:29;7309:11;;;7305:20;;7298:59;7234:12;7205:162;;;7385:6;7382:1;7379:13;7376:87;;;7451:1;7444:4;7435:6;7430:3;7426:16;7422:27;7415:38;7376:87;-1:-1:-1;7517:2:1;7496:15;-1:-1:-1;;7492:29:1;7483:39;;;;7524:4;7479:50;;7064:471;-1:-1:-1;;7064:471:1:o;7748:826::-;-1:-1:-1;;;;;8145:15:1;;;8127:34;;8197:15;;8192:2;8177:18;;8170:43;8107:3;8244:2;8229:18;;8222:31;;;8070:4;;8276:57;;8313:19;;8305:6;8276:57;:::i;:::-;8381:9;8373:6;8369:22;8364:2;8353:9;8349:18;8342:50;8415:44;8452:6;8444;8415:44;:::i;:::-;8401:58;;8508:9;8500:6;8496:22;8490:3;8479:9;8475:19;8468:51;8536:32;8561:6;8553;8536:32;:::i;:::-;8528:40;7748:826;-1:-1:-1;;;;;;;;7748:826:1:o;8579:560::-;-1:-1:-1;;;;;8876:15:1;;;8858:34;;8928:15;;8923:2;8908:18;;8901:43;8975:2;8960:18;;8953:34;;;9018:2;9003:18;;8996:34;;;8838:3;9061;9046:19;;9039:32;;;8801:4;;9088:45;;9113:19;;9105:6;9088:45;:::i;:::-;9080:53;8579:560;-1:-1:-1;;;;;;;8579:560:1:o;9144:261::-;9323:2;9312:9;9305:21;9286:4;9343:56;9395:2;9384:9;9380:18;9372:6;9343:56;:::i;9410:465::-;9667:2;9656:9;9649:21;9630:4;9693:56;9745:2;9734:9;9730:18;9722:6;9693:56;:::i;:::-;9797:9;9789:6;9785:22;9780:2;9769:9;9765:18;9758:50;9825:44;9862:6;9854;9825:44;:::i;:::-;9817:52;9410:465;-1:-1:-1;;;;;9410:465:1:o;10072:219::-;10221:2;10210:9;10203:21;10184:4;10241:44;10281:2;10270:9;10266:18;10258:6;10241:44;:::i;10717:404::-;10919:2;10901:21;;;10958:2;10938:18;;;10931:30;10997:34;10992:2;10977:18;;10970:62;-1:-1:-1;;;11063:2:1;11048:18;;11041:38;11111:3;11096:19;;10717:404::o;13101:401::-;13303:2;13285:21;;;13342:2;13322:18;;;13315:30;13381:34;13376:2;13361:18;;13354:62;-1:-1:-1;;;13447:2:1;13432:18;;13425:35;13492:3;13477:19;;13101:401::o;13926:406::-;14128:2;14110:21;;;14167:2;14147:18;;;14140:30;14206:34;14201:2;14186:18;;14179:62;-1:-1:-1;;;14272:2:1;14257:18;;14250:40;14322:3;14307:19;;13926:406::o;14337:356::-;14539:2;14521:21;;;14558:18;;;14551:30;14617:34;14612:2;14597:18;;14590:62;14684:2;14669:18;;14337:356::o;17467:183::-;17527:4;17560:18;17552:6;17549:30;17546:56;;;17582:18;;:::i;:::-;-1:-1:-1;17627:1:1;17623:14;17639:4;17619:25;;17467:183::o;17655:128::-;17695:3;17726:1;17722:6;17719:1;17716:13;17713:39;;;17732:18;;:::i;:::-;-1:-1:-1;17768:9:1;;17655:128::o;17788:125::-;17828:4;17856:1;17853;17850:8;17847:34;;;17861:18;;:::i;:::-;-1:-1:-1;17898:9:1;;17788:125::o;17918:380::-;17997:1;17993:12;;;;18040;;;18061:61;;18115:4;18107:6;18103:17;18093:27;;18061:61;18168:2;18160:6;18157:14;18137:18;18134:38;18131:161;;;18214:10;18209:3;18205:20;18202:1;18195:31;18249:4;18246:1;18239:15;18277:4;18274:1;18267:15;18131:161;;17918:380;;;:::o;18303:249::-;18413:2;18394:13;;-1:-1:-1;;18390:27:1;18378:40;;18448:18;18433:34;;18469:22;;;18430:62;18427:88;;;18495:18;;:::i;:::-;18531:2;18524:22;-1:-1:-1;;18303:249:1:o;18557:135::-;18596:3;-1:-1:-1;;18617:17:1;;18614:43;;;18637:18;;:::i;:::-;-1:-1:-1;18684:1:1;18673:13;;18557:135::o;18697:127::-;18758:10;18753:3;18749:20;18746:1;18739:31;18789:4;18786:1;18779:15;18813:4;18810:1;18803:15;18829:127;18890:10;18885:3;18881:20;18878:1;18871:31;18921:4;18918:1;18911:15;18945:4;18942:1;18935:15;18961:127;19022:10;19017:3;19013:20;19010:1;19003:31;19053:4;19050:1;19043:15;19077:4;19074:1;19067:15;19093:179;19128:3;19170:1;19152:16;19149:23;19146:120;;;19216:1;19213;19210;19195:23;-1:-1:-1;19253:1:1;19247:8;19242:3;19238:18;19146:120;19093:179;:::o;19277:671::-;19316:3;19358:4;19340:16;19337:26;19334:39;;;19277:671;:::o;19334:39::-;19400:2;19394:9;-1:-1:-1;;19465:16:1;19461:25;;19458:1;19394:9;19437:50;19516:4;19510:11;19540:16;19575:18;19646:2;19639:4;19631:6;19627:17;19624:25;19619:2;19611:6;19608:14;19605:45;19602:58;;;19653:5;;;;;19277:671;:::o;19602:58::-;19690:6;19684:4;19680:17;19669:28;;19726:3;19720:10;19753:2;19745:6;19742:14;19739:27;;;19759:5;;;;;;19277:671;:::o;19739:27::-;19843:2;19824:16;19818:4;19814:27;19810:36;19803:4;19794:6;19789:3;19785:16;19781:27;19778:69;19775:82;;;19850:5;;;;;;19277:671;:::o;19775:82::-;19866:57;19917:4;19908:6;19900;19896:19;19892:30;19886:4;19866:57;:::i;:::-;-1:-1:-1;19939:3:1;;19277:671;-1:-1:-1;;;;;19277:671:1:o;19953:131::-;-1:-1:-1;;;;;;20027:32:1;;20017:43;;20007:71;;20074:1;20071;20064:12

Swarm Source

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