ETH Price: $3,397.84 (-1.44%)
Gas: 5 Gwei

Token

Particlon Mint Pass (PAMP)
 

Overview

Max Total Supply

250 PAMP

Holders

159

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x1484e7ef9b04f1b6ad2ac69b654cd3c87172a481
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:
ParticlonMintPass

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-17
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (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/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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.
     *
     * NOTE: 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.
     *
     * NOTE: 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/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (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/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (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/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

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

        _doSafeTransferAcceptanceCheck(operator, address(0), to, 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 `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

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

        emit TransferSingle(operator, from, 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 from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

        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: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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: contracts/ParticlonMintPass.sol


pragma solidity 0.8.12;



/// @title Particlon Mint Pass NFT
/// @author 0xapetoshi.eth
contract ParticlonMintPass is ERC1155, Ownable {
    /// @notice With ERC1155, the name and symbol need to be set like this
    string public constant name = "Particlon Mint Pass";

    string public constant symbol = "PAMP";

    /// @notice Sale will be publicly announced
    bool public saleActive;

    /// @notice The maximum number of mints per wallet to 2
    uint256 public constant MAX_PER_WALLET = 2;

    /// @notice Collection limited to 250
    uint256 public constant MAX_TOTAL_SUPPLY = 250;

    /// @notice First one is minted to contract deployer to claim on OpenSea
    uint256 public totalSupply = 1;

    /// @notice The price per one mint, without gas
    uint256 public constant PRICE = 0.15 ether;

    /// @dev Balances can change, mappings are the way to go to limit mints per wallet
    mapping(address => uint256) public walletsMinted;

    /// @notice metadata can't be edited
    constructor()
        ERC1155(
            "ipfs://QmekXtZf3AHMbiqtyidCVJJgCUESdvYjqvtzJBFtZChGK9/{id}.json"
        )
    {
        /**
            @dev msg.sender is the contract deployer,
            @dev ERC1155 supports multiple token types; we only use one (id 0)
            @dev Data is left blank ("")
         */
        _mint(msg.sender, 0, 1, "");
    }

    /// @dev flips boolean with the logical NOT(!) operator
    function flipSale() external onlyOwner {
        saleActive = !saleActive;
    }

    /// @param amount Number of tokens to mint; in this case either 1 or 2
    function mint(uint256 amount) external payable {
        /// @dev smart contracts cannot send signed transactions
        require(msg.sender == tx.origin, "Smart contracts not allowed");
        require(saleActive, "Sale not active");
        require(amount > 0, "Amount can't be 0");
        require(
            walletsMinted[msg.sender] + amount <= 2,
            "Wallet limitation (2)"
        );
        require(msg.value == PRICE * amount, "Incorrect ETH");
        require(totalSupply + amount <= MAX_TOTAL_SUPPLY, "Total supply (250)");

        walletsMinted[msg.sender] += amount;
        totalSupply += amount;

        /// @dev effects are before interactions to avoid reentrancy attacks
        _mint(msg.sender, 0, amount, "");
    }

    /// @notice Withdraws funds to the team Gnosis Safe Multisig wallet
    function withdrawETH() external onlyOwner {
        payable(0xDbaD7CbcA084DFf4E93B0f365978362aD8cc0A35).transfer(
            address(this).balance
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"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":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"flipSale","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"","type":"address"}],"name":"walletsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016004553480156200001657600080fd5b506040518060600160405280603f815260200162002339603f91396200003c8162000073565b5062000048336200008c565b6200006d336000600160405180602001604052806000815250620000de60201b60201c565b62000716565b80516200008890600290602084019062000430565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416620001445760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b336200016a816000876200015888620001fe565b6200016388620001fe565b5050505050565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906200019c908490620004d6565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4620001638160008787878762000254565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106200023b576200023b620004fd565b602090810291909101015292915050565b505050505050565b62000273846001600160a01b03166200042a60201b62000bee1760201c565b156200024c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190620002af908990899088908890889060040162000563565b6020604051808303816000875af1925050508015620002ed575060408051601f3d908101601f19168201909252620002ea91810190620005aa565b60015b620003ae57620002fc620005dd565b806308c379a014156200033d57506200031462000635565b806200032157506200033f565b8060405162461bcd60e51b81526004016200013b9190620006c4565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016200013b565b6001600160e01b0319811663f23a6e6160e01b14620004215760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016200013b565b50505050505050565b3b151590565b8280546200043e90620006d9565b90600052602060002090601f016020900481019282620004625760008555620004ad565b82601f106200047d57805160ff1916838001178555620004ad565b82800160010185558215620004ad579182015b82811115620004ad57825182559160200191906001019062000490565b50620004bb929150620004bf565b5090565b5b80821115620004bb5760008155600101620004c0565b60008219821115620004f857634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052603260045260246000fd5b6000815180845260005b818110156200053b576020818501810151868301820152016200051d565b818111156200054e576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906200059f9083018462000513565b979650505050505050565b600060208284031215620005bd57600080fd5b81516001600160e01b031981168114620005d657600080fd5b9392505050565b600060033d1115620005f75760046000803e5060005160e01c5b90565b601f8201601f191681016001600160401b03811182821017156200062e57634e487b7160e01b600052604160045260246000fd5b6040525050565b600060443d1015620006445790565b6040516003193d81016004833e81513d6001600160401b0380831160248401831017156200067457505050505090565b82850191508151818111156200068d5750505050505090565b843d8701016020828501011115620006a85750505050505090565b620006b960208286010187620005fa565b509095945050505050565b602081526000620005d6602083018462000513565b600181811c90821680620006ee57607f821691505b602082108114156200071057634e487b7160e01b600052602260045260246000fd5b50919050565b611c1380620007266000396000f3fe6080604052600436106101345760003560e01c8063715018a6116100ab578063a0712d681161006f578063a0712d6814610383578063a22cb46514610396578063e086e5ec146103b6578063e985e9c5146103cb578063f242432a14610414578063f2fde38b1461043457600080fd5b8063715018a6146102e55780637ba5e621146102fa5780638d859f3e1461030f5780638da5cb5b1461032b57806395d89b411461035357600080fd5b806318160ddd116100fd57806318160ddd1461021d5780632eb2c2d61461023357806333039d3d146102555780633dc31e6a1461026a5780634e1273f41461029757806368428a1b146102c457600080fd5b8062fdd58e1461013957806301ffc9a71461016c57806306fdde031461019c5780630e89341c146101e85780630f2cdd6c14610208575b600080fd5b34801561014557600080fd5b506101596101543660046113a9565b610454565b6040519081526020015b60405180910390f35b34801561017857600080fd5b5061018c6101873660046113e9565b6104eb565b6040519015158152602001610163565b3480156101a857600080fd5b506101db604051806040016040528060138152602001725061727469636c6f6e204d696e74205061737360681b81525081565b604051610163919061145a565b3480156101f457600080fd5b506101db61020336600461146d565b61053d565b34801561021457600080fd5b50610159600281565b34801561022957600080fd5b5061015960045481565b34801561023f57600080fd5b5061025361024e3660046115d2565b6105d1565b005b34801561026157600080fd5b5061015960fa81565b34801561027657600080fd5b5061015961028536600461167c565b60056020526000908152604090205481565b3480156102a357600080fd5b506102b76102b2366004611697565b610668565b604051610163919061179d565b3480156102d057600080fd5b5060035461018c90600160a01b900460ff1681565b3480156102f157600080fd5b50610253610792565b34801561030657600080fd5b506102536107c8565b34801561031b57600080fd5b50610159670214e8348c4f000081565b34801561033757600080fd5b506003546040516001600160a01b039091168152602001610163565b34801561035f57600080fd5b506101db60405180604001604052806004815260200163050414d560e41b81525081565b61025361039136600461146d565b610813565b3480156103a257600080fd5b506102536103b13660046117b0565b610a56565b3480156103c257600080fd5b50610253610a65565b3480156103d757600080fd5b5061018c6103e63660046117ec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561042057600080fd5b5061025361042f36600461181f565b610acf565b34801561044057600080fd5b5061025361044f36600461167c565b610b56565b60006001600160a01b0383166104c55760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061051c57506001600160e01b031982166303a24d0760e21b145b8061053757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461054c90611884565b80601f016020809104026020016040519081016040528092919081815260200182805461057890611884565b80156105c55780601f1061059a576101008083540402835291602001916105c5565b820191906000526020600020905b8154815290600101906020018083116105a857829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105ed57506105ed85336103e6565b6106545760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016104bc565b6106618585858585610bf4565b5050505050565b606081518351146106cd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016104bc565b6000835167ffffffffffffffff8111156106e9576106e9611486565b604051908082528060200260200182016040528015610712578160200160208202803683370190505b50905060005b845181101561078a5761075d858281518110610736576107366118bf565b6020026020010151858381518110610750576107506118bf565b6020026020010151610454565b82828151811061076f5761076f6118bf565b6020908102919091010152610783816118eb565b9050610718565b509392505050565b6003546001600160a01b031633146107bc5760405162461bcd60e51b81526004016104bc90611906565b6107c66000610dd1565b565b6003546001600160a01b031633146107f25760405162461bcd60e51b81526004016104bc90611906565b6003805460ff60a01b198116600160a01b9182900460ff1615909102179055565b3332146108625760405162461bcd60e51b815260206004820152601b60248201527f536d61727420636f6e747261637473206e6f7420616c6c6f776564000000000060448201526064016104bc565b600354600160a01b900460ff166108ad5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016104bc565b600081116108f15760405162461bcd60e51b81526020600482015260116024820152700416d6f756e742063616e2774206265203607c1b60448201526064016104bc565b3360009081526005602052604090205460029061090f90839061193b565b11156109555760405162461bcd60e51b815260206004820152601560248201527457616c6c6574206c696d69746174696f6e2028322960581b60448201526064016104bc565b61096781670214e8348c4f0000611953565b34146109a55760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b60448201526064016104bc565b60fa816004546109b5919061193b565b11156109f85760405162461bcd60e51b8152602060048201526012602482015271546f74616c20737570706c7920283235302960701b60448201526064016104bc565b3360009081526005602052604081208054839290610a1790849061193b565b925050819055508060046000828254610a30919061193b565b92505081905550610a533360008360405180602001604052806000815250610e23565b50565b610a61338383610f2d565b5050565b6003546001600160a01b03163314610a8f5760405162461bcd60e51b81526004016104bc90611906565b60405173dbad7cbca084dff4e93b0f365978362ad8cc0a35904780156108fc02916000818181858888f19350505050158015610a53573d6000803e3d6000fd5b6001600160a01b038516331480610aeb5750610aeb85336103e6565b610b495760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016104bc565b610661858585858561100e565b6003546001600160a01b03163314610b805760405162461bcd60e51b81526004016104bc90611906565b6001600160a01b038116610be55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104bc565b610a5381610dd1565b3b151590565b8151835114610c565760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016104bc565b6001600160a01b038416610c7c5760405162461bcd60e51b81526004016104bc90611972565b3360005b8451811015610d63576000858281518110610c9d57610c9d6118bf565b602002602001015190506000858381518110610cbb57610cbb6118bf565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d0b5760405162461bcd60e51b81526004016104bc906119b7565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d4890849061193b565b9250508190555050505080610d5c906118eb565b9050610c80565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610db3929190611a01565b60405180910390a4610dc981878787878761112b565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610e835760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016104bc565b33610e9d81600087610e9488611287565b61066188611287565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610ecd90849061193b565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610661816000878787876112d2565b816001600160a01b0316836001600160a01b03161415610fa15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016104bc565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166110345760405162461bcd60e51b81526004016104bc90611972565b33611044818787610e9488611287565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156110855760405162461bcd60e51b81526004016104bc906119b7565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906110c290849061193b565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111228288888888886112d2565b50505050505050565b6001600160a01b0384163b15610dc95760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061116f9089908990889088908890600401611a2f565b6020604051808303816000875af19250505080156111aa575060408051601f3d908101601f191682019092526111a791810190611a8d565b60015b611257576111b6611aaa565b806308c379a014156111f057506111cb611ac6565b806111d657506111f2565b8060405162461bcd60e51b81526004016104bc919061145a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016104bc565b6001600160e01b0319811663bc197c8160e01b146111225760405162461bcd60e51b81526004016104bc90611b50565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112c1576112c16118bf565b602090810291909101015292915050565b6001600160a01b0384163b15610dc95760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113169089908990889088908890600401611b98565b6020604051808303816000875af1925050508015611351575060408051601f3d908101601f1916820190925261134e91810190611a8d565b60015b61135d576111b6611aaa565b6001600160e01b0319811663f23a6e6160e01b146111225760405162461bcd60e51b81526004016104bc90611b50565b80356001600160a01b03811681146113a457600080fd5b919050565b600080604083850312156113bc57600080fd5b6113c58361138d565b946020939093013593505050565b6001600160e01b031981168114610a5357600080fd5b6000602082840312156113fb57600080fd5b8135611406816113d3565b9392505050565b6000815180845260005b8181101561143357602081850181015186830182015201611417565b81811115611445576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611406602083018461140d565b60006020828403121561147f57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156114c2576114c2611486565b6040525050565b600067ffffffffffffffff8211156114e3576114e3611486565b5060051b60200190565b600082601f8301126114fe57600080fd5b8135602061150b826114c9565b604051611518828261149c565b83815260059390931b850182019282810191508684111561153857600080fd5b8286015b84811015611553578035835291830191830161153c565b509695505050505050565b600082601f83011261156f57600080fd5b813567ffffffffffffffff81111561158957611589611486565b6040516115a0601f8301601f19166020018261149c565b8181528460208386010111156115b557600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156115ea57600080fd5b6115f38661138d565b94506116016020870161138d565b9350604086013567ffffffffffffffff8082111561161e57600080fd5b61162a89838a016114ed565b9450606088013591508082111561164057600080fd5b61164c89838a016114ed565b9350608088013591508082111561166257600080fd5b5061166f8882890161155e565b9150509295509295909350565b60006020828403121561168e57600080fd5b6114068261138d565b600080604083850312156116aa57600080fd5b823567ffffffffffffffff808211156116c257600080fd5b818501915085601f8301126116d657600080fd5b813560206116e3826114c9565b6040516116f0828261149c565b83815260059390931b850182019282810191508984111561171057600080fd5b948201945b83861015611735576117268661138d565b82529482019490820190611715565b9650508601359250508082111561174b57600080fd5b50611758858286016114ed565b9150509250929050565b600081518084526020808501945080840160005b8381101561179257815187529582019590820190600101611776565b509495945050505050565b6020815260006114066020830184611762565b600080604083850312156117c357600080fd5b6117cc8361138d565b9150602083013580151581146117e157600080fd5b809150509250929050565b600080604083850312156117ff57600080fd5b6118088361138d565b91506118166020840161138d565b90509250929050565b600080600080600060a0868803121561183757600080fd5b6118408661138d565b945061184e6020870161138d565b93506040860135925060608601359150608086013567ffffffffffffffff81111561187857600080fd5b61166f8882890161155e565b600181811c9082168061189857607f821691505b602082108114156118b957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156118ff576118ff6118d5565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561194e5761194e6118d5565b500190565b600081600019048311821515161561196d5761196d6118d5565b500290565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000611a146040830185611762565b8281036020840152611a268185611762565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611a5b90830186611762565b8281036060840152611a6d8186611762565b90508281036080840152611a81818561140d565b98975050505050505050565b600060208284031215611a9f57600080fd5b8151611406816113d3565b600060033d1115611ac35760046000803e5060005160e01c5b90565b600060443d1015611ad45790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611b0457505050505090565b8285019150815181811115611b1c5750505050505090565b843d8701016020828501011115611b365750505050505090565b611b456020828601018761149c565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611bd29083018461140d565b97965050505050505056fea26469706673582212203012f6ac03be972af11b70dd5f3d6d8ff9cdcfc420dd93f94c9f6e67fd5ddd9064736f6c634300080c0033697066733a2f2f516d656b58745a663341484d6269717479696443564a4a67435545536476596a7176747a4a4246745a4368474b392f7b69647d2e6a736f6e

Deployed Bytecode

0x6080604052600436106101345760003560e01c8063715018a6116100ab578063a0712d681161006f578063a0712d6814610383578063a22cb46514610396578063e086e5ec146103b6578063e985e9c5146103cb578063f242432a14610414578063f2fde38b1461043457600080fd5b8063715018a6146102e55780637ba5e621146102fa5780638d859f3e1461030f5780638da5cb5b1461032b57806395d89b411461035357600080fd5b806318160ddd116100fd57806318160ddd1461021d5780632eb2c2d61461023357806333039d3d146102555780633dc31e6a1461026a5780634e1273f41461029757806368428a1b146102c457600080fd5b8062fdd58e1461013957806301ffc9a71461016c57806306fdde031461019c5780630e89341c146101e85780630f2cdd6c14610208575b600080fd5b34801561014557600080fd5b506101596101543660046113a9565b610454565b6040519081526020015b60405180910390f35b34801561017857600080fd5b5061018c6101873660046113e9565b6104eb565b6040519015158152602001610163565b3480156101a857600080fd5b506101db604051806040016040528060138152602001725061727469636c6f6e204d696e74205061737360681b81525081565b604051610163919061145a565b3480156101f457600080fd5b506101db61020336600461146d565b61053d565b34801561021457600080fd5b50610159600281565b34801561022957600080fd5b5061015960045481565b34801561023f57600080fd5b5061025361024e3660046115d2565b6105d1565b005b34801561026157600080fd5b5061015960fa81565b34801561027657600080fd5b5061015961028536600461167c565b60056020526000908152604090205481565b3480156102a357600080fd5b506102b76102b2366004611697565b610668565b604051610163919061179d565b3480156102d057600080fd5b5060035461018c90600160a01b900460ff1681565b3480156102f157600080fd5b50610253610792565b34801561030657600080fd5b506102536107c8565b34801561031b57600080fd5b50610159670214e8348c4f000081565b34801561033757600080fd5b506003546040516001600160a01b039091168152602001610163565b34801561035f57600080fd5b506101db60405180604001604052806004815260200163050414d560e41b81525081565b61025361039136600461146d565b610813565b3480156103a257600080fd5b506102536103b13660046117b0565b610a56565b3480156103c257600080fd5b50610253610a65565b3480156103d757600080fd5b5061018c6103e63660046117ec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561042057600080fd5b5061025361042f36600461181f565b610acf565b34801561044057600080fd5b5061025361044f36600461167c565b610b56565b60006001600160a01b0383166104c55760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061051c57506001600160e01b031982166303a24d0760e21b145b8061053757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461054c90611884565b80601f016020809104026020016040519081016040528092919081815260200182805461057890611884565b80156105c55780601f1061059a576101008083540402835291602001916105c5565b820191906000526020600020905b8154815290600101906020018083116105a857829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105ed57506105ed85336103e6565b6106545760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016104bc565b6106618585858585610bf4565b5050505050565b606081518351146106cd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016104bc565b6000835167ffffffffffffffff8111156106e9576106e9611486565b604051908082528060200260200182016040528015610712578160200160208202803683370190505b50905060005b845181101561078a5761075d858281518110610736576107366118bf565b6020026020010151858381518110610750576107506118bf565b6020026020010151610454565b82828151811061076f5761076f6118bf565b6020908102919091010152610783816118eb565b9050610718565b509392505050565b6003546001600160a01b031633146107bc5760405162461bcd60e51b81526004016104bc90611906565b6107c66000610dd1565b565b6003546001600160a01b031633146107f25760405162461bcd60e51b81526004016104bc90611906565b6003805460ff60a01b198116600160a01b9182900460ff1615909102179055565b3332146108625760405162461bcd60e51b815260206004820152601b60248201527f536d61727420636f6e747261637473206e6f7420616c6c6f776564000000000060448201526064016104bc565b600354600160a01b900460ff166108ad5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016104bc565b600081116108f15760405162461bcd60e51b81526020600482015260116024820152700416d6f756e742063616e2774206265203607c1b60448201526064016104bc565b3360009081526005602052604090205460029061090f90839061193b565b11156109555760405162461bcd60e51b815260206004820152601560248201527457616c6c6574206c696d69746174696f6e2028322960581b60448201526064016104bc565b61096781670214e8348c4f0000611953565b34146109a55760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b60448201526064016104bc565b60fa816004546109b5919061193b565b11156109f85760405162461bcd60e51b8152602060048201526012602482015271546f74616c20737570706c7920283235302960701b60448201526064016104bc565b3360009081526005602052604081208054839290610a1790849061193b565b925050819055508060046000828254610a30919061193b565b92505081905550610a533360008360405180602001604052806000815250610e23565b50565b610a61338383610f2d565b5050565b6003546001600160a01b03163314610a8f5760405162461bcd60e51b81526004016104bc90611906565b60405173dbad7cbca084dff4e93b0f365978362ad8cc0a35904780156108fc02916000818181858888f19350505050158015610a53573d6000803e3d6000fd5b6001600160a01b038516331480610aeb5750610aeb85336103e6565b610b495760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016104bc565b610661858585858561100e565b6003546001600160a01b03163314610b805760405162461bcd60e51b81526004016104bc90611906565b6001600160a01b038116610be55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104bc565b610a5381610dd1565b3b151590565b8151835114610c565760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016104bc565b6001600160a01b038416610c7c5760405162461bcd60e51b81526004016104bc90611972565b3360005b8451811015610d63576000858281518110610c9d57610c9d6118bf565b602002602001015190506000858381518110610cbb57610cbb6118bf565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d0b5760405162461bcd60e51b81526004016104bc906119b7565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d4890849061193b565b9250508190555050505080610d5c906118eb565b9050610c80565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610db3929190611a01565b60405180910390a4610dc981878787878761112b565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610e835760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016104bc565b33610e9d81600087610e9488611287565b61066188611287565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610ecd90849061193b565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610661816000878787876112d2565b816001600160a01b0316836001600160a01b03161415610fa15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016104bc565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166110345760405162461bcd60e51b81526004016104bc90611972565b33611044818787610e9488611287565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156110855760405162461bcd60e51b81526004016104bc906119b7565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906110c290849061193b565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111228288888888886112d2565b50505050505050565b6001600160a01b0384163b15610dc95760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061116f9089908990889088908890600401611a2f565b6020604051808303816000875af19250505080156111aa575060408051601f3d908101601f191682019092526111a791810190611a8d565b60015b611257576111b6611aaa565b806308c379a014156111f057506111cb611ac6565b806111d657506111f2565b8060405162461bcd60e51b81526004016104bc919061145a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016104bc565b6001600160e01b0319811663bc197c8160e01b146111225760405162461bcd60e51b81526004016104bc90611b50565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112c1576112c16118bf565b602090810291909101015292915050565b6001600160a01b0384163b15610dc95760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113169089908990889088908890600401611b98565b6020604051808303816000875af1925050508015611351575060408051601f3d908101601f1916820190925261134e91810190611a8d565b60015b61135d576111b6611aaa565b6001600160e01b0319811663f23a6e6160e01b146111225760405162461bcd60e51b81526004016104bc90611b50565b80356001600160a01b03811681146113a457600080fd5b919050565b600080604083850312156113bc57600080fd5b6113c58361138d565b946020939093013593505050565b6001600160e01b031981168114610a5357600080fd5b6000602082840312156113fb57600080fd5b8135611406816113d3565b9392505050565b6000815180845260005b8181101561143357602081850181015186830182015201611417565b81811115611445576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611406602083018461140d565b60006020828403121561147f57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156114c2576114c2611486565b6040525050565b600067ffffffffffffffff8211156114e3576114e3611486565b5060051b60200190565b600082601f8301126114fe57600080fd5b8135602061150b826114c9565b604051611518828261149c565b83815260059390931b850182019282810191508684111561153857600080fd5b8286015b84811015611553578035835291830191830161153c565b509695505050505050565b600082601f83011261156f57600080fd5b813567ffffffffffffffff81111561158957611589611486565b6040516115a0601f8301601f19166020018261149c565b8181528460208386010111156115b557600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156115ea57600080fd5b6115f38661138d565b94506116016020870161138d565b9350604086013567ffffffffffffffff8082111561161e57600080fd5b61162a89838a016114ed565b9450606088013591508082111561164057600080fd5b61164c89838a016114ed565b9350608088013591508082111561166257600080fd5b5061166f8882890161155e565b9150509295509295909350565b60006020828403121561168e57600080fd5b6114068261138d565b600080604083850312156116aa57600080fd5b823567ffffffffffffffff808211156116c257600080fd5b818501915085601f8301126116d657600080fd5b813560206116e3826114c9565b6040516116f0828261149c565b83815260059390931b850182019282810191508984111561171057600080fd5b948201945b83861015611735576117268661138d565b82529482019490820190611715565b9650508601359250508082111561174b57600080fd5b50611758858286016114ed565b9150509250929050565b600081518084526020808501945080840160005b8381101561179257815187529582019590820190600101611776565b509495945050505050565b6020815260006114066020830184611762565b600080604083850312156117c357600080fd5b6117cc8361138d565b9150602083013580151581146117e157600080fd5b809150509250929050565b600080604083850312156117ff57600080fd5b6118088361138d565b91506118166020840161138d565b90509250929050565b600080600080600060a0868803121561183757600080fd5b6118408661138d565b945061184e6020870161138d565b93506040860135925060608601359150608086013567ffffffffffffffff81111561187857600080fd5b61166f8882890161155e565b600181811c9082168061189857607f821691505b602082108114156118b957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156118ff576118ff6118d5565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561194e5761194e6118d5565b500190565b600081600019048311821515161561196d5761196d6118d5565b500290565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000611a146040830185611762565b8281036020840152611a268185611762565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611a5b90830186611762565b8281036060840152611a6d8186611762565b90508281036080840152611a81818561140d565b98975050505050505050565b600060208284031215611a9f57600080fd5b8151611406816113d3565b600060033d1115611ac35760046000803e5060005160e01c5b90565b600060443d1015611ad45790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611b0457505050505090565b8285019150815181811115611b1c5750505050505090565b843d8701016020828501011115611b365750505050505090565b611b456020828601018761149c565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611bd29083018461140d565b97965050505050505056fea26469706673582212203012f6ac03be972af11b70dd5f3d6d8ff9cdcfc420dd93f94c9f6e67fd5ddd9064736f6c634300080c0033

Deployed Bytecode Sourcemap

36704:2563:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23060:231;;;;;;;;;;-1:-1:-1;23060:231:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;23060:231:0;;;;;;;;22083:310;;;;;;;;;;-1:-1:-1;22083:310:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;22083:310:0;1019:187:1;36834:51:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36834:51:0;;;;;;;;;;;;:::i;22804:105::-;;;;;;;;;;-1:-1:-1;22804:105:0;;;;;:::i;:::-;;:::i;37082:42::-;;;;;;;;;;;;37123:1;37082:42;;37309:30;;;;;;;;;;;;;;;;24999:442;;;;;;;;;;-1:-1:-1;24999:442:0;;;;;:::i;:::-;;:::i;:::-;;37176:46;;;;;;;;;;;;37219:3;37176:46;;37540:48;;;;;;;;;;-1:-1:-1;37540:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;23457:524;;;;;;;;;;-1:-1:-1;23457:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36990:22::-;;;;;;;;;;-1:-1:-1;36990:22:0;;;;-1:-1:-1;;;36990:22:0;;;;;;2641:103;;;;;;;;;;;;;:::i;38084:82::-;;;;;;;;;;;;;:::i;37401:42::-;;;;;;;;;;;;37433:10;37401:42;;1990:87;;;;;;;;;;-1:-1:-1;2063:6:0;;1990:87;;-1:-1:-1;;;;;2063:6:0;;;7165:51:1;;7153:2;7138:18;1990:87:0;7019:203:1;36894:38:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36894:38:0;;;;;38250:765;;;;;;:::i;:::-;;:::i;24054:155::-;;;;;;;;;;-1:-1:-1;24054:155:0;;;;;:::i;:::-;;:::i;39096:168::-;;;;;;;;;;;;;:::i;24281:::-;;;;;;;;;;-1:-1:-1;24281:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;24404:27:0;;;24380:4;24404:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;24281:168;24521:401;;;;;;;;;;-1:-1:-1;24521:401:0;;;;;:::i;:::-;;:::i;2899:201::-;;;;;;;;;;-1:-1:-1;2899:201:0;;;;;:::i;:::-;;:::i;23060:231::-;23146:7;-1:-1:-1;;;;;23174:21:0;;23166:77;;;;-1:-1:-1;;;23166:77:0;;8657:2:1;23166:77:0;;;8639:21:1;8696:2;8676:18;;;8669:30;8735:34;8715:18;;;8708:62;-1:-1:-1;;;8786:18:1;;;8779:41;8837:19;;23166:77:0;;;;;;;;;-1:-1:-1;23261:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;23261:22:0;;;;;;;;;;;;23060:231::o;22083:310::-;22185:4;-1:-1:-1;;;;;;22222:41:0;;-1:-1:-1;;;22222:41:0;;:110;;-1:-1:-1;;;;;;;22280:52:0;;-1:-1:-1;;;22280:52:0;22222:110;:163;;;-1:-1:-1;;;;;;;;;;13500:40:0;;;22349:36;22202:183;22083:310;-1:-1:-1;;22083:310:0:o;22804:105::-;22864:13;22897:4;22890:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22804:105;;;:::o;24999:442::-;-1:-1:-1;;;;;25232:20:0;;794:10;25232:20;;:60;;-1:-1:-1;25256:36:0;25273:4;794:10;24281:168;:::i;25256:36::-;25210:160;;;;-1:-1:-1;;;25210:160:0;;9454:2:1;25210:160:0;;;9436:21:1;9493:2;9473:18;;;9466:30;9532:34;9512:18;;;9505:62;-1:-1:-1;;;9583:18:1;;;9576:48;9641:19;;25210:160:0;9252:414:1;25210:160:0;25381:52;25404:4;25410:2;25414:3;25419:7;25428:4;25381:22;:52::i;:::-;24999:442;;;;;:::o;23457:524::-;23613:16;23674:3;:10;23655:8;:15;:29;23647:83;;;;-1:-1:-1;;;23647:83:0;;9873:2:1;23647:83:0;;;9855:21:1;9912:2;9892:18;;;9885:30;9951:34;9931:18;;;9924:62;-1:-1:-1;;;10002:18:1;;;9995:39;10051:19;;23647:83:0;9671:405:1;23647:83:0;23743:30;23790:8;:15;23776:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23776:30:0;;23743:63;;23824:9;23819:122;23843:8;:15;23839:1;:19;23819:122;;;23899:30;23909:8;23918:1;23909:11;;;;;;;;:::i;:::-;;;;;;;23922:3;23926:1;23922:6;;;;;;;;:::i;:::-;;;;;;;23899:9;:30::i;:::-;23880:13;23894:1;23880:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;23860:3;;;:::i;:::-;;;23819:122;;;-1:-1:-1;23960:13:0;23457:524;-1:-1:-1;;;23457:524:0:o;2641:103::-;2063:6;;-1:-1:-1;;;;;2063:6:0;794:10;2210:23;2202:68;;;;-1:-1:-1;;;2202:68:0;;;;;;;:::i;:::-;2706:30:::1;2733:1;2706:18;:30::i;:::-;2641:103::o:0;38084:82::-;2063:6;;-1:-1:-1;;;;;2063:6:0;794:10;2210:23;2202:68;;;;-1:-1:-1;;;2202:68:0;;;;;;;:::i;:::-;38148:10:::1;::::0;;-1:-1:-1;;;;38134:24:0;::::1;-1:-1:-1::0;;;38148:10:0;;;::::1;;;38147:11;38134:24:::0;;::::1;;::::0;;38084:82::o;38250:765::-;38382:10;38396:9;38382:23;38374:63;;;;-1:-1:-1;;;38374:63:0;;11048:2:1;38374:63:0;;;11030:21:1;11087:2;11067:18;;;11060:30;11126:29;11106:18;;;11099:57;11173:18;;38374:63:0;10846:351:1;38374:63:0;38456:10;;-1:-1:-1;;;38456:10:0;;;;38448:38;;;;-1:-1:-1;;;38448:38:0;;11404:2:1;38448:38:0;;;11386:21:1;11443:2;11423:18;;;11416:30;-1:-1:-1;;;11462:18:1;;;11455:45;11517:18;;38448:38:0;11202:339:1;38448:38:0;38514:1;38505:6;:10;38497:40;;;;-1:-1:-1;;;38497:40:0;;11748:2:1;38497:40:0;;;11730:21:1;11787:2;11767:18;;;11760:30;-1:-1:-1;;;11806:18:1;;;11799:47;11863:18;;38497:40:0;11546:341:1;38497:40:0;38584:10;38570:25;;;;:13;:25;;;;;;38608:1;;38570:34;;38598:6;;38570:34;:::i;:::-;:39;;38548:110;;;;-1:-1:-1;;;38548:110:0;;12227:2:1;38548:110:0;;;12209:21:1;12266:2;12246:18;;;12239:30;-1:-1:-1;;;12285:18:1;;;12278:51;12346:18;;38548:110:0;12025:345:1;38548:110:0;38690:14;38698:6;37433:10;38690:14;:::i;:::-;38677:9;:27;38669:53;;;;-1:-1:-1;;;38669:53:0;;12750:2:1;38669:53:0;;;12732:21:1;12789:2;12769:18;;;12762:30;-1:-1:-1;;;12808:18:1;;;12801:43;12861:18;;38669:53:0;12548:337:1;38669:53:0;37219:3;38755:6;38741:11;;:20;;;;:::i;:::-;:40;;38733:71;;;;-1:-1:-1;;;38733:71:0;;13092:2:1;38733:71:0;;;13074:21:1;13131:2;13111:18;;;13104:30;-1:-1:-1;;;13150:18:1;;;13143:48;13208:18;;38733:71:0;12890:342:1;38733:71:0;38831:10;38817:25;;;;:13;:25;;;;;:35;;38846:6;;38817:25;:35;;38846:6;;38817:35;:::i;:::-;;;;;;;;38878:6;38863:11;;:21;;;;;;;:::i;:::-;;;;;;;;38975:32;38981:10;38993:1;38996:6;38975:32;;;;;;;;;;;;:5;:32::i;:::-;38250:765;:::o;24054:155::-;24149:52;794:10;24182:8;24192;24149:18;:52::i;:::-;24054:155;;:::o;39096:168::-;2063:6;;-1:-1:-1;;;;;2063:6:0;794:10;2210:23;2202:68;;;;-1:-1:-1;;;2202:68:0;;;;;;;:::i;:::-;39149:107:::1;::::0;39157:42:::1;::::0;39224:21:::1;39149:107:::0;::::1;;;::::0;::::1;::::0;;;39224:21;39157:42;39149:107;::::1;;;;;;;;;;;;;::::0;::::1;;;;24521:401:::0;-1:-1:-1;;;;;24729:20:0;;794:10;24729:20;;:60;;-1:-1:-1;24753:36:0;24770:4;794:10;24281:168;:::i;24753:36::-;24707:151;;;;-1:-1:-1;;;24707:151:0;;13439:2:1;24707:151:0;;;13421:21:1;13478:2;13458:18;;;13451:30;13517:34;13497:18;;;13490:62;-1:-1:-1;;;13568:18:1;;;13561:39;13617:19;;24707:151:0;13237:405:1;24707:151:0;24869:45;24887:4;24893:2;24897;24901:6;24909:4;24869:17;:45::i;2899:201::-;2063:6;;-1:-1:-1;;;;;2063:6:0;794:10;2210:23;2202:68;;;;-1:-1:-1;;;2202:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2988:22:0;::::1;2980:73;;;::::0;-1:-1:-1;;;2980:73:0;;13849:2:1;2980:73:0::1;::::0;::::1;13831:21:1::0;13888:2;13868:18;;;13861:30;13927:34;13907:18;;;13900:62;-1:-1:-1;;;13978:18:1;;;13971:36;14024:19;;2980:73:0::1;13647:402:1::0;2980:73:0::1;3064:28;3083:8;3064:18;:28::i;4278:387::-:0;4601:20;4649:8;;;4278:387::o;27083:1074::-;27310:7;:14;27296:3;:10;:28;27288:81;;;;-1:-1:-1;;;27288:81:0;;14256:2:1;27288:81:0;;;14238:21:1;14295:2;14275:18;;;14268:30;14334:34;14314:18;;;14307:62;-1:-1:-1;;;14385:18:1;;;14378:38;14433:19;;27288:81:0;14054:404:1;27288:81:0;-1:-1:-1;;;;;27388:16:0;;27380:66;;;;-1:-1:-1;;;27380:66:0;;;;;;;:::i;:::-;794:10;27459:16;27576:421;27600:3;:10;27596:1;:14;27576:421;;;27632:10;27645:3;27649:1;27645:6;;;;;;;;:::i;:::-;;;;;;;27632:19;;27666:14;27683:7;27691:1;27683:10;;;;;;;;:::i;:::-;;;;;;;;;;;;27710:19;27732:13;;;;;;;;;;-1:-1:-1;;;;;27732:19:0;;;;;;;;;;;;27683:10;;-1:-1:-1;27774:21:0;;;;27766:76;;;;-1:-1:-1;;;27766:76:0;;;;;;;:::i;:::-;27886:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27886:19:0;;;;;;;;;;27908:20;;;27886:42;;27958:17;;;;;;;:27;;27908:20;;27886:9;27958:27;;27908:20;;27958:27;:::i;:::-;;;;;;;;27617:380;;;27612:3;;;;:::i;:::-;;;27576:421;;;;28044:2;-1:-1:-1;;;;;28014:47:0;28038:4;-1:-1:-1;;;;;28014:47:0;28028:8;-1:-1:-1;;;;;28014:47:0;;28048:3;28053:7;28014:47;;;;;;;:::i;:::-;;;;;;;;28074:75;28110:8;28120:4;28126:2;28130:3;28135:7;28144:4;28074:35;:75::i;:::-;27277:880;27083:1074;;;;;:::o;3260:191::-;3353:6;;;-1:-1:-1;;;;;3370:17:0;;;-1:-1:-1;;;;;;3370:17:0;;;;;;;3403:40;;3353:6;;;3370:17;3353:6;;3403:40;;3334:16;;3403:40;3323:128;3260:191;:::o;29475:569::-;-1:-1:-1;;;;;29628:16:0;;29620:62;;;;-1:-1:-1;;;29620:62:0;;15952:2:1;29620:62:0;;;15934:21:1;15991:2;15971:18;;;15964:30;16030:34;16010:18;;;16003:62;-1:-1:-1;;;16081:18:1;;;16074:31;16122:19;;29620:62:0;15750:397:1;29620:62:0;794:10;29739:102;794:10;29695:16;29782:2;29786:21;29804:2;29786:17;:21::i;:::-;29809:25;29827:6;29809:17;:25::i;29739:102::-;29854:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29854:17:0;;;;;;;;;:27;;29875:6;;29854:9;:27;;29875:6;;29854:27;:::i;:::-;;;;-1:-1:-1;;29897:52:0;;;16326:25:1;;;16382:2;16367:18;;16360:34;;;-1:-1:-1;;;;;29897:52:0;;;;29930:1;;29897:52;;;;;;16299:18:1;29897:52:0;;;;;;;29962:74;29993:8;30011:1;30015:2;30019;30023:6;30031:4;29962:30;:74::i;33269:331::-;33424:8;-1:-1:-1;;;;;33415:17:0;:5;-1:-1:-1;;;;;33415:17:0;;;33407:71;;;;-1:-1:-1;;;33407:71:0;;16607:2:1;33407:71:0;;;16589:21:1;16646:2;16626:18;;;16619:30;16685:34;16665:18;;;16658:62;-1:-1:-1;;;16736:18:1;;;16729:39;16785:19;;33407:71:0;16405:405:1;33407:71:0;-1:-1:-1;;;;;33489:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33489:46:0;;;;;;;;;;33551:41;;1159::1;;;33551::0;;1132:18:1;33551:41:0;;;;;;;33269:331;;;:::o;25905:820::-;-1:-1:-1;;;;;26093:16:0;;26085:66;;;;-1:-1:-1;;;26085:66:0;;;;;;;:::i;:::-;794:10;26208:96;794:10;26239:4;26245:2;26249:21;26267:2;26249:17;:21::i;26208:96::-;26317:19;26339:13;;;;;;;;;;;-1:-1:-1;;;;;26339:19:0;;;;;;;;;;26377:21;;;;26369:76;;;;-1:-1:-1;;;26369:76:0;;;;;;;:::i;:::-;26481:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26481:19:0;;;;;;;;;;26503:20;;;26481:42;;26545:17;;;;;;;:27;;26503:20;;26481:9;26545:27;;26503:20;;26545:27;:::i;:::-;;;;-1:-1:-1;;26590:46:0;;;16326:25:1;;;16382:2;16367:18;;16360:34;;;-1:-1:-1;;;;;26590:46:0;;;;;;;;;;;;;;16299:18:1;26590:46:0;;;;;;;26649:68;26680:8;26690:4;26696:2;26700;26704:6;26712:4;26649:30;:68::i;:::-;26074:651;;25905:820;;;;;:::o;35537:813::-;-1:-1:-1;;;;;35777:13:0;;4601:20;4649:8;35773:570;;35813:79;;-1:-1:-1;;;35813:79:0;;-1:-1:-1;;;;;35813:43:0;;;;;:79;;35857:8;;35867:4;;35873:3;;35878:7;;35887:4;;35813:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35813:79:0;;;;;;;;-1:-1:-1;;35813:79:0;;;;;;;;;;;;:::i;:::-;;;35809:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36205:6;36198:14;;-1:-1:-1;;;36198:14:0;;;;;;;;:::i;35809:523::-;;;36254:62;;-1:-1:-1;;;36254:62:0;;18963:2:1;36254:62:0;;;18945:21:1;19002:2;18982:18;;;18975:30;19041:34;19021:18;;;19014:62;-1:-1:-1;;;19092:18:1;;;19085:50;19152:19;;36254:62:0;18761:416:1;35809:523:0;-1:-1:-1;;;;;;35974:60:0;;-1:-1:-1;;;35974:60:0;35970:159;;36059:50;;-1:-1:-1;;;36059:50:0;;;;;;;:::i;36358:198::-;36478:16;;;36492:1;36478:16;;;;;;;;;36424;;36453:22;;36478:16;;;;;;;;;;;;-1:-1:-1;36478:16:0;36453:41;;36516:7;36505:5;36511:1;36505:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;36543:5;36358:198;-1:-1:-1;;36358:198:0:o;34785:744::-;-1:-1:-1;;;;;35000:13:0;;4601:20;4649:8;34996:526;;35036:72;;-1:-1:-1;;;35036:72:0;;-1:-1:-1;;;;;35036:38:0;;;;;:72;;35075:8;;35085:4;;35091:2;;35095:6;;35103:4;;35036:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35036:72:0;;;;;;;;-1:-1:-1;;35036:72:0;;;;;;;;;;;;:::i;:::-;;;35032:479;;;;:::i;:::-;-1:-1:-1;;;;;;35158:55:0;;-1:-1:-1;;;35158:55:0;35154:154;;35238:50;;-1:-1:-1;;;35238:50:0;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:472::-;1253:3;1291:5;1285:12;1318:6;1313:3;1306:19;1343:1;1353:162;1367:6;1364:1;1361:13;1353:162;;;1429:4;1485:13;;;1481:22;;1475:29;1457:11;;;1453:20;;1446:59;1382:12;1353:162;;;1533:6;1530:1;1527:13;1524:87;;;1599:1;1592:4;1583:6;1578:3;1574:16;1570:27;1563:38;1524:87;-1:-1:-1;1665:2:1;1644:15;-1:-1:-1;;1640:29:1;1631:39;;;;1672:4;1627:50;;1211:472;-1:-1:-1;;1211:472:1:o;1688:220::-;1837:2;1826:9;1819:21;1800:4;1857:45;1898:2;1887:9;1883:18;1875:6;1857:45;:::i;1913:180::-;1972:6;2025:2;2013:9;2004:7;2000:23;1996:32;1993:52;;;2041:1;2038;2031:12;1993:52;-1:-1:-1;2064:23:1;;1913:180;-1:-1:-1;1913:180:1:o;2098:127::-;2159:10;2154:3;2150:20;2147:1;2140:31;2190:4;2187:1;2180:15;2214:4;2211:1;2204:15;2230:249;2340:2;2321:13;;-1:-1:-1;;2317:27:1;2305:40;;2375:18;2360:34;;2396:22;;;2357:62;2354:88;;;2422:18;;:::i;:::-;2458:2;2451:22;-1:-1:-1;;2230:249:1:o;2484:183::-;2544:4;2577:18;2569:6;2566:30;2563:56;;;2599:18;;:::i;:::-;-1:-1:-1;2644:1:1;2640:14;2656:4;2636:25;;2484:183::o;2672:724::-;2726:5;2779:3;2772:4;2764:6;2760:17;2756:27;2746:55;;2797:1;2794;2787:12;2746:55;2833:6;2820:20;2859:4;2882:43;2922:2;2882:43;:::i;:::-;2954:2;2948:9;2966:31;2994:2;2986:6;2966:31;:::i;:::-;3032:18;;;3124:1;3120:10;;;;3108:23;;3104:32;;;3066:15;;;;-1:-1:-1;3148:15:1;;;3145:35;;;3176:1;3173;3166:12;3145:35;3212:2;3204:6;3200:15;3224:142;3240:6;3235:3;3232:15;3224:142;;;3306:17;;3294:30;;3344:12;;;;3257;;3224:142;;;-1:-1:-1;3384:6:1;2672:724;-1:-1:-1;;;;;;2672:724:1:o;3401:555::-;3443:5;3496:3;3489:4;3481:6;3477:17;3473:27;3463:55;;3514:1;3511;3504:12;3463:55;3550:6;3537:20;3576:18;3572:2;3569:26;3566:52;;;3598:18;;:::i;:::-;3647:2;3641:9;3659:67;3714:2;3695:13;;-1:-1:-1;;3691:27:1;3720:4;3687:38;3641:9;3659:67;:::i;:::-;3750:2;3742:6;3735:18;3796:3;3789:4;3784:2;3776:6;3772:15;3768:26;3765:35;3762:55;;;3813:1;3810;3803:12;3762:55;3877:2;3870:4;3862:6;3858:17;3851:4;3843:6;3839:17;3826:54;3924:1;3900:15;;;3917:4;3896:26;3889:37;;;;3904:6;3401:555;-1:-1:-1;;;3401:555:1:o;3961:943::-;4115:6;4123;4131;4139;4147;4200:3;4188:9;4179:7;4175:23;4171:33;4168:53;;;4217:1;4214;4207:12;4168:53;4240:29;4259:9;4240:29;:::i;:::-;4230:39;;4288:38;4322:2;4311:9;4307:18;4288:38;:::i;:::-;4278:48;;4377:2;4366:9;4362:18;4349:32;4400:18;4441:2;4433:6;4430:14;4427:34;;;4457:1;4454;4447:12;4427:34;4480:61;4533:7;4524:6;4513:9;4509:22;4480:61;:::i;:::-;4470:71;;4594:2;4583:9;4579:18;4566:32;4550:48;;4623:2;4613:8;4610:16;4607:36;;;4639:1;4636;4629:12;4607:36;4662:63;4717:7;4706:8;4695:9;4691:24;4662:63;:::i;:::-;4652:73;;4778:3;4767:9;4763:19;4750:33;4734:49;;4808:2;4798:8;4795:16;4792:36;;;4824:1;4821;4814:12;4792:36;;4847:51;4890:7;4879:8;4868:9;4864:24;4847:51;:::i;:::-;4837:61;;;3961:943;;;;;;;;:::o;4909:186::-;4968:6;5021:2;5009:9;5000:7;4996:23;4992:32;4989:52;;;5037:1;5034;5027:12;4989:52;5060:29;5079:9;5060:29;:::i;5100:1208::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5335:9;5322:23;5364:18;5405:2;5397:6;5394:14;5391:34;;;5421:1;5418;5411:12;5391:34;5459:6;5448:9;5444:22;5434:32;;5504:7;5497:4;5493:2;5489:13;5485:27;5475:55;;5526:1;5523;5516:12;5475:55;5562:2;5549:16;5584:4;5607:43;5647:2;5607:43;:::i;:::-;5679:2;5673:9;5691:31;5719:2;5711:6;5691:31;:::i;:::-;5757:18;;;5845:1;5841:10;;;;5833:19;;5829:28;;;5791:15;;;;-1:-1:-1;5869:19:1;;;5866:39;;;5901:1;5898;5891:12;5866:39;5925:11;;;;5945:148;5961:6;5956:3;5953:15;5945:148;;;6027:23;6046:3;6027:23;:::i;:::-;6015:36;;5978:12;;;;6071;;;;5945:148;;;6112:6;-1:-1:-1;;6156:18:1;;6143:32;;-1:-1:-1;;6187:16:1;;;6184:36;;;6216:1;6213;6206:12;6184:36;;6239:63;6294:7;6283:8;6272:9;6268:24;6239:63;:::i;:::-;6229:73;;;5100:1208;;;;;:::o;6313:435::-;6366:3;6404:5;6398:12;6431:6;6426:3;6419:19;6457:4;6486:2;6481:3;6477:12;6470:19;;6523:2;6516:5;6512:14;6544:1;6554:169;6568:6;6565:1;6562:13;6554:169;;;6629:13;;6617:26;;6663:12;;;;6698:15;;;;6590:1;6583:9;6554:169;;;-1:-1:-1;6739:3:1;;6313:435;-1:-1:-1;;;;;6313:435:1:o;6753:261::-;6932:2;6921:9;6914:21;6895:4;6952:56;7004:2;6993:9;6989:18;6981:6;6952:56;:::i;7227:347::-;7292:6;7300;7353:2;7341:9;7332:7;7328:23;7324:32;7321:52;;;7369:1;7366;7359:12;7321:52;7392:29;7411:9;7392:29;:::i;:::-;7382:39;;7471:2;7460:9;7456:18;7443:32;7518:5;7511:13;7504:21;7497:5;7494:32;7484:60;;7540:1;7537;7530:12;7484:60;7563:5;7553:15;;;7227:347;;;;;:::o;7579:260::-;7647:6;7655;7708:2;7696:9;7687:7;7683:23;7679:32;7676:52;;;7724:1;7721;7714:12;7676:52;7747:29;7766:9;7747:29;:::i;:::-;7737:39;;7795:38;7829:2;7818:9;7814:18;7795:38;:::i;:::-;7785:48;;7579:260;;;;;:::o;7844:606::-;7948:6;7956;7964;7972;7980;8033:3;8021:9;8012:7;8008:23;8004:33;8001:53;;;8050:1;8047;8040:12;8001:53;8073:29;8092:9;8073:29;:::i;:::-;8063:39;;8121:38;8155:2;8144:9;8140:18;8121:38;:::i;:::-;8111:48;;8206:2;8195:9;8191:18;8178:32;8168:42;;8257:2;8246:9;8242:18;8229:32;8219:42;;8312:3;8301:9;8297:19;8284:33;8340:18;8332:6;8329:30;8326:50;;;8372:1;8369;8362:12;8326:50;8395:49;8436:7;8427:6;8416:9;8412:22;8395:49;:::i;8867:380::-;8946:1;8942:12;;;;8989;;;9010:61;;9064:4;9056:6;9052:17;9042:27;;9010:61;9117:2;9109:6;9106:14;9086:18;9083:38;9080:161;;;9163:10;9158:3;9154:20;9151:1;9144:31;9198:4;9195:1;9188:15;9226:4;9223:1;9216:15;9080:161;;8867:380;;;:::o;10081:127::-;10142:10;10137:3;10133:20;10130:1;10123:31;10173:4;10170:1;10163:15;10197:4;10194:1;10187:15;10213:127;10274:10;10269:3;10265:20;10262:1;10255:31;10305:4;10302:1;10295:15;10329:4;10326:1;10319:15;10345:135;10384:3;-1:-1:-1;;10405:17:1;;10402:43;;;10425:18;;:::i;:::-;-1:-1:-1;10472:1:1;10461:13;;10345:135::o;10485:356::-;10687:2;10669:21;;;10706:18;;;10699:30;10765:34;10760:2;10745:18;;10738:62;10832:2;10817:18;;10485:356::o;11892:128::-;11932:3;11963:1;11959:6;11956:1;11953:13;11950:39;;;11969:18;;:::i;:::-;-1:-1:-1;12005:9:1;;11892:128::o;12375:168::-;12415:7;12481:1;12477;12473:6;12469:14;12466:1;12463:21;12458:1;12451:9;12444:17;12440:45;12437:71;;;12488:18;;:::i;:::-;-1:-1:-1;12528:9:1;;12375:168::o;14463:401::-;14665:2;14647:21;;;14704:2;14684:18;;;14677:30;14743:34;14738:2;14723:18;;14716:62;-1:-1:-1;;;14809:2:1;14794:18;;14787:35;14854:3;14839:19;;14463:401::o;14869:406::-;15071:2;15053:21;;;15110:2;15090:18;;;15083:30;15149:34;15144:2;15129:18;;15122:62;-1:-1:-1;;;15215:2:1;15200:18;;15193:40;15265:3;15250:19;;14869:406::o;15280:465::-;15537:2;15526:9;15519:21;15500:4;15563:56;15615:2;15604:9;15600:18;15592:6;15563:56;:::i;:::-;15667:9;15659:6;15655:22;15650:2;15639:9;15635:18;15628:50;15695:44;15732:6;15724;15695:44;:::i;:::-;15687:52;15280:465;-1:-1:-1;;;;;15280:465:1:o;16815:827::-;-1:-1:-1;;;;;17212:15:1;;;17194:34;;17264:15;;17259:2;17244:18;;17237:43;17174:3;17311:2;17296:18;;17289:31;;;17137:4;;17343:57;;17380:19;;17372:6;17343:57;:::i;:::-;17448:9;17440:6;17436:22;17431:2;17420:9;17416:18;17409:50;17482:44;17519:6;17511;17482:44;:::i;:::-;17468:58;;17575:9;17567:6;17563:22;17557:3;17546:9;17542:19;17535:51;17603:33;17629:6;17621;17603:33;:::i;:::-;17595:41;16815:827;-1:-1:-1;;;;;;;;16815:827:1:o;17647:249::-;17716:6;17769:2;17757:9;17748:7;17744:23;17740:32;17737:52;;;17785:1;17782;17775:12;17737:52;17817:9;17811:16;17836:30;17860:5;17836:30;:::i;17901:179::-;17936:3;17978:1;17960:16;17957:23;17954:120;;;18024:1;18021;18018;18003:23;-1:-1:-1;18061:1:1;18055:8;18050:3;18046:18;17954:120;17901:179;:::o;18085:671::-;18124:3;18166:4;18148:16;18145:26;18142:39;;;18085:671;:::o;18142:39::-;18208:2;18202:9;-1:-1:-1;;18273:16:1;18269:25;;18266:1;18202:9;18245:50;18324:4;18318:11;18348:16;18383:18;18454:2;18447:4;18439:6;18435:17;18432:25;18427:2;18419:6;18416:14;18413:45;18410:58;;;18461:5;;;;;18085:671;:::o;18410:58::-;18498:6;18492:4;18488:17;18477:28;;18534:3;18528:10;18561:2;18553:6;18550:14;18547:27;;;18567:5;;;;;;18085:671;:::o;18547:27::-;18651:2;18632:16;18626:4;18622:27;18618:36;18611:4;18602:6;18597:3;18593:16;18589:27;18586:69;18583:82;;;18658:5;;;;;;18085:671;:::o;18583:82::-;18674:57;18725:4;18716:6;18708;18704:19;18700:30;18694:4;18674:57;:::i;:::-;-1:-1:-1;18747:3:1;;18085:671;-1:-1:-1;;;;;18085:671:1:o;19182:404::-;19384:2;19366:21;;;19423:2;19403:18;;;19396:30;19462:34;19457:2;19442:18;;19435:62;-1:-1:-1;;;19528:2:1;19513:18;;19506:38;19576:3;19561:19;;19182:404::o;19591:561::-;-1:-1:-1;;;;;19888:15:1;;;19870:34;;19940:15;;19935:2;19920:18;;19913:43;19987:2;19972:18;;19965:34;;;20030:2;20015:18;;20008:34;;;19850:3;20073;20058:19;;20051:32;;;19813:4;;20100:46;;20126:19;;20118:6;20100:46;:::i;:::-;20092:54;19591:561;-1:-1:-1;;;;;;;19591:561:1:o

Swarm Source

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