ETH Price: $3,256.30 (-0.28%)
Gas: 20 Gwei

Token

WhalerNFTs (WhalerNFTs)
 

Overview

Max Total Supply

176 WhalerNFTs

Holders

142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
blzer.eth
0x7788005b890Fc63326e44d7Af8D3C13aF59BE5FB
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:
TokenERC1155

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-08
*/

// SPDX-License-Identifier: MIT
// Sources flattened with hardhat v2.9.3 https://hardhat.org

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


pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

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

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

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

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

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

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

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


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


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/utils/[email protected]


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


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


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/[email protected]


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/access/[email protected]


pragma solidity ^0.8.0;




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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

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

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

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

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

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

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

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

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

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


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


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/[email protected]


pragma solidity ^0.8.0;

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

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


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


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/utils/[email protected]


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/token/ERC1155/[email protected]


pragma solidity ^0.8.0;






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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        return array;
    }
}


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


pragma solidity ^0.8.0;

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates weither any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_mint}.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        super._mint(account, id, amount, data);
        _totalSupply[id] += amount;
    }

    /**
     * @dev See {ERC1155-_mintBatch}.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._mintBatch(to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] += amounts[i];
        }
    }

    /**
     * @dev See {ERC1155-_burn}.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
        _totalSupply[id] -= amount;
    }

    /**
     * @dev See {ERC1155-_burnBatch}.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] -= amounts[i];
        }
    }
}


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


pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


// File contracts/ERC1155Mintable.sol

pragma solidity ^0.8.0;




contract TokenERC1155 is AccessControl, ERC1155Supply {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    string public baseMetadataURI;
    mapping(bytes32 => bool) public roots;
    mapping(bytes32 => mapping(address => bool)) public claimed;
    string public name;
    string public symbol;

    event SetRoot(bytes32 indexed root, bool valid);

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _baseMetadataURI
    ) ERC1155(_baseMetadataURI) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
        baseMetadataURI = _baseMetadataURI;
        name = _name;
        symbol = _symbol;
    }

    function mint(
        address to,
        uint256 id,
        uint256 amount
    ) public {
        require(
            hasRole(MINTER_ROLE, _msgSender()),
            "ERC1155: must have minter role to mint"
        );
        _mint(to, id, amount, new bytes(0));
    }

    function mint(
        bytes32[] calldata proof,
        bytes32 root,
        uint256 tokenId,
        uint256 amount
    ) public {
        require(roots[root], "invalid root!");
        require(!claimed[root][msg.sender], "aleardy claimed!");
        claimed[root][msg.sender] = true;
        require(
            MerkleProof.verify(
                proof,
                root,
                keccak256(abi.encode(tokenId, amount, msg.sender))
            ),
            "invalid merkle proof"
        );
        _mint(msg.sender, tokenId, amount, new bytes(0));
    }

    function setRoot(bytes32 root) public {
        require(
            hasRole(MINTER_ROLE, _msgSender()),
            "ERC1155: must have minter role to mint"
        );
        roots[root] = !roots[root];
        emit SetRoot(root, roots[root]);
    }

    function mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public {
        require(
            hasRole(MINTER_ROLE, _msgSender()),
            "ERC1155: must have minter role to mint"
        );
        _mintBatch(to, ids, amounts, data);
    }

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

    function setURI(string memory uri_) public {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, _msgSender()),
            "ERC1155: must have Admin role to mint"
        );
        baseMetadataURI = uri_;
    }

    function uri(uint256 tokenId) public view override returns (string memory) {
        require(totalSupply(tokenId) > 0, "ERC1155: NONEXISTENT_TOKEN");
        return
            string(
                abi.encodePacked(baseMetadataURI, Strings.toString(tokenId))
            );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseMetadataURI","type":"string"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"root","type":"bytes32"},{"indexed":false,"internalType":"bool","name":"valid","type":"bool"}],"name":"SetRoot","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"baseMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"roots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002c7438038062002c748339810160408190526200003491620002e0565b806200004081620000c5565b506200004e600033620000de565b6200007a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000de565b80516200008f90600590602084019062000187565b508251620000a590600890602086019062000187565b508151620000bb90600990602085019062000187565b50505050620003c0565b8051620000da90600390602084019062000187565b5050565b6000828152602081815260408083206001600160a01b0385168452909152902054620000da908390839060ff16620000da576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001433390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b82805462000195906200036d565b90600052602060002090601f016020900481019282620001b9576000855562000204565b82601f10620001d457805160ff191683800117855562000204565b8280016001018555821562000204579182015b8281111562000204578251825591602001919060010190620001e7565b506200021292915062000216565b5090565b5b8082111562000212576000815560010162000217565b600082601f8301126200023e578081fd5b81516001600160401b03808211156200025b576200025b620003aa565b604051601f8301601f19908116603f01168101908282118183101715620002865762000286620003aa565b81604052838152602092508683858801011115620002a2578485fd5b8491505b83821015620002c55785820183015181830184015290820190620002a6565b83821115620002d657848385830101525b9695505050505050565b600080600060608486031215620002f5578283fd5b83516001600160401b03808211156200030c578485fd5b6200031a878388016200022d565b9450602086015191508082111562000330578384fd5b6200033e878388016200022d565b9350604086015191508082111562000354578283fd5b5062000363868287016200022d565b9150509250925092565b600181811c908216806200038257607f821691505b60208210811415620003a457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6128a480620003d06000396000f3fe608060405234801561001057600080fd5b50600436106101a85760003560e01c80634f558e79116100f9578063bd85b03911610097578063dab5f34011610071578063dab5f340146103b3578063dfcae622146103c6578063e985e9c5146103f4578063f242432a1461043057600080fd5b8063bd85b0391461036b578063d53913931461038b578063d547741f146103a057600080fd5b806395d89b41116100d357806395d89b4114610325578063a217fddf1461032d578063a22cb46514610335578063ae6dead71461034857600080fd5b80634f558e79146102e85780635b2bd79e1461030a57806391d148541461031257600080fd5b80631f7fdffa116101665780632eb2c2d6116101405780632eb2c2d61461028f5780632f2ff15d146102a257806336568abe146102b55780634e1273f4146102c857600080fd5b80631f7fdffa14610246578063222a490714610259578063248a9ca31461026c57600080fd5b8062fdd58e146101ad57806301ffc9a7146101d357806302fe5305146101f657806306fdde031461020b5780630e89341c14610220578063156e29f614610233575b600080fd5b6101c06101bb366004611f62565b610443565b6040519081526020015b60405180910390f35b6101e66101e1366004612146565b6104dc565b60405190151581526020016101ca565b61020961020436600461217e565b6104ed565b005b610213610569565b6040516101ca919061243b565b61021361022e36600461210c565b6105f7565b610209610241366004611f8b565b610688565b610209610254366004611e94565b6106fa565b610209610267366004612087565b610740565b6101c061027a36600461210c565b60009081526020819052604090206001015490565b61020961029d366004611d8d565b6108d1565b6102096102b0366004612124565b610961565b6102096102c3366004612124565b610987565b6102db6102d6366004611fbd565b610a01565b6040516101ca9190612403565b6101e66102f636600461210c565b600090815260046020526040902054151590565b610213610b62565b6101e6610320366004612124565b610b6f565b610213610b98565b6101c0600081565b610209610343366004611f28565b610ba5565b6101e661035636600461210c565b60066020526000908152604090205460ff1681565b6101c061037936600461210c565b60009081526004602052604090205490565b6101c060008051602061284f83398151915281565b6102096103ae366004612124565b610c7c565b6102096103c136600461210c565b610ca2565b6101e66103d4366004612124565b600760209081526000928352604080842090915290825290205460ff1681565b6101e6610402366004611d5b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b61020961043e366004611e32565b610d33565b60006001600160a01b0383166104b45760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006104e782610dba565b92915050565b6104f8600033610b6f565b6105525760405162461bcd60e51b815260206004820152602560248201527f455243313135353a206d75737420686176652041646d696e20726f6c6520746f604482015264081b5a5b9d60da1b60648201526084016104ab565b8051610565906005906020840190611bb6565b5050565b60088054610576906126bc565b80601f01602080910402602001604051908101604052809291908181526020018280546105a2906126bc565b80156105ef5780601f106105c4576101008083540402835291602001916105ef565b820191906000526020600020905b8154815290600101906020018083116105d257829003601f168201915b505050505081565b600081815260046020526040812054606091106106565760405162461bcd60e51b815260206004820152601a60248201527f455243313135353a204e4f4e4558495354454e545f544f4b454e00000000000060448201526064016104ab565b600561066183610dfa565b604051602001610672929190612245565b6040516020818303038152906040529050919050565b6106a060008051602061284f83398151915233610b6f565b6106bc5760405162461bcd60e51b81526004016104ab906125ae565b6106f583838360005b6040519080825280601f01601f1916602001820160405280156106ef576020820181803683370190505b50610f1b565b505050565b61071260008051602061284f83398151915233610b6f565b61072e5760405162461bcd60e51b81526004016104ab906125ae565b61073a84848484610f50565b50505050565b60008381526006602052604090205460ff1661078e5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420726f6f742160981b60448201526064016104ab565b600083815260076020908152604080832033845290915290205460ff16156107eb5760405162461bcd60e51b815260206004820152601060248201526f616c656172647920636c61696d65642160801b60448201526064016104ab565b6000838152600760209081526040808320338452825291829020805460ff191660011790558151868202818101830190935286815261087a92909188918891829190850190849080828437600092019190915250506040805160208101889052908101869052336060820152879250608001905060405160208183030381529060405280519060200120610fef565b6108bd5760405162461bcd60e51b815260206004820152601460248201527334b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016104ab565b6108ca33838360006106c5565b5050505050565b6001600160a01b0385163314806108ed57506108ed8533610402565b6109545760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016104ab565b6108ca85858585856110ac565b60008281526020819052604090206001015461097d8133611267565b6106f583836112cb565b6001600160a01b03811633146109f75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016104ab565b610565828261134f565b60608151835114610a665760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016104ab565b600083516001600160401b03811115610a8f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ab8578160200160208202803683370190505b50905060005b8451811015610b5a57610b1f858281518110610aea57634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610b1257634e487b7160e01b600052603260045260246000fd5b6020026020010151610443565b828281518110610b3f57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610b5381612723565b9050610abe565b509392505050565b60058054610576906126bc565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60098054610576906126bc565b336001600160a01b0383161415610c105760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016104ab565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600082815260208190526040902060010154610c988133611267565b6106f5838361134f565b610cba60008051602061284f83398151915233610b6f565b610cd65760405162461bcd60e51b81526004016104ab906125ae565b600081815260066020908152604091829020805460ff8082161560ff199092168217909255925192161515825282917f215247e199f50badfaee72ad982223e8170565277e6d949e4472c65e89732859910160405180910390a250565b6001600160a01b038516331480610d4f5750610d4f8533610402565b610dad5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016104ab565b6108ca85858585856113b4565b60006001600160e01b03198216636cdb3d1360e11b1480610deb57506001600160e01b031982166303a24d0760e21b145b806104e757506104e7826114de565b606081610e1e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610e485780610e3281612723565b9150610e419050600a8361262f565b9150610e22565b6000816001600160401b03811115610e7057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610e9a576020820181803683370190505b5090505b8415610f1357610eaf600183612662565b9150610ebc600a8661273e565b610ec7906030612617565b60f81b818381518110610eea57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610f0c600a8661262f565b9450610e9e565b949350505050565b610f2784848484611513565b60008381526004602052604081208054849290610f45908490612617565b909155505050505050565b610f5c848484846115dc565b60005b83518110156108ca57828181518110610f8857634e487b7160e01b600052603260045260246000fd5b602002602001015160046000868481518110610fb457634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254610fd99190612617565b90915550610fe8905081612723565b9050610f5f565b600081815b85518110156110a157600086828151811061101f57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161106157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061108e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061109981612723565b915050610ff4565b509092149392505050565b81518351146110cd5760405162461bcd60e51b81526004016104ab90612525565b6001600160a01b0384166110f35760405162461bcd60e51b81526004016104ab90612496565b3360005b84518110156111f957600085828151811061112257634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061114e57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526001835260408082206001600160a01b038e16835290935291909120549091508181101561119f5760405162461bcd60e51b81526004016104ab906124db565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906111de908490612617565b92505081905550505050806111f290612723565b90506110f7565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611249929190612416565b60405180910390a461125f818787878787611740565b505050505050565b6112718282610b6f565b61056557611289816001600160a01b031660146118ab565b6112948360206118ab565b6040516020016112a59291906122eb565b60408051601f198184030181529082905262461bcd60e51b82526104ab9160040161243b565b6112d58282610b6f565b610565576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561130b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6113598282610b6f565b15610565576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0384166113da5760405162461bcd60e51b81526004016104ab90612496565b336113f38187876113ea88611a93565b6108ca88611a93565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156114365760405162461bcd60e51b81526004016104ab906124db565b60008581526001602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611475908490612617565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46114d5828888888888611aec565b50505050505050565b60006001600160e01b03198216637965db0b60e01b14806104e757506301ffc9a760e01b6001600160e01b03198316146104e7565b6001600160a01b0384166115395760405162461bcd60e51b81526004016104ab9061256d565b3361154a816000876113ea88611a93565b60008481526001602090815260408083206001600160a01b03891684529091528120805485929061157c908490612617565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46108ca81600087878787611aec565b6001600160a01b0384166116025760405162461bcd60e51b81526004016104ab9061256d565b81518351146116235760405162461bcd60e51b81526004016104ab90612525565b3360005b84518110156116dc5783818151811061165057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600087848151811061167c57634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116c49190612617565b909155508190506116d481612723565b915050611627565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161172d929190612416565b60405180910390a46108ca816000878787875b6001600160a01b0384163b1561125f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117849089908990889088908890600401612360565b602060405180830381600087803b15801561179e57600080fd5b505af19250505080156117ce575060408051601f3d908101601f191682019092526117cb91810190612162565b60015b61187b576117da612794565b806308c379a0141561181457506117ef6127ac565b806117fa5750611816565b8060405162461bcd60e51b81526004016104ab919061243b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016104ab565b6001600160e01b0319811663bc197c8160e01b146114d55760405162461bcd60e51b81526004016104ab9061244e565b606060006118ba836002612643565b6118c5906002612617565b6001600160401b038111156118ea57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611914576020820181803683370190505b509050600360fc1b8160008151811061193d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061197a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061199e846002612643565b6119a9906001612617565b90505b6001811115611a3d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106119eb57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611a0f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611a36816126a5565b90506119ac565b508315611a8c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104ab565b9392505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611adb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b1561125f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611b3090899089908890889088906004016123be565b602060405180830381600087803b158015611b4a57600080fd5b505af1925050508015611b7a575060408051601f3d908101601f19168201909252611b7791810190612162565b60015b611b86576117da612794565b6001600160e01b0319811663f23a6e6160e01b146114d55760405162461bcd60e51b81526004016104ab9061244e565b828054611bc2906126bc565b90600052602060002090601f016020900481019282611be45760008555611c2a565b82601f10611bfd57805160ff1916838001178555611c2a565b82800160010185558215611c2a579182015b82811115611c2a578251825591602001919060010190611c0f565b50611c36929150611c3a565b5090565b5b80821115611c365760008155600101611c3b565b60006001600160401b03831115611c6857611c6861277e565b604051611c7f601f8501601f1916602001826126f7565b809150838152848484011115611c9457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611cc357600080fd5b919050565b600082601f830112611cd8578081fd5b81356020611ce5826125f4565b604051611cf282826126f7565b8381528281019150858301600585901b87018401881015611d11578586fd5b855b85811015611d2f57813584529284019290840190600101611d13565b5090979650505050505050565b600082601f830112611d4c578081fd5b611a8c83833560208501611c4f565b60008060408385031215611d6d578182fd5b611d7683611cac565b9150611d8460208401611cac565b90509250929050565b600080600080600060a08688031215611da4578081fd5b611dad86611cac565b9450611dbb60208701611cac565b935060408601356001600160401b0380821115611dd6578283fd5b611de289838a01611cc8565b94506060880135915080821115611df7578283fd5b611e0389838a01611cc8565b93506080880135915080821115611e18578283fd5b50611e2588828901611d3c565b9150509295509295909350565b600080600080600060a08688031215611e49578081fd5b611e5286611cac565b9450611e6060208701611cac565b9350604086013592506060860135915060808601356001600160401b03811115611e88578182fd5b611e2588828901611d3c565b60008060008060808587031215611ea9578384fd5b611eb285611cac565b935060208501356001600160401b0380821115611ecd578485fd5b611ed988838901611cc8565b94506040870135915080821115611eee578384fd5b611efa88838901611cc8565b93506060870135915080821115611f0f578283fd5b50611f1c87828801611d3c565b91505092959194509250565b60008060408385031215611f3a578182fd5b611f4383611cac565b915060208301358015158114611f57578182fd5b809150509250929050565b60008060408385031215611f74578182fd5b611f7d83611cac565b946020939093013593505050565b600080600060608486031215611f9f578081fd5b611fa884611cac565b95602085013595506040909401359392505050565b60008060408385031215611fcf578182fd5b82356001600160401b0380821115611fe5578384fd5b818501915085601f830112611ff8578384fd5b81356020612005826125f4565b60405161201282826126f7565b8381528281019150858301600585901b870184018b1015612031578889fd5b8896505b8487101561205a5761204681611cac565b835260019690960195918301918301612035565b5096505086013592505080821115612070578283fd5b5061207d85828601611cc8565b9150509250929050565b60008060008060006080868803121561209e578283fd5b85356001600160401b03808211156120b4578485fd5b818801915088601f8301126120c7578485fd5b8135818111156120d5578586fd5b8960208260051b85010111156120e9578586fd5b60209283019a909950918801359760408101359750606001359550909350505050565b60006020828403121561211d578081fd5b5035919050565b60008060408385031215612136578182fd5b82359150611d8460208401611cac565b600060208284031215612157578081fd5b8135611a8c81612835565b600060208284031215612173578081fd5b8151611a8c81612835565b60006020828403121561218f578081fd5b81356001600160401b038111156121a4578182fd5b8201601f810184136121b4578182fd5b610f1384823560208401611c4f565b6000815180845260208085019450808401835b838110156121f2578151875295820195908201906001016121d6565b509495945050505050565b60008151808452612215816020860160208601612679565b601f01601f19169290920160200192915050565b6000815161223b818560208601612679565b9290920192915050565b600080845482600182811c91508083168061226157607f831692505b602080841082141561228157634e487b7160e01b87526022600452602487fd5b81801561229557600181146122a6576122d2565b60ff198616895284890196506122d2565b60008b815260209020885b868110156122ca5781548b8201529085019083016122b1565b505084890196505b5050505050506122e28185612229565b95945050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612323816017850160208801612679565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612354816028840160208801612679565b01602801949350505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061238c908301866121c3565b828103606084015261239e81866121c3565b905082810360808401526123b281856121fd565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906123f8908301846121fd565b979650505050505050565b602081526000611a8c60208301846121c3565b60408152600061242960408301856121c3565b82810360208401526122e281856121c3565b602081526000611a8c60208301846121fd565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526026908201527f455243313135353a206d7573742068617665206d696e74657220726f6c6520746040820152651bc81b5a5b9d60d21b606082015260800190565b60006001600160401b0382111561260d5761260d61277e565b5060051b60200190565b6000821982111561262a5761262a612752565b500190565b60008261263e5761263e612768565b500490565b600081600019048311821515161561265d5761265d612752565b500290565b60008282101561267457612674612752565b500390565b60005b8381101561269457818101518382015260200161267c565b8381111561073a5750506000910152565b6000816126b4576126b4612752565b506000190190565b600181811c908216806126d057607f821691505b602082108114156126f157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561271c5761271c61277e565b6040525050565b600060001982141561273757612737612752565b5060010190565b60008261274d5761274d612768565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156127a957600481823e5160e01c5b90565b600060443d10156127ba5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156127e957505050505090565b82850191508151818111156128015750505050505090565b843d870101602082850101111561281b5750505050505090565b61282a602082860101876126f7565b509095945050505050565b6001600160e01b03198116811461284b57600080fd5b5056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220d95162d663906b87756266e3b3a1f8ecf2f02b3edbc95bbd506aeb909b3f1f9c64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a5768616c65724e46547300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5768616c65724e465473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569637a6c68613234643575786e797763727a61736f7969686f70766c736a716578716f3235747a7277727a79746d6967726b726a692f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a85760003560e01c80634f558e79116100f9578063bd85b03911610097578063dab5f34011610071578063dab5f340146103b3578063dfcae622146103c6578063e985e9c5146103f4578063f242432a1461043057600080fd5b8063bd85b0391461036b578063d53913931461038b578063d547741f146103a057600080fd5b806395d89b41116100d357806395d89b4114610325578063a217fddf1461032d578063a22cb46514610335578063ae6dead71461034857600080fd5b80634f558e79146102e85780635b2bd79e1461030a57806391d148541461031257600080fd5b80631f7fdffa116101665780632eb2c2d6116101405780632eb2c2d61461028f5780632f2ff15d146102a257806336568abe146102b55780634e1273f4146102c857600080fd5b80631f7fdffa14610246578063222a490714610259578063248a9ca31461026c57600080fd5b8062fdd58e146101ad57806301ffc9a7146101d357806302fe5305146101f657806306fdde031461020b5780630e89341c14610220578063156e29f614610233575b600080fd5b6101c06101bb366004611f62565b610443565b6040519081526020015b60405180910390f35b6101e66101e1366004612146565b6104dc565b60405190151581526020016101ca565b61020961020436600461217e565b6104ed565b005b610213610569565b6040516101ca919061243b565b61021361022e36600461210c565b6105f7565b610209610241366004611f8b565b610688565b610209610254366004611e94565b6106fa565b610209610267366004612087565b610740565b6101c061027a36600461210c565b60009081526020819052604090206001015490565b61020961029d366004611d8d565b6108d1565b6102096102b0366004612124565b610961565b6102096102c3366004612124565b610987565b6102db6102d6366004611fbd565b610a01565b6040516101ca9190612403565b6101e66102f636600461210c565b600090815260046020526040902054151590565b610213610b62565b6101e6610320366004612124565b610b6f565b610213610b98565b6101c0600081565b610209610343366004611f28565b610ba5565b6101e661035636600461210c565b60066020526000908152604090205460ff1681565b6101c061037936600461210c565b60009081526004602052604090205490565b6101c060008051602061284f83398151915281565b6102096103ae366004612124565b610c7c565b6102096103c136600461210c565b610ca2565b6101e66103d4366004612124565b600760209081526000928352604080842090915290825290205460ff1681565b6101e6610402366004611d5b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b61020961043e366004611e32565b610d33565b60006001600160a01b0383166104b45760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006104e782610dba565b92915050565b6104f8600033610b6f565b6105525760405162461bcd60e51b815260206004820152602560248201527f455243313135353a206d75737420686176652041646d696e20726f6c6520746f604482015264081b5a5b9d60da1b60648201526084016104ab565b8051610565906005906020840190611bb6565b5050565b60088054610576906126bc565b80601f01602080910402602001604051908101604052809291908181526020018280546105a2906126bc565b80156105ef5780601f106105c4576101008083540402835291602001916105ef565b820191906000526020600020905b8154815290600101906020018083116105d257829003601f168201915b505050505081565b600081815260046020526040812054606091106106565760405162461bcd60e51b815260206004820152601a60248201527f455243313135353a204e4f4e4558495354454e545f544f4b454e00000000000060448201526064016104ab565b600561066183610dfa565b604051602001610672929190612245565b6040516020818303038152906040529050919050565b6106a060008051602061284f83398151915233610b6f565b6106bc5760405162461bcd60e51b81526004016104ab906125ae565b6106f583838360005b6040519080825280601f01601f1916602001820160405280156106ef576020820181803683370190505b50610f1b565b505050565b61071260008051602061284f83398151915233610b6f565b61072e5760405162461bcd60e51b81526004016104ab906125ae565b61073a84848484610f50565b50505050565b60008381526006602052604090205460ff1661078e5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420726f6f742160981b60448201526064016104ab565b600083815260076020908152604080832033845290915290205460ff16156107eb5760405162461bcd60e51b815260206004820152601060248201526f616c656172647920636c61696d65642160801b60448201526064016104ab565b6000838152600760209081526040808320338452825291829020805460ff191660011790558151868202818101830190935286815261087a92909188918891829190850190849080828437600092019190915250506040805160208101889052908101869052336060820152879250608001905060405160208183030381529060405280519060200120610fef565b6108bd5760405162461bcd60e51b815260206004820152601460248201527334b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016104ab565b6108ca33838360006106c5565b5050505050565b6001600160a01b0385163314806108ed57506108ed8533610402565b6109545760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016104ab565b6108ca85858585856110ac565b60008281526020819052604090206001015461097d8133611267565b6106f583836112cb565b6001600160a01b03811633146109f75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016104ab565b610565828261134f565b60608151835114610a665760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016104ab565b600083516001600160401b03811115610a8f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ab8578160200160208202803683370190505b50905060005b8451811015610b5a57610b1f858281518110610aea57634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610b1257634e487b7160e01b600052603260045260246000fd5b6020026020010151610443565b828281518110610b3f57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610b5381612723565b9050610abe565b509392505050565b60058054610576906126bc565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60098054610576906126bc565b336001600160a01b0383161415610c105760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016104ab565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600082815260208190526040902060010154610c988133611267565b6106f5838361134f565b610cba60008051602061284f83398151915233610b6f565b610cd65760405162461bcd60e51b81526004016104ab906125ae565b600081815260066020908152604091829020805460ff8082161560ff199092168217909255925192161515825282917f215247e199f50badfaee72ad982223e8170565277e6d949e4472c65e89732859910160405180910390a250565b6001600160a01b038516331480610d4f5750610d4f8533610402565b610dad5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016104ab565b6108ca85858585856113b4565b60006001600160e01b03198216636cdb3d1360e11b1480610deb57506001600160e01b031982166303a24d0760e21b145b806104e757506104e7826114de565b606081610e1e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610e485780610e3281612723565b9150610e419050600a8361262f565b9150610e22565b6000816001600160401b03811115610e7057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610e9a576020820181803683370190505b5090505b8415610f1357610eaf600183612662565b9150610ebc600a8661273e565b610ec7906030612617565b60f81b818381518110610eea57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610f0c600a8661262f565b9450610e9e565b949350505050565b610f2784848484611513565b60008381526004602052604081208054849290610f45908490612617565b909155505050505050565b610f5c848484846115dc565b60005b83518110156108ca57828181518110610f8857634e487b7160e01b600052603260045260246000fd5b602002602001015160046000868481518110610fb457634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254610fd99190612617565b90915550610fe8905081612723565b9050610f5f565b600081815b85518110156110a157600086828151811061101f57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161106157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061108e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061109981612723565b915050610ff4565b509092149392505050565b81518351146110cd5760405162461bcd60e51b81526004016104ab90612525565b6001600160a01b0384166110f35760405162461bcd60e51b81526004016104ab90612496565b3360005b84518110156111f957600085828151811061112257634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061114e57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526001835260408082206001600160a01b038e16835290935291909120549091508181101561119f5760405162461bcd60e51b81526004016104ab906124db565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906111de908490612617565b92505081905550505050806111f290612723565b90506110f7565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611249929190612416565b60405180910390a461125f818787878787611740565b505050505050565b6112718282610b6f565b61056557611289816001600160a01b031660146118ab565b6112948360206118ab565b6040516020016112a59291906122eb565b60408051601f198184030181529082905262461bcd60e51b82526104ab9160040161243b565b6112d58282610b6f565b610565576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561130b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6113598282610b6f565b15610565576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0384166113da5760405162461bcd60e51b81526004016104ab90612496565b336113f38187876113ea88611a93565b6108ca88611a93565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156114365760405162461bcd60e51b81526004016104ab906124db565b60008581526001602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611475908490612617565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46114d5828888888888611aec565b50505050505050565b60006001600160e01b03198216637965db0b60e01b14806104e757506301ffc9a760e01b6001600160e01b03198316146104e7565b6001600160a01b0384166115395760405162461bcd60e51b81526004016104ab9061256d565b3361154a816000876113ea88611a93565b60008481526001602090815260408083206001600160a01b03891684529091528120805485929061157c908490612617565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46108ca81600087878787611aec565b6001600160a01b0384166116025760405162461bcd60e51b81526004016104ab9061256d565b81518351146116235760405162461bcd60e51b81526004016104ab90612525565b3360005b84518110156116dc5783818151811061165057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600087848151811061167c57634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116c49190612617565b909155508190506116d481612723565b915050611627565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161172d929190612416565b60405180910390a46108ca816000878787875b6001600160a01b0384163b1561125f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117849089908990889088908890600401612360565b602060405180830381600087803b15801561179e57600080fd5b505af19250505080156117ce575060408051601f3d908101601f191682019092526117cb91810190612162565b60015b61187b576117da612794565b806308c379a0141561181457506117ef6127ac565b806117fa5750611816565b8060405162461bcd60e51b81526004016104ab919061243b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016104ab565b6001600160e01b0319811663bc197c8160e01b146114d55760405162461bcd60e51b81526004016104ab9061244e565b606060006118ba836002612643565b6118c5906002612617565b6001600160401b038111156118ea57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611914576020820181803683370190505b509050600360fc1b8160008151811061193d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061197a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061199e846002612643565b6119a9906001612617565b90505b6001811115611a3d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106119eb57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611a0f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611a36816126a5565b90506119ac565b508315611a8c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104ab565b9392505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611adb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b1561125f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611b3090899089908890889088906004016123be565b602060405180830381600087803b158015611b4a57600080fd5b505af1925050508015611b7a575060408051601f3d908101601f19168201909252611b7791810190612162565b60015b611b86576117da612794565b6001600160e01b0319811663f23a6e6160e01b146114d55760405162461bcd60e51b81526004016104ab9061244e565b828054611bc2906126bc565b90600052602060002090601f016020900481019282611be45760008555611c2a565b82601f10611bfd57805160ff1916838001178555611c2a565b82800160010185558215611c2a579182015b82811115611c2a578251825591602001919060010190611c0f565b50611c36929150611c3a565b5090565b5b80821115611c365760008155600101611c3b565b60006001600160401b03831115611c6857611c6861277e565b604051611c7f601f8501601f1916602001826126f7565b809150838152848484011115611c9457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611cc357600080fd5b919050565b600082601f830112611cd8578081fd5b81356020611ce5826125f4565b604051611cf282826126f7565b8381528281019150858301600585901b87018401881015611d11578586fd5b855b85811015611d2f57813584529284019290840190600101611d13565b5090979650505050505050565b600082601f830112611d4c578081fd5b611a8c83833560208501611c4f565b60008060408385031215611d6d578182fd5b611d7683611cac565b9150611d8460208401611cac565b90509250929050565b600080600080600060a08688031215611da4578081fd5b611dad86611cac565b9450611dbb60208701611cac565b935060408601356001600160401b0380821115611dd6578283fd5b611de289838a01611cc8565b94506060880135915080821115611df7578283fd5b611e0389838a01611cc8565b93506080880135915080821115611e18578283fd5b50611e2588828901611d3c565b9150509295509295909350565b600080600080600060a08688031215611e49578081fd5b611e5286611cac565b9450611e6060208701611cac565b9350604086013592506060860135915060808601356001600160401b03811115611e88578182fd5b611e2588828901611d3c565b60008060008060808587031215611ea9578384fd5b611eb285611cac565b935060208501356001600160401b0380821115611ecd578485fd5b611ed988838901611cc8565b94506040870135915080821115611eee578384fd5b611efa88838901611cc8565b93506060870135915080821115611f0f578283fd5b50611f1c87828801611d3c565b91505092959194509250565b60008060408385031215611f3a578182fd5b611f4383611cac565b915060208301358015158114611f57578182fd5b809150509250929050565b60008060408385031215611f74578182fd5b611f7d83611cac565b946020939093013593505050565b600080600060608486031215611f9f578081fd5b611fa884611cac565b95602085013595506040909401359392505050565b60008060408385031215611fcf578182fd5b82356001600160401b0380821115611fe5578384fd5b818501915085601f830112611ff8578384fd5b81356020612005826125f4565b60405161201282826126f7565b8381528281019150858301600585901b870184018b1015612031578889fd5b8896505b8487101561205a5761204681611cac565b835260019690960195918301918301612035565b5096505086013592505080821115612070578283fd5b5061207d85828601611cc8565b9150509250929050565b60008060008060006080868803121561209e578283fd5b85356001600160401b03808211156120b4578485fd5b818801915088601f8301126120c7578485fd5b8135818111156120d5578586fd5b8960208260051b85010111156120e9578586fd5b60209283019a909950918801359760408101359750606001359550909350505050565b60006020828403121561211d578081fd5b5035919050565b60008060408385031215612136578182fd5b82359150611d8460208401611cac565b600060208284031215612157578081fd5b8135611a8c81612835565b600060208284031215612173578081fd5b8151611a8c81612835565b60006020828403121561218f578081fd5b81356001600160401b038111156121a4578182fd5b8201601f810184136121b4578182fd5b610f1384823560208401611c4f565b6000815180845260208085019450808401835b838110156121f2578151875295820195908201906001016121d6565b509495945050505050565b60008151808452612215816020860160208601612679565b601f01601f19169290920160200192915050565b6000815161223b818560208601612679565b9290920192915050565b600080845482600182811c91508083168061226157607f831692505b602080841082141561228157634e487b7160e01b87526022600452602487fd5b81801561229557600181146122a6576122d2565b60ff198616895284890196506122d2565b60008b815260209020885b868110156122ca5781548b8201529085019083016122b1565b505084890196505b5050505050506122e28185612229565b95945050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612323816017850160208801612679565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612354816028840160208801612679565b01602801949350505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061238c908301866121c3565b828103606084015261239e81866121c3565b905082810360808401526123b281856121fd565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906123f8908301846121fd565b979650505050505050565b602081526000611a8c60208301846121c3565b60408152600061242960408301856121c3565b82810360208401526122e281856121c3565b602081526000611a8c60208301846121fd565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526026908201527f455243313135353a206d7573742068617665206d696e74657220726f6c6520746040820152651bc81b5a5b9d60d21b606082015260800190565b60006001600160401b0382111561260d5761260d61277e565b5060051b60200190565b6000821982111561262a5761262a612752565b500190565b60008261263e5761263e612768565b500490565b600081600019048311821515161561265d5761265d612752565b500290565b60008282101561267457612674612752565b500390565b60005b8381101561269457818101518382015260200161267c565b8381111561073a5750506000910152565b6000816126b4576126b4612752565b506000190190565b600181811c908216806126d057607f821691505b602082108114156126f157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561271c5761271c61277e565b6040525050565b600060001982141561273757612737612752565b5060010190565b60008261274d5761274d612768565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156127a957600481823e5160e01c5b90565b600060443d10156127ba5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156127e957505050505090565b82850191508151818111156128015750505050505090565b843d870101602082850101111561281b5750505050505090565b61282a602082860101876126f7565b509095945050505050565b6001600160e01b03198116811461284b57600080fd5b5056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220d95162d663906b87756266e3b3a1f8ecf2f02b3edbc95bbd506aeb909b3f1f9c64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a5768616c65724e46547300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5768616c65724e465473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569637a6c68613234643575786e797763727a61736f7969686f70766c736a716578716f3235747a7277727a79746d6967726b726a692f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): WhalerNFTs
Arg [1] : _symbol (string): WhalerNFTs
Arg [2] : _baseMetadataURI (string): ipfs://bafybeiczlha24d5uxnywcrzasoyihopvlsjqexqo25tzrwrzytmigrkrji/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 5768616c65724e46547300000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 5768616c65724e46547300000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f62616679626569637a6c68613234643575786e797763727a61
Arg [9] : 736f7969686f70766c736a716578716f3235747a7277727a79746d6967726b72
Arg [10] : 6a692f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49653:2985:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32259:231;;;;;;:::i;:::-;;:::i;:::-;;;14861:25:1;;;14849:2;14834:18;32259:231:0;;;;;;;;51898:210;;;;;;:::i;:::-;;:::i;:::-;;;14688:14:1;;14681:22;14663:41;;14651:2;14636:18;51898:210:0;14618:92:1;52116:223:0;;;;;;:::i;:::-;;:::i;:::-;;49929:18;;;:::i;:::-;;;;;;;:::i;52347:288::-;;;;;;:::i;:::-;;:::i;50401:282::-;;;;;;:::i;:::-;;:::i;51556:334::-;;;;;;:::i;:::-;;:::i;50691:591::-;;;;;;:::i;:::-;;:::i;11752:123::-;;;;;;:::i;:::-;11818:7;11845:12;;;;;;;;;;:22;;;;11752:123;34354:442;;;;;;:::i;:::-;;:::i;12137:147::-;;;;;;:::i;:::-;;:::i;13185:218::-;;;;;;:::i;:::-;;:::i;32656:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46414:122::-;;;;;;:::i;:::-;46471:4;46292:16;;;:12;:16;;;;;;-1:-1:-1;;;46414:122:0;49783:29;;;:::i;10637:139::-;;;;;;:::i;:::-;;:::i;49954:20::-;;;:::i;9728:49::-;;9773:4;9728:49;;33253:311;;;;;;:::i;:::-;;:::i;49819:37::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;46203:113;;;;;;:::i;:::-;46265:7;46292:16;;;:12;:16;;;;;;;46203:113;49714:62;;-1:-1:-1;;;;;;;;;;;49714:62:0;;12529:149;;;;;;:::i;:::-;;:::i;51290:258::-;;;;;;:::i;:::-;;:::i;49863:59::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;33636:168;;;;;;:::i;:::-;-1:-1:-1;;;;;33759:27:0;;;33735:4;33759:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;33636:168;33876:401;;;;;;:::i;:::-;;:::i;32259:231::-;32345:7;-1:-1:-1;;;;;32373:21:0;;32365:77;;;;-1:-1:-1;;;32365:77:0;;16859:2:1;32365:77:0;;;16841:21:1;16898:2;16878:18;;;16871:30;16937:34;16917:18;;;16910:62;-1:-1:-1;;;16988:18:1;;;16981:41;17039:19;;32365:77:0;;;;;;;;;-1:-1:-1;32460:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;32460:22:0;;;;;;;;;;;;32259:231::o;51898:210::-;52035:4;52064:36;52088:11;52064:23;:36::i;:::-;52057:43;51898:210;-1:-1:-1;;51898:210:0:o;52116:223::-;52192:41;9773:4;3791:10;10637:139;:::i;52192:41::-;52170:128;;;;-1:-1:-1;;;52170:128:0;;17620:2:1;52170:128:0;;;17602:21:1;17659:2;17639:18;;;17632:30;17698:34;17678:18;;;17671:62;-1:-1:-1;;;17749:18:1;;;17742:35;17794:19;;52170:128:0;17592:227:1;52170:128:0;52309:22;;;;:15;;:22;;;;;:::i;:::-;;52116:223;:::o;49929:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52347:288::-;52464:1;46292:16;;;:12;:16;;;;;;52407:13;;-1:-1:-1;52433:63:0;;;;-1:-1:-1;;;52433:63:0;;22052:2:1;52433:63:0;;;22034:21:1;22091:2;22071:18;;;22064:30;22130:28;22110:18;;;22103:56;22176:18;;52433:63:0;22024:176:1;52433:63:0;52569:15;52586:25;52603:7;52586:16;:25::i;:::-;52552:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52507:120;;52347:288;;;:::o;50401:282::-;50529:34;-1:-1:-1;;;;;;;;;;;3791:10:0;10637:139;:::i;50529:34::-;50507:122;;;;-1:-1:-1;;;50507:122:0;;;;;;;:::i;:::-;50640:35;50646:2;50650;50654:6;50672:1;50662:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50662:12:0;;50640:5;:35::i;:::-;50401:282;;;:::o;51556:334::-;51737:34;-1:-1:-1;;;;;;;;;;;3791:10:0;10637:139;:::i;51737:34::-;51715:122;;;;-1:-1:-1;;;51715:122:0;;;;;;;:::i;:::-;51848:34;51859:2;51863:3;51868:7;51877:4;51848:10;:34::i;:::-;51556:334;;;;:::o;50691:591::-;50847:11;;;;:5;:11;;;;;;;;50839:37;;;;-1:-1:-1;;;50839:37:0;;19672:2:1;50839:37:0;;;19654:21:1;19711:2;19691:18;;;19684:30;-1:-1:-1;;;19730:18:1;;;19723:43;19783:18;;50839:37:0;19644:163:1;50839:37:0;50896:13;;;;:7;:13;;;;;;;;50910:10;50896:25;;;;;;;;;;50895:26;50887:55;;;;-1:-1:-1;;;50887:55:0;;16514:2:1;50887:55:0;;;16496:21:1;16553:2;16533:18;;;16526:30;-1:-1:-1;;;16572:18:1;;;16565:46;16628:18;;50887:55:0;16486:166:1;50887:55:0;50953:13;;;;:7;:13;;;;;;;;50967:10;50953:25;;;;;;;;:32;;-1:-1:-1;;50953:32:0;50981:4;50953:32;;;51018:149;;;;;;;;;;;;;;;;;;;;51055:5;;;;;;51018:149;;;;51055:5;;51018:149;51055:5;51018:149;;;;;;;;;-1:-1:-1;;51112:39:0;;;;;;23258:25:1;;;23299:18;;;23292:34;;;51140:10:0;23342:18:1;;;23335:60;51079:4:0;;-1:-1:-1;23231:18:1;;;-1:-1:-1;51112:39:0;;;;;;;;;;;;51102:50;;;;;;51018:18;:149::i;:::-;50996:219;;;;-1:-1:-1;;;50996:219:0;;17271:2:1;50996:219:0;;;17253:21:1;17310:2;17290:18;;;17283:30;-1:-1:-1;;;17329:18:1;;;17322:50;17389:18;;50996:219:0;17243:170:1;50996:219:0;51226:48;51232:10;51244:7;51253:6;51271:1;51261:12;;51226:48;50691:591;;;;;:::o;34354:442::-;-1:-1:-1;;;;;34587:20:0;;3791:10;34587:20;;:60;;-1:-1:-1;34611:36:0;34628:4;3791:10;33636:168;:::i;34611:36::-;34565:160;;;;-1:-1:-1;;;34565:160:0;;18842:2:1;34565:160:0;;;18824:21:1;18881:2;18861:18;;;18854:30;18920:34;18900:18;;;18893:62;-1:-1:-1;;;18971:18:1;;;18964:48;19029:19;;34565:160:0;18814:240:1;34565:160:0;34736:52;34759:4;34765:2;34769:3;34774:7;34783:4;34736:22;:52::i;12137:147::-;11818:7;11845:12;;;;;;;;;;:22;;;10219:30;10230:4;3791:10;10219;:30::i;:::-;12251:25:::1;12262:4;12268:7;12251:10;:25::i;13185:218::-:0;-1:-1:-1;;;;;13281:23:0;;3791:10;13281:23;13273:83;;;;-1:-1:-1;;;13273:83:0;;22407:2:1;13273:83:0;;;22389:21:1;22446:2;22426:18;;;22419:30;22485:34;22465:18;;;22458:62;-1:-1:-1;;;22536:18:1;;;22529:45;22591:19;;13273:83:0;22379:237:1;13273:83:0;13369:26;13381:4;13387:7;13369:11;:26::i;32656:524::-;32812:16;32873:3;:10;32854:8;:15;:29;32846:83;;;;-1:-1:-1;;;32846:83:0;;20424:2:1;32846:83:0;;;20406:21:1;20463:2;20443:18;;;20436:30;20502:34;20482:18;;;20475:62;-1:-1:-1;;;20553:18:1;;;20546:39;20602:19;;32846:83:0;20396:231:1;32846:83:0;32942:30;32989:8;:15;-1:-1:-1;;;;;32975:30:0;;;;;-1:-1:-1;;;32975:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32975:30:0;;32942:63;;33023:9;33018:122;33042:8;:15;33038:1;:19;33018:122;;;33098:30;33108:8;33117:1;33108:11;;;;;;-1:-1:-1;;;33108:11:0;;;;;;;;;;;;;;;33121:3;33125:1;33121:6;;;;;;-1:-1:-1;;;33121:6:0;;;;;;;;;;;;;;;33098:9;:30::i;:::-;33079:13;33093:1;33079:16;;;;;;-1:-1:-1;;;33079:16:0;;;;;;;;;;;;;;;;;;:49;33059:3;;;:::i;:::-;;;33018:122;;;-1:-1:-1;33159:13:0;32656:524;-1:-1:-1;;;32656:524:0:o;49783:29::-;;;;;;;:::i;10637:139::-;10715:4;10739:12;;;;;;;;;;;-1:-1:-1;;;;;10739:29:0;;;;;;;;;;;;;;;10637:139::o;49954:20::-;;;;;;;:::i;33253:311::-;3791:10;-1:-1:-1;;;;;33356:24:0;;;;33348:78;;;;-1:-1:-1;;;33348:78:0;;20014:2:1;33348:78:0;;;19996:21:1;20053:2;20033:18;;;20026:30;20092:34;20072:18;;;20065:62;-1:-1:-1;;;20143:18:1;;;20136:39;20192:19;;33348:78:0;19986:231:1;33348:78:0;3791:10;33439:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33439:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33439:53:0;;;;;;;;;;33508:48;;14663:41:1;;;33439:42:0;;3791:10;33508:48;;14636:18:1;33508:48:0;;;;;;;33253:311;;:::o;12529:149::-;11818:7;11845:12;;;;;;;;;;:22;;;10219:30;10230:4;3791:10;10219;:30::i;:::-;12644:26:::1;12656:4;12662:7;12644:11;:26::i;51290:258::-:0;51361:34;-1:-1:-1;;;;;;;;;;;3791:10:0;10637:139;:::i;51361:34::-;51339:122;;;;-1:-1:-1;;;51339:122:0;;;;;;;:::i;:::-;51487:11;;;;:5;:11;;;;;;;;;;;;;;;51486:12;-1:-1:-1;;51472:26:0;;;;;;;;51514;;51528:11;;14688:14:1;14681:22;14663:41;;51487:11:0;;51514:26;;14636:18:1;51514:26:0;;;;;;;51290:258;:::o;33876:401::-;-1:-1:-1;;;;;34084:20:0;;3791:10;34084:20;;:60;;-1:-1:-1;34108:36:0;34125:4;3791:10;33636:168;:::i;34108:36::-;34062:151;;;;-1:-1:-1;;;34062:151:0;;18026:2:1;34062:151:0;;;18008:21:1;18065:2;18045:18;;;18038:30;18104:34;18084:18;;;18077:62;-1:-1:-1;;;18155:18:1;;;18148:39;18204:19;;34062:151:0;17998:231:1;34062:151:0;34224:45;34242:4;34248:2;34252;34256:6;34264:4;34224:17;:45::i;31282:310::-;31384:4;-1:-1:-1;;;;;;31421:41:0;;-1:-1:-1;;;31421:41:0;;:110;;-1:-1:-1;;;;;;;31479:52:0;;-1:-1:-1;;;31479:52:0;31421:110;:163;;;;31548:36;31572:11;31548:23;:36::i;4242:723::-;4298:13;4519:10;4515:53;;-1:-1:-1;;4546:10:0;;;;;;;;;;;;-1:-1:-1;;;4546:10:0;;;;;4242:723::o;4515:53::-;4593:5;4578:12;4634:78;4641:9;;4634:78;;4667:8;;;;:::i;:::-;;-1:-1:-1;4690:10:0;;-1:-1:-1;4698:2:0;4690:10;;:::i;:::-;;;4634:78;;;4722:19;4754:6;-1:-1:-1;;;;;4744:17:0;;;;;-1:-1:-1;;;4744:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4744:17:0;;4722:39;;4772:154;4779:10;;4772:154;;4806:11;4816:1;4806:11;;:::i;:::-;;-1:-1:-1;4875:10:0;4883:2;4875:5;:10;:::i;:::-;4862:24;;:2;:24;:::i;:::-;4849:39;;4832:6;4839;4832:14;;;;;;-1:-1:-1;;;4832:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;4832:56:0;;;;;;;;-1:-1:-1;4903:11:0;4912:2;4903:11;;:::i;:::-;;;4772:154;;;4950:6;4242:723;-1:-1:-1;;;;4242:723:0:o;46596:242::-;46755:38;46767:7;46776:2;46780:6;46788:4;46755:11;:38::i;:::-;46804:16;;;;:12;:16;;;;;:26;;46824:6;;46804:16;:26;;46824:6;;46804:26;:::i;:::-;;;;-1:-1:-1;;;;;;46596:242:0:o;46903:339::-;47082:40;47099:2;47103:3;47108:7;47117:4;47082:16;:40::i;:::-;47138:9;47133:102;47157:3;:10;47153:1;:14;47133:102;;;47213:7;47221:1;47213:10;;;;;;-1:-1:-1;;;47213:10:0;;;;;;;;;;;;;;;47189:12;:20;47202:3;47206:1;47202:6;;;;;;-1:-1:-1;;;47202:6:0;;;;;;;;;;;;;;;47189:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;47169:3:0;;-1:-1:-1;47169:3:0;;:::i;:::-;;;47133:102;;48740:830;48865:4;48905;48865;48922:525;48946:5;:12;48942:1;:16;48922:525;;;48980:20;49003:5;49009:1;49003:8;;;;;;-1:-1:-1;;;49003:8:0;;;;;;;;;;;;;;;48980:31;;49048:12;49032;:28;49028:408;;49185:44;;;;;;10322:19:1;;;10357:12;;;10350:28;;;10394:12;;49185:44:0;;;;;;;;;;;;49175:55;;;;;;49160:70;;49028:408;;;49375:44;;;;;;10322:19:1;;;10357:12;;;10350:28;;;10394:12;;49375:44:0;;;;;;;;;;;;49365:55;;;;;;49350:70;;49028:408;-1:-1:-1;48960:3:0;;;;:::i;:::-;;;;48922:525;;;-1:-1:-1;49542:20:0;;;;48740:830;-1:-1:-1;;;48740:830:0:o;36438:1074::-;36665:7;:14;36651:3;:10;:28;36643:81;;;;-1:-1:-1;;;36643:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36743:16:0;;36735:66;;;;-1:-1:-1;;;36735:66:0;;;;;;;:::i;:::-;3791:10;36814:16;36931:421;36955:3;:10;36951:1;:14;36931:421;;;36987:10;37000:3;37004:1;37000:6;;;;;;-1:-1:-1;;;37000:6:0;;;;;;;;;;;;;;;36987:19;;37021:14;37038:7;37046:1;37038:10;;;;;;-1:-1:-1;;;37038:10:0;;;;;;;;;;;;;;;;;;;;37065:19;37087:13;;;:9;:13;;;;;;-1:-1:-1;;;;;37087:19:0;;;;;;;;;;;;37038:10;;-1:-1:-1;37129:21:0;;;;37121:76;;;;-1:-1:-1;;;37121:76:0;;;;;;;:::i;:::-;37241:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;37241:19:0;;;;;;;;;;37263:20;;;37241:42;;37313:17;;;;;;;:27;;37263:20;;37241:13;37313:27;;37263:20;;37313:27;:::i;:::-;;;;;;;;36931:421;;;36967:3;;;;:::i;:::-;;;36931:421;;;;37399:2;-1:-1:-1;;;;;37369:47:0;37393:4;-1:-1:-1;;;;;37369:47:0;37383:8;-1:-1:-1;;;;;37369:47:0;;37403:3;37408:7;37369:47;;;;;;;:::i;:::-;;;;;;;;37429:75;37465:8;37475:4;37481:2;37485:3;37490:7;37499:4;37429:35;:75::i;:::-;36438:1074;;;;;;:::o;11066:497::-;11147:22;11155:4;11161:7;11147;:22::i;:::-;11142:414;;11335:41;11363:7;-1:-1:-1;;;;;11335:41:0;11373:2;11335:19;:41::i;:::-;11449:38;11477:4;11484:2;11449:19;:38::i;:::-;11240:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11240:270:0;;;;;;;;;;-1:-1:-1;;;11186:358:0;;;;;;;:::i;14489:229::-;14564:22;14572:4;14578:7;14564;:22::i;:::-;14559:152;;14603:6;:12;;;;;;;;;;;-1:-1:-1;;;;;14603:29:0;;;;;;;;;:36;;-1:-1:-1;;14603:36:0;14635:4;14603:36;;;14686:12;3791:10;;3711:98;14686:12;-1:-1:-1;;;;;14659:40:0;14677:7;-1:-1:-1;;;;;14659:40:0;14671:4;14659:40;;;;;;;;;;14489:229;;:::o;14726:230::-;14801:22;14809:4;14815:7;14801;:22::i;:::-;14797:152;;;14872:5;14840:12;;;;;;;;;;;-1:-1:-1;;;;;14840:29:0;;;;;;;;;;:37;;-1:-1:-1;;14840:37:0;;;14897:40;3791:10;;14840:12;;14897:40;;14872:5;14897:40;14726:230;;:::o;35260:820::-;-1:-1:-1;;;;;35448:16:0;;35440:66;;;;-1:-1:-1;;;35440:66:0;;;;;;;:::i;:::-;3791:10;35563:96;3791:10;35594:4;35600:2;35604:21;35622:2;35604:17;:21::i;:::-;35627:25;35645:6;35627:17;:25::i;35563:96::-;35672:19;35694:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;35694:19:0;;;;;;;;;;35732:21;;;;35724:76;;;;-1:-1:-1;;;35724:76:0;;;;;;;:::i;:::-;35836:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;35836:19:0;;;;;;;;;;35858:20;;;35836:42;;35900:17;;;;;;;:27;;35858:20;;35836:13;35900:27;;35858:20;;35900:27;:::i;:::-;;;;-1:-1:-1;;35945:46:0;;;22977:25:1;;;23033:2;23018:18;;23011:34;;;-1:-1:-1;;;;;35945:46:0;;;;;;;;;;;;;;22950:18:1;35945:46:0;;;;;;;36004:68;36035:8;36045:4;36051:2;36055;36059:6;36067:4;36004:30;:68::i;:::-;35260:820;;;;;;;:::o;10341:204::-;10426:4;-1:-1:-1;;;;;;10450:47:0;;-1:-1:-1;;;10450:47:0;;:87;;-1:-1:-1;;;;;;;;;;7767:40:0;;;10501:36;7658:157;38845:599;-1:-1:-1;;;;;39003:21:0;;38995:67;;;;-1:-1:-1;;;38995:67:0;;;;;;;:::i;:::-;3791:10;39119:107;3791:10;39075:16;39162:7;39171:21;39189:2;39171:17;:21::i;39119:107::-;39239:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;39239:22:0;;;;;;;;;:32;;39265:6;;39239:13;:32;;39265:6;;39239:32;:::i;:::-;;;;-1:-1:-1;;39287:57:0;;;22977:25:1;;;23033:2;23018:18;;23011:34;;;-1:-1:-1;;;;;39287:57:0;;;;39320:1;;39287:57;;;;;;22950:18:1;39287:57:0;;;;;;;39357:79;39388:8;39406:1;39410:7;39419:2;39423:6;39431:4;39357:30;:79::i;39800:735::-;-1:-1:-1;;;;;39978:16:0;;39970:62;;;;-1:-1:-1;;;39970:62:0;;;;;;;:::i;:::-;40065:7;:14;40051:3;:10;:28;40043:81;;;;-1:-1:-1;;;40043:81:0;;;;;;;:::i;:::-;3791:10;40137:16;40260:103;40284:3;:10;40280:1;:14;40260:103;;;40341:7;40349:1;40341:10;;;;;;-1:-1:-1;;;40341:10:0;;;;;;;;;;;;;;;40316:9;:17;40326:3;40330:1;40326:6;;;;;;-1:-1:-1;;;40326:6:0;;;;;;;;;;;;;;;40316:17;;;;;;;;;;;:21;40334:2;-1:-1:-1;;;;;40316:21:0;-1:-1:-1;;;;;40316:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;40296:3:0;;-1:-1:-1;40296:3:0;;;:::i;:::-;;;;40260:103;;;;40416:2;-1:-1:-1;;;;;40380:53:0;40412:1;-1:-1:-1;;;;;40380:53:0;40394:8;-1:-1:-1;;;;;40380:53:0;;40420:3;40425:7;40380:53;;;;;;;:::i;:::-;;;;;;;;40446:81;40482:8;40500:1;40504:2;40508:3;40513:7;40522:4;44527:813;-1:-1:-1;;;;;44767:13:0;;23255:20;23303:8;44763:570;;44803:79;;-1:-1:-1;;;44803:79:0;;-1:-1:-1;;;;;44803:43:0;;;;;:79;;44847:8;;44857:4;;44863:3;;44868:7;;44877:4;;44803:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44803:79:0;;;;;;;;-1:-1:-1;;44803:79:0;;;;;;;;;;;;:::i;:::-;;;44799:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;45195:6;45188:14;;-1:-1:-1;;;45188:14:0;;;;;;;;:::i;44799:523::-;;;45244:62;;-1:-1:-1;;;45244:62:0;;15323:2:1;45244:62:0;;;15305:21:1;15362:2;15342:18;;;15335:30;15401:34;15381:18;;;15374:62;-1:-1:-1;;;15452:18:1;;;15445:50;15512:19;;45244:62:0;15295:242:1;44799:523:0;-1:-1:-1;;;;;;44964:60:0;;-1:-1:-1;;;44964:60:0;44960:159;;45049:50;;-1:-1:-1;;;45049:50:0;;;;;;;:::i;5543:451::-;5618:13;5644:19;5676:10;5680:6;5676:1;:10;:::i;:::-;:14;;5689:1;5676:14;:::i;:::-;-1:-1:-1;;;;;5666:25:0;;;;;-1:-1:-1;;;5666:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5666:25:0;;5644:47;;-1:-1:-1;;;5702:6:0;5709:1;5702:9;;;;;;-1:-1:-1;;;5702:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;5702:15:0;;;;;;;;;-1:-1:-1;;;5728:6:0;5735:1;5728:9;;;;;;-1:-1:-1;;;5728:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;5728:15:0;;;;;;;;-1:-1:-1;5759:9:0;5771:10;5775:6;5771:1;:10;:::i;:::-;:14;;5784:1;5771:14;:::i;:::-;5759:26;;5754:135;5791:1;5787;:5;5754:135;;;-1:-1:-1;;;5839:5:0;5847:3;5839:11;5826:25;;;;;-1:-1:-1;;;5826:25:0;;;;;;;;;;;;5814:6;5821:1;5814:9;;;;;;-1:-1:-1;;;5814:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;5814:37:0;;;;;;;;-1:-1:-1;5876:1:0;5866:11;;;;;5794:3;;;:::i;:::-;;;5754:135;;;-1:-1:-1;5907:10:0;;5899:55;;;;-1:-1:-1;;;5899:55:0;;15744:2:1;5899:55:0;;;15726:21:1;;;15763:18;;;15756:30;15822:34;15802:18;;;15795:62;15874:18;;5899:55:0;15716:182:1;5899:55:0;5979:6;5543:451;-1:-1:-1;;;5543:451:0:o;45348:198::-;45468:16;;;45482:1;45468:16;;;;;;;;;45414;;45443:22;;45468:16;;;;;;;;;;;;-1:-1:-1;45468:16:0;45443:41;;45506:7;45495:5;45501:1;45495:8;;;;;;-1:-1:-1;;;45495:8:0;;;;;;;;;;;;;;;;;;:18;45533:5;45348:198;-1:-1:-1;;45348:198:0:o;43775:744::-;-1:-1:-1;;;;;43990:13:0;;23255:20;23303:8;43986:526;;44026:72;;-1:-1:-1;;;44026:72:0;;-1:-1:-1;;;;;44026:38:0;;;;;:72;;44065:8;;44075:4;;44081:2;;44085:6;;44093:4;;44026:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44026:72:0;;;;;;;;-1:-1:-1;;44026:72:0;;;;;;;;;;;;:::i;:::-;;;44022:479;;;;:::i;:::-;-1:-1:-1;;;;;;44148:55:0;;-1:-1:-1;;;44148:55:0;44144:154;;44228:50;;-1:-1:-1;;;44228:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:2;;;369:1;366;359:12;328:2;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;88:394;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:2;;650:1;647;640:12;584:2;536:124;;;:::o;665:755::-;719:5;772:3;765:4;757:6;753:17;749:27;739:2;;794:5;787;780:20;739:2;834:6;821:20;860:4;883:43;923:2;883:43;:::i;:::-;955:2;949:9;967:31;995:2;987:6;967:31;:::i;:::-;1033:18;;;1067:15;;;;-1:-1:-1;1102:15:1;;;1152:1;1148:10;;;1136:23;;1132:32;;1129:41;-1:-1:-1;1126:2:1;;;1187:5;1180;1173:20;1126:2;1213:5;1227:163;1241:2;1238:1;1235:9;1227:163;;;1298:17;;1286:30;;1336:12;;;;1368;;;;1259:1;1252:9;1227:163;;;-1:-1:-1;1408:6:1;;729:691;-1:-1:-1;;;;;;;729:691:1:o;1425:228::-;1467:5;1520:3;1513:4;1505:6;1501:17;1497:27;1487:2;;1542:5;1535;1528:20;1487:2;1568:79;1643:3;1634:6;1621:20;1614:4;1606:6;1602:17;1568:79;:::i;1658:270::-;1726:6;1734;1787:2;1775:9;1766:7;1762:23;1758:32;1755:2;;;1808:6;1800;1793:22;1755:2;1836:29;1855:9;1836:29;:::i;:::-;1826:39;;1884:38;1918:2;1907:9;1903:18;1884:38;:::i;:::-;1874:48;;1745:183;;;;;:::o;1933:983::-;2087:6;2095;2103;2111;2119;2172:3;2160:9;2151:7;2147:23;2143:33;2140:2;;;2194:6;2186;2179:22;2140:2;2222:29;2241:9;2222:29;:::i;:::-;2212:39;;2270:38;2304:2;2293:9;2289:18;2270:38;:::i;:::-;2260:48;;2359:2;2348:9;2344:18;2331:32;-1:-1:-1;;;;;2423:2:1;2415:6;2412:14;2409:2;;;2444:6;2436;2429:22;2409:2;2472:61;2525:7;2516:6;2505:9;2501:22;2472:61;:::i;:::-;2462:71;;2586:2;2575:9;2571:18;2558:32;2542:48;;2615:2;2605:8;2602:16;2599:2;;;2636:6;2628;2621:22;2599:2;2664:63;2719:7;2708:8;2697:9;2693:24;2664:63;:::i;:::-;2654:73;;2780:3;2769:9;2765:19;2752:33;2736:49;;2810:2;2800:8;2797:16;2794:2;;;2831:6;2823;2816:22;2794:2;;2859:51;2902:7;2891:8;2880:9;2876:24;2859:51;:::i;:::-;2849:61;;;2130:786;;;;;;;;:::o;2921:626::-;3025:6;3033;3041;3049;3057;3110:3;3098:9;3089:7;3085:23;3081:33;3078:2;;;3132:6;3124;3117:22;3078:2;3160:29;3179:9;3160:29;:::i;:::-;3150:39;;3208:38;3242:2;3231:9;3227:18;3208:38;:::i;:::-;3198:48;;3293:2;3282:9;3278:18;3265:32;3255:42;;3344:2;3333:9;3329:18;3316:32;3306:42;;3399:3;3388:9;3384:19;3371:33;-1:-1:-1;;;;;3419:6:1;3416:30;3413:2;;;3464:6;3456;3449:22;3413:2;3492:49;3533:7;3524:6;3513:9;3509:22;3492:49;:::i;3552:908::-;3697:6;3705;3713;3721;3774:3;3762:9;3753:7;3749:23;3745:33;3742:2;;;3796:6;3788;3781:22;3742:2;3824:29;3843:9;3824:29;:::i;:::-;3814:39;;3904:2;3893:9;3889:18;3876:32;-1:-1:-1;;;;;3968:2:1;3960:6;3957:14;3954:2;;;3989:6;3981;3974:22;3954:2;4017:61;4070:7;4061:6;4050:9;4046:22;4017:61;:::i;:::-;4007:71;;4131:2;4120:9;4116:18;4103:32;4087:48;;4160:2;4150:8;4147:16;4144:2;;;4181:6;4173;4166:22;4144:2;4209:63;4264:7;4253:8;4242:9;4238:24;4209:63;:::i;:::-;4199:73;;4325:2;4314:9;4310:18;4297:32;4281:48;;4354:2;4344:8;4341:16;4338:2;;;4375:6;4367;4360:22;4338:2;;4403:51;4446:7;4435:8;4424:9;4420:24;4403:51;:::i;:::-;4393:61;;;3732:728;;;;;;;:::o;4465:367::-;4530:6;4538;4591:2;4579:9;4570:7;4566:23;4562:32;4559:2;;;4612:6;4604;4597:22;4559:2;4640:29;4659:9;4640:29;:::i;:::-;4630:39;;4719:2;4708:9;4704:18;4691:32;4766:5;4759:13;4752:21;4745:5;4742:32;4732:2;;4793:6;4785;4778:22;4732:2;4821:5;4811:15;;;4549:283;;;;;:::o;4837:264::-;4905:6;4913;4966:2;4954:9;4945:7;4941:23;4937:32;4934:2;;;4987:6;4979;4972:22;4934:2;5015:29;5034:9;5015:29;:::i;:::-;5005:39;5091:2;5076:18;;;;5063:32;;-1:-1:-1;;;4924:177:1:o;5106:332::-;5183:6;5191;5199;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5273:6;5265;5258:22;5220:2;5301:29;5320:9;5301:29;:::i;:::-;5291:39;5377:2;5362:18;;5349:32;;-1:-1:-1;5428:2:1;5413:18;;;5400:32;;5210:228;-1:-1:-1;;;5210:228:1:o;5443:1274::-;5561:6;5569;5622:2;5610:9;5601:7;5597:23;5593:32;5590:2;;;5643:6;5635;5628:22;5590:2;5688:9;5675:23;-1:-1:-1;;;;;5758:2:1;5750:6;5747:14;5744:2;;;5779:6;5771;5764:22;5744:2;5822:6;5811:9;5807:22;5797:32;;5867:7;5860:4;5856:2;5852:13;5848:27;5838:2;;5894:6;5886;5879:22;5838:2;5935;5922:16;5957:4;5980:43;6020:2;5980:43;:::i;:::-;6052:2;6046:9;6064:31;6092:2;6084:6;6064:31;:::i;:::-;6130:18;;;6164:15;;;;-1:-1:-1;6199:11:1;;;6241:1;6237:10;;;6229:19;;6225:28;;6222:41;-1:-1:-1;6219:2:1;;;6281:6;6273;6266:22;6219:2;6308:6;6299:15;;6323:169;6337:2;6334:1;6331:9;6323:169;;;6394:23;6413:3;6394:23;:::i;:::-;6382:36;;6355:1;6348:9;;;;;6438:12;;;;6470;;6323:169;;;-1:-1:-1;6511:6:1;-1:-1:-1;;6555:18:1;;6542:32;;-1:-1:-1;;6586:16:1;;;6583:2;;;6620:6;6612;6605:22;6583:2;;6648:63;6703:7;6692:8;6681:9;6677:24;6648:63;:::i;:::-;6638:73;;;5580:1137;;;;;:::o;6722:876::-;6835:6;6843;6851;6859;6867;6920:3;6908:9;6899:7;6895:23;6891:33;6888:2;;;6942:6;6934;6927:22;6888:2;6987:9;6974:23;-1:-1:-1;;;;;7057:2:1;7049:6;7046:14;7043:2;;;7078:6;7070;7063:22;7043:2;7121:6;7110:9;7106:22;7096:32;;7166:7;7159:4;7155:2;7151:13;7147:27;7137:2;;7193:6;7185;7178:22;7137:2;7238;7225:16;7264:2;7256:6;7253:14;7250:2;;;7285:6;7277;7270:22;7250:2;7345:7;7338:4;7328:6;7325:1;7321:14;7317:2;7313:23;7309:34;7306:47;7303:2;;;7371:6;7363;7356:22;7303:2;7407:4;7399:13;;;;7431:6;;-1:-1:-1;7469:20:1;;;7456:34;;7537:2;7522:18;;7509:32;;-1:-1:-1;7588:2:1;7573:18;7560:32;;-1:-1:-1;6878:720:1;;-1:-1:-1;;;;6878:720:1:o;7603:190::-;7662:6;7715:2;7703:9;7694:7;7690:23;7686:32;7683:2;;;7736:6;7728;7721:22;7683:2;-1:-1:-1;7764:23:1;;7673:120;-1:-1:-1;7673:120:1:o;7798:264::-;7866:6;7874;7927:2;7915:9;7906:7;7902:23;7898:32;7895:2;;;7948:6;7940;7933:22;7895:2;7989:9;7976:23;7966:33;;8018:38;8052:2;8041:9;8037:18;8018:38;:::i;8067:255::-;8125:6;8178:2;8166:9;8157:7;8153:23;8149:32;8146:2;;;8199:6;8191;8184:22;8146:2;8243:9;8230:23;8262:30;8286:5;8262:30;:::i;8327:259::-;8396:6;8449:2;8437:9;8428:7;8424:23;8420:32;8417:2;;;8470:6;8462;8455:22;8417:2;8507:9;8501:16;8526:30;8550:5;8526:30;:::i;8591:480::-;8660:6;8713:2;8701:9;8692:7;8688:23;8684:32;8681:2;;;8734:6;8726;8719:22;8681:2;8779:9;8766:23;-1:-1:-1;;;;;8804:6:1;8801:30;8798:2;;;8849:6;8841;8834:22;8798:2;8877:22;;8930:4;8922:13;;8918:27;-1:-1:-1;8908:2:1;;8964:6;8956;8949:22;8908:2;8992:73;9057:7;9052:2;9039:16;9034:2;9030;9026:11;8992:73;:::i;9271:437::-;9324:3;9362:5;9356:12;9389:6;9384:3;9377:19;9415:4;9444:2;9439:3;9435:12;9428:19;;9481:2;9474:5;9470:14;9502:3;9514:169;9528:6;9525:1;9522:13;9514:169;;;9589:13;;9577:26;;9623:12;;;;9658:15;;;;9550:1;9543:9;9514:169;;;-1:-1:-1;9699:3:1;;9332:376;-1:-1:-1;;;;;9332:376:1:o;9713:257::-;9754:3;9792:5;9786:12;9819:6;9814:3;9807:19;9835:63;9891:6;9884:4;9879:3;9875:14;9868:4;9861:5;9857:16;9835:63;:::i;:::-;9952:2;9931:15;-1:-1:-1;;9927:29:1;9918:39;;;;9959:4;9914:50;;9762:208;-1:-1:-1;;9762:208:1:o;9975:185::-;10017:3;10055:5;10049:12;10070:52;10115:6;10110:3;10103:4;10096:5;10092:16;10070:52;:::i;:::-;10138:16;;;;;10025:135;-1:-1:-1;;10025:135:1:o;10417:1178::-;10593:3;10622;10657:6;10651:13;10687:3;10709:1;10737:9;10733:2;10729:18;10719:28;;10797:2;10786:9;10782:18;10819;10809:2;;10863:4;10855:6;10851:17;10841:27;;10809:2;10889;10937;10929:6;10926:14;10906:18;10903:38;10900:2;;;-1:-1:-1;;;10964:33:1;;11020:4;11017:1;11010:15;11050:4;10971:3;11038:17;10900:2;11081:18;11108:104;;;;11226:1;11221:322;;;;11074:469;;11108:104;-1:-1:-1;;11141:24:1;;11129:37;;11186:16;;;;-1:-1:-1;11108:104:1;;11221:322;23641:4;23660:17;;;23710:4;23694:21;;11316:3;11332:165;11346:6;11343:1;11340:13;11332:165;;;11424:14;;11411:11;;;11404:35;11467:16;;;;11361:10;;11332:165;;;11336:3;;11526:6;11521:3;11517:16;11510:23;;11074:469;;;;;;;11559:30;11585:3;11577:6;11559:30;:::i;:::-;11552:37;10601:994;-1:-1:-1;;;;;10601:994:1:o;11600:786::-;12011:25;12006:3;11999:38;11981:3;12066:6;12060:13;12082:62;12137:6;12132:2;12127:3;12123:12;12116:4;12108:6;12104:17;12082:62;:::i;:::-;-1:-1:-1;;;12203:2:1;12163:16;;;12195:11;;;12188:40;12253:13;;12275:63;12253:13;12324:2;12316:11;;12309:4;12297:17;;12275:63;:::i;:::-;12358:17;12377:2;12354:26;;11989:397;-1:-1:-1;;;;11989:397:1:o;12391:826::-;-1:-1:-1;;;;;12788:15:1;;;12770:34;;12840:15;;12835:2;12820:18;;12813:43;12750:3;12887:2;12872:18;;12865:31;;;12713:4;;12919:57;;12956:19;;12948:6;12919:57;:::i;:::-;13024:9;13016:6;13012:22;13007:2;12996:9;12992:18;12985:50;13058:44;13095:6;13087;13058:44;:::i;:::-;13044:58;;13151:9;13143:6;13139:22;13133:3;13122:9;13118:19;13111:51;13179:32;13204:6;13196;13179:32;:::i;:::-;13171:40;12722:495;-1:-1:-1;;;;;;;;12722:495:1:o;13222:560::-;-1:-1:-1;;;;;13519:15:1;;;13501:34;;13571:15;;13566:2;13551:18;;13544:43;13618:2;13603:18;;13596:34;;;13661:2;13646:18;;13639:34;;;13481:3;13704;13689:19;;13682:32;;;13444:4;;13731:45;;13756:19;;13748:6;13731:45;:::i;:::-;13723:53;13453:329;-1:-1:-1;;;;;;;13453:329:1:o;13787:261::-;13966:2;13955:9;13948:21;13929:4;13986:56;14038:2;14027:9;14023:18;14015:6;13986:56;:::i;14053:465::-;14310:2;14299:9;14292:21;14273:4;14336:56;14388:2;14377:9;14373:18;14365:6;14336:56;:::i;:::-;14440:9;14432:6;14428:22;14423:2;14412:9;14408:18;14401:50;14468:44;14505:6;14497;14468:44;:::i;14897:219::-;15046:2;15035:9;15028:21;15009:4;15066:44;15106:2;15095:9;15091:18;15083:6;15066:44;:::i;15903:404::-;16105:2;16087:21;;;16144:2;16124:18;;;16117:30;16183:34;16178:2;16163:18;;16156:62;-1:-1:-1;;;16249:2:1;16234:18;;16227:38;16297:3;16282:19;;16077:230::o;18234:401::-;18436:2;18418:21;;;18475:2;18455:18;;;18448:30;18514:34;18509:2;18494:18;;18487:62;-1:-1:-1;;;18580:2:1;18565:18;;18558:35;18625:3;18610:19;;18408:227::o;19059:406::-;19261:2;19243:21;;;19300:2;19280:18;;;19273:30;19339:34;19334:2;19319:18;;19312:62;-1:-1:-1;;;19405:2:1;19390:18;;19383:40;19455:3;19440:19;;19233:232::o;20632:404::-;20834:2;20816:21;;;20873:2;20853:18;;;20846:30;20912:34;20907:2;20892:18;;20885:62;-1:-1:-1;;;20978:2:1;20963:18;;20956:38;21026:3;21011:19;;20806:230::o;21041:397::-;21243:2;21225:21;;;21282:2;21262:18;;;21255:30;21321:34;21316:2;21301:18;;21294:62;-1:-1:-1;;;21387:2:1;21372:18;;21365:31;21428:3;21413:19;;21215:223::o;21443:402::-;21645:2;21627:21;;;21684:2;21664:18;;;21657:30;21723:34;21718:2;21703:18;;21696:62;-1:-1:-1;;;21789:2:1;21774:18;;21767:36;21835:3;21820:19;;21617:228::o;23406:183::-;23466:4;-1:-1:-1;;;;;23491:6:1;23488:30;23485:2;;;23521:18;;:::i;:::-;-1:-1:-1;23566:1:1;23562:14;23578:4;23558:25;;23475:114::o;23726:128::-;23766:3;23797:1;23793:6;23790:1;23787:13;23784:2;;;23803:18;;:::i;:::-;-1:-1:-1;23839:9:1;;23774:80::o;23859:120::-;23899:1;23925;23915:2;;23930:18;;:::i;:::-;-1:-1:-1;23964:9:1;;23905:74::o;23984:168::-;24024:7;24090:1;24086;24082:6;24078:14;24075:1;24072:21;24067:1;24060:9;24053:17;24049:45;24046:2;;;24097:18;;:::i;:::-;-1:-1:-1;24137:9:1;;24036:116::o;24157:125::-;24197:4;24225:1;24222;24219:8;24216:2;;;24230:18;;:::i;:::-;-1:-1:-1;24267:9:1;;24206:76::o;24287:258::-;24359:1;24369:113;24383:6;24380:1;24377:13;24369:113;;;24459:11;;;24453:18;24440:11;;;24433:39;24405:2;24398:10;24369:113;;;24500:6;24497:1;24494:13;24491:2;;;-1:-1:-1;;24535:1:1;24517:16;;24510:27;24340:205::o;24550:136::-;24589:3;24617:5;24607:2;;24626:18;;:::i;:::-;-1:-1:-1;;;24662:18:1;;24597:89::o;24691:380::-;24770:1;24766:12;;;;24813;;;24834:2;;24888:4;24880:6;24876:17;24866:27;;24834:2;24941;24933:6;24930:14;24910:18;24907:38;24904:2;;;24987:10;24982:3;24978:20;24975:1;24968:31;25022:4;25019:1;25012:15;25050:4;25047:1;25040:15;24904:2;;24746:325;;;:::o;25076:249::-;25186:2;25167:13;;-1:-1:-1;;25163:27:1;25151:40;;-1:-1:-1;;;;;25206:34:1;;25242:22;;;25203:62;25200:2;;;25268:18;;:::i;:::-;25304:2;25297:22;-1:-1:-1;;25123:202:1:o;25330:135::-;25369:3;-1:-1:-1;;25390:17:1;;25387:2;;;25410:18;;:::i;:::-;-1:-1:-1;25457:1:1;25446:13;;25377:88::o;25470:112::-;25502:1;25528;25518:2;;25533:18;;:::i;:::-;-1:-1:-1;25567:9:1;;25508:74::o;25587:127::-;25648:10;25643:3;25639:20;25636:1;25629:31;25679:4;25676:1;25669:15;25703:4;25700:1;25693:15;25719:127;25780:10;25775:3;25771:20;25768:1;25761:31;25811:4;25808:1;25801:15;25835:4;25832:1;25825:15;25851:127;25912:10;25907:3;25903:20;25900:1;25893:31;25943:4;25940:1;25933:15;25967:4;25964:1;25957:15;25983:185;26018:3;26060:1;26042:16;26039:23;26036:2;;;26110:1;26105:3;26100;26085:27;26141:10;26136:3;26132:20;26036:2;26026:142;:::o;26173:671::-;26212:3;26254:4;26236:16;26233:26;26230:2;;;26220:624;:::o;26230:2::-;26296;26290:9;-1:-1:-1;;26361:16:1;26357:25;;26354:1;26290:9;26333:50;26412:4;26406:11;26436:16;-1:-1:-1;;;;;26542:2:1;26535:4;26527:6;26523:17;26520:25;26515:2;26507:6;26504:14;26501:45;26498:2;;;26549:5;;;;;26220:624;:::o;26498:2::-;26586:6;26580:4;26576:17;26565:28;;26622:3;26616:10;26649:2;26641:6;26638:14;26635:2;;;26655:5;;;;;;26220:624;:::o;26635:2::-;26739;26720:16;26714:4;26710:27;26706:36;26699:4;26690:6;26685:3;26681:16;26677:27;26674:69;26671:2;;;26746:5;;;;;;26220:624;:::o;26671:2::-;26762:57;26813:4;26804:6;26796;26792:19;26788:30;26782:4;26762:57;:::i;:::-;-1:-1:-1;26835:3:1;;26220:624;-1:-1:-1;;;;;26220:624:1:o;26849:131::-;-1:-1:-1;;;;;;26923:32:1;;26913:43;;26903:2;;26970:1;26967;26960:12;26903:2;26893:87;:::o

Swarm Source

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