ETH Price: $3,060.49 (+1.20%)
Gas: 3 Gwei

Token

Sup? Records (SUP?)
 

Overview

Max Total Supply

1,895 SUP?

Holders

659

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x4426a261ac0080ca10ee024c2588c9dfcf6737fc
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:
SupRecords

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-01
*/

// Sources flattened with hardhat v2.4.1 https://hardhat.org

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.4;

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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






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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

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

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

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

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

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

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

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

contract SupRecords is ERC1155(""), ReentrancyGuard, Pausable, Ownable {
    mapping(address => bool) private _minters;

    mapping(uint256 => uint256) private _totalSupplies;
    mapping(uint256 => uint256) private _maxSupplies;
    mapping(uint256 => uint256) private _prices;
    mapping(uint256 => string) private _hashes;

    uint256 _totalTokens;

    string constant BASE_URI = "https://ipfs.io/ipfs/";
    uint256 constant public MAX_MINT_COUNT = 10;

    address payable private payoutAddress;

    string public name;
    string public symbol;

    event AllocatedTokens(uint256 tokenId, uint256 price, uint256 count);
    event SetMintable(address minter, bool mintable);

    modifier minterOrOwner() {
        // Caller must either be a minter or the owner.
        if (!_minters[_msgSender()]) {
            require(owner() == _msgSender(), "Not minter or owner");
        }

        _;
    }

    constructor() {
        payoutAddress = payable(_msgSender());
        name = "Sup? Records";
        symbol = "SUP?";
    }

    // For OpenSea
    function uri(uint256 tokenId) public view override returns (string memory) {
        string memory ipfsHash = _hashes[tokenId];

        return bytes(ipfsHash).length > 0 ? string(abi.encodePacked(BASE_URI, ipfsHash)) : "";
    }
    function totalSupply(uint256 tokenId) external view returns (uint256) {
        return _totalSupplies[tokenId];
    }
    function maxSupply(uint256 tokenId) external view returns (uint256) {
        return _maxSupplies[tokenId];
    }

    // Views
    function getPrice(uint256 tokenId) external view returns (uint256) {
        require(_maxSupplies[tokenId] > 1, "Invalid token id");

        return _prices[tokenId];
    }
    function getTotalTokens() external view returns (uint256) {
        return _totalTokens;
    }

    /** Mint a non-unique NFT. */
    function mint(uint256 tokenId, uint256 count) external payable nonReentrant whenNotPaused {
        require(count > 0 && count <= MAX_MINT_COUNT, "Invalid mint count");
        uint256 maxTokenSupply = _maxSupplies[tokenId];
        require(maxTokenSupply > 1 && _totalSupplies[tokenId] + count <= maxTokenSupply, "No supply");
        require(msg.value == _prices[tokenId] * count, "Wrong value");

        _totalSupplies[tokenId] += count;

        _mint(_msgSender(), tokenId, count, "");
    }

    /** Sets the allocation for a non-unique NFT. */
    function createNonUnique(uint256 price, uint256 count, string memory ipfsHash) external nonReentrant minterOrOwner {
        uint256 tokenId = ++_totalTokens;
        require(_maxSupplies[tokenId] == 0, "Already created.");
        require(price > 0, "Must have price");
        require(count > 1, "Must be non-unique");
        require(bytes(ipfsHash).length > 0, "Need ipfs hash");

        _maxSupplies[tokenId] = count;
        _prices[tokenId] = price;
        _hashes[tokenId] = ipfsHash;

        emit AllocatedTokens(tokenId, price, count);
    }

    /** Mints a unique, one of one, NFT. */
    function mintUnique(string memory ipfsHash) external nonReentrant minterOrOwner {
        uint256 tokenId = ++_totalTokens;
        require(_maxSupplies[tokenId] == 0, "Already minted");
        require(bytes(ipfsHash).length > 0, "Need ipfs hash");

        _totalSupplies[tokenId] = 1;
        _maxSupplies[tokenId] = 1;
        _hashes[tokenId] = ipfsHash;

        _mint(_msgSender(), tokenId, 1, "");
    }


    // Minter
    function isMinter(address minter) external view returns (bool) {
        return _minters[minter];
    }
    /** Set the minter role for a given set of addresses. */
    function setMintable(address[] calldata minters, bool[] calldata mintables) external nonReentrant onlyOwner {
        uint256 count = minters.length;
        require(count > 0, "No minters");
        require(count == mintables.length, "Nonmatching length");

        address minter;
        bool mintable;
        for (uint256 i; i < count; i++) {
            minter = minters[i];
            mintable = mintables[i];
            _minters[minter] = mintable;

            emit SetMintable(minter, mintable);
        }
    }

    // Owner
    function withdraw() public {
        payoutAddress.transfer(address(this).balance);
    }
    function renounceOwnership() public override nonReentrant {
        revert();
    }
    function setPayoutAddress(address payable newAddress) external nonReentrant onlyOwner {
        require(newAddress != address(0) && newAddress != address(this), "Invalid address");

        payoutAddress = newAddress;
    }
    function pause() external nonReentrant onlyOwner {
        _pause();
    }
    function unpause() external nonReentrant onlyOwner {
        _unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"AllocatedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"bool","name":"mintable","type":"bool"}],"name":"SetMintable","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"string","name":"ipfsHash","type":"string"}],"name":"createNonUnique","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"minter","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"ipfsHash","type":"string"}],"name":"mintUnique","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"minters","type":"address[]"},{"internalType":"bool[]","name":"mintables","type":"bool[]"}],"name":"setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"setPayoutAddress","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":"tokenId","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040805160208101909152600081526200002c81620000c1565b5060016003556004805460ff191690556200004733620000da565b600b80546001600160a01b0319163317905560408051808201909152600c8082526b5375703f205265636f72647360a01b60209092019182526200008c918162000134565b50604080518082019091526004808252635355503f60e01b6020909201918252620000ba91600d9162000134565b5062000217565b8051620000d690600290602084019062000134565b5050565b600480546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014290620001da565b90600052602060002090601f016020900481019282620001665760008555620001b1565b82601f106200018157805160ff1916838001178555620001b1565b82800160010185558215620001b1579182015b82811115620001b157825182559160200191906001019062000194565b50620001bf929150620001c3565b5090565b5b80821115620001bf5760008155600101620001c4565b600181811c90821680620001ef57607f821691505b602082108114156200021157634e487b7160e01b600052602260045260246000fd5b50919050565b61290980620002276000396000f3fe6080604052600436106101b65760003560e01c80638456cb59116100ec578063cdf653061161008a578063e985e9c511610064578063e985e9c5146104e1578063f08b82e61461052a578063f242432a1461053f578063f2fde38b1461055f57600080fd5b8063cdf653061461048c578063dcf436cd146104a1578063e7572230146104c157600080fd5b806395d89b41116100c657806395d89b41146103f1578063a22cb46514610406578063aa271e1a14610426578063bd85b0391461045f57600080fd5b80638456cb5914610379578063869f75941461038e5780638da5cb5b146103bb57600080fd5b806333ea51a8116101595780634e1273f4116101335780634e1273f4146102ff5780634fea28261461032c5780635c975abb1461034c578063715018a61461036457600080fd5b806333ea51a8146102b55780633ccfd60b146102d55780633f4ba83a146102ea57600080fd5b80630e89341c116101955780630e89341c146102405780631b2ef1ca146102605780632eb2c2d6146102755780633249a0c61461029557600080fd5b8062fdd58e146101bb57806301ffc9a7146101ee57806306fdde031461021e575b600080fd5b3480156101c757600080fd5b506101db6101d6366004612188565b61057f565b6040519081526020015b60405180910390f35b3480156101fa57600080fd5b5061020e610209366004612303565b610616565b60405190151581526020016101e5565b34801561022a57600080fd5b50610233610668565b6040516101e59190612576565b34801561024c57600080fd5b5061023361025b366004612376565b6106f6565b61027361026e36600461238e565b610809565b005b34801561028157600080fd5b50610273610290366004612043565b6109d9565b3480156102a157600080fd5b506102736102b036600461233b565b610a70565b3480156102c157600080fd5b506102736102d0366004611fef565b610c07565b3480156102e157600080fd5b50610273610ce5565b3480156102f657600080fd5b50610273610d21565b34801561030b57600080fd5b5061031f61031a36600461221c565b610d88565b6040516101e59190612535565b34801561033857600080fd5b506102736103473660046121b3565b610eea565b34801561035857600080fd5b5060045460ff1661020e565b34801561037057600080fd5b506102736110be565b34801561038557600080fd5b506102736110eb565b34801561039a57600080fd5b506101db6103a9366004612376565b60009081526007602052604090205490565b3480156103c757600080fd5b5060045461010090046001600160a01b03166040516001600160a01b0390911681526020016101e5565b3480156103fd57600080fd5b5061023361114b565b34801561041257600080fd5b50610273610421366004612154565b611158565b34801561043257600080fd5b5061020e610441366004611fef565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561046b57600080fd5b506101db61047a366004612376565b60009081526006602052604090205490565b34801561049857600080fd5b506101db600a81565b3480156104ad57600080fd5b506102736104bc3660046123af565b61122f565b3480156104cd57600080fd5b506101db6104dc366004612376565b611475565b3480156104ed57600080fd5b5061020e6104fc36600461200b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561053657600080fd5b50600a546101db565b34801561054b57600080fd5b5061027361055a3660046120ed565b6114d9565b34801561056b57600080fd5b5061027361057a366004611fef565b611560565b60006001600160a01b0383166105f05760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061064757506001600160e01b031982166303a24d0760e21b145b8061066257506301ffc9a760e01b6001600160e01b03198316145b92915050565b600c805461067590612757565b80601f01602080910402602001604051908101604052809291908181526020018280546106a190612757565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b505050505081565b60008181526009602052604081208054606092919061071490612757565b80601f016020809104026020016040519081016040528092919081815260200182805461074090612757565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905060008151116107b25760405180602001604052806000815250610802565b6040518060400160405280601581526020017468747470733a2f2f697066732e696f2f697066732f60581b815250816040516020016107f2929190612463565b6040516020818303038152906040525b9392505050565b6002600354141561082c5760405162461bcd60e51b81526004016105e790612695565b600260035560045460ff16156108775760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105e7565b6000811180156108885750600a8111155b6108c95760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a59081b5a5b9d0818dbdd5b9d60721b60448201526064016105e7565b600082815260076020526040902054600181118015610902575060008381526006602052604090205481906108ff9084906126f0565b11155b61093a5760405162461bcd60e51b81526020600482015260096024820152684e6f20737570706c7960b81b60448201526064016105e7565b600083815260086020526040902054610954908390612708565b34146109905760405162461bcd60e51b815260206004820152600b60248201526a57726f6e672076616c756560a81b60448201526064016105e7565b600083815260066020526040812080548492906109ae9084906126f0565b909155506109cf9050338484604051806020016040528060008152506115fe565b5050600160035550565b6001600160a01b0385163314806109f557506109f585336104fc565b610a5c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105e7565b610a698585858585611708565b5050505050565b60026003541415610a935760405162461bcd60e51b81526004016105e790612695565b60026003553360009081526005602052604090205460ff16610b05576004546001600160a01b03610100909104163314610b055760405162461bcd60e51b81526020600482015260136024820152722737ba1036b4b73a32b91037b91037bbb732b960691b60448201526064016105e7565b6000600a60008154610b16906127bf565b918290555060008181526007602052604090205490915015610b6b5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016105e7565b6000825111610bad5760405162461bcd60e51b815260206004820152600e60248201526d09ccacac840d2e0cce640d0c2e6d60931b60448201526064016105e7565b60008181526006602090815260408083206001908190556007835281842055600982529091208351610be192850190611e14565b50610bfe33826001604051806020016040528060008152506115fe565b50506001600355565b60026003541415610c2a5760405162461bcd60e51b81526004016105e790612695565b60026003556004546001600160a01b03610100909104163314610c5f5760405162461bcd60e51b81526004016105e790612660565b6001600160a01b03811615801590610c8057506001600160a01b0381163014155b610cbe5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016105e7565b600b80546001600160a01b0319166001600160a01b03929092169190911790556001600355565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d1e573d6000803e3d6000fd5b50565b60026003541415610d445760405162461bcd60e51b81526004016105e790612695565b60026003556004546001600160a01b03610100909104163314610d795760405162461bcd60e51b81526004016105e790612660565b610d81611901565b6001600355565b60608151835114610ded5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016105e7565b6000835167ffffffffffffffff811115610e1757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e40578160200160208202803683370190505b50905060005b8451811015610ee257610ea7858281518110610e7257634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610e9a57634e487b7160e01b600052603260045260246000fd5b602002602001015161057f565b828281518110610ec757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610edb816127bf565b9050610e46565b509392505050565b60026003541415610f0d5760405162461bcd60e51b81526004016105e790612695565b60026003556004546001600160a01b03610100909104163314610f425760405162461bcd60e51b81526004016105e790612660565b8280610f7d5760405162461bcd60e51b815260206004820152600a6024820152694e6f206d696e7465727360b01b60448201526064016105e7565b808214610fc15760405162461bcd60e51b815260206004820152601260248201527109cdedcdac2e8c6d0d2dcce40d8cadccee8d60731b60448201526064016105e7565b60008060005b838110156110af57878782818110610fef57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110049190611fef565b925085858281811061102657634e487b7160e01b600052603260045260246000fd5b905060200201602081019061103b91906122e9565b6001600160a01b038416600081815260056020908152604091829020805460ff19168515159081179091558251938452908301529193507fcd6f1ae53cfd8d696b3c76d89e4995f42da55411d0b394553687aee658bbb32d910160405180910390a1806110a7816127bf565b915050610fc7565b50506001600355505050505050565b600260035414156110e15760405162461bcd60e51b81526004016105e790612695565b6002600355600080fd5b6002600354141561110e5760405162461bcd60e51b81526004016105e790612695565b60026003556004546001600160a01b036101009091041633146111435760405162461bcd60e51b81526004016105e790612660565b610d81611994565b600d805461067590612757565b336001600160a01b03831614156111c35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016105e7565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260035414156112525760405162461bcd60e51b81526004016105e790612695565b60026003553360009081526005602052604090205460ff166112c4576004546001600160a01b036101009091041633146112c45760405162461bcd60e51b81526020600482015260136024820152722737ba1036b4b73a32b91037b91037bbb732b960691b60448201526064016105e7565b6000600a600081546112d5906127bf565b91829055506000818152600760205260409020549091501561132c5760405162461bcd60e51b815260206004820152601060248201526f20b63932b0b23c9031b932b0ba32b21760811b60448201526064016105e7565b6000841161136e5760405162461bcd60e51b815260206004820152600f60248201526e4d757374206861766520707269636560881b60448201526064016105e7565b600183116113b35760405162461bcd60e51b81526020600482015260126024820152714d757374206265206e6f6e2d756e6971756560701b60448201526064016105e7565b60008251116113f55760405162461bcd60e51b815260206004820152600e60248201526d09ccacac840d2e0cce640d0c2e6d60931b60448201526064016105e7565b60008181526007602090815260408083208690556008825280832087905560098252909120835161142892850190611e14565b5060408051828152602081018690529081018490527fba2e6ef87fe51860ee8b254b74cd1e44260224321c97720508e1cc5db4d7fcc19060600160405180910390a1505060016003555050565b6000818152600760205260408120546001106114c65760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a59081d1bdad95b881a5960821b60448201526064016105e7565b5060009081526008602052604090205490565b6001600160a01b0385163314806114f557506114f585336104fc565b6115535760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016105e7565b610a698585858585611a0f565b6004546001600160a01b036101009091041633146115905760405162461bcd60e51b81526004016105e790612660565b6001600160a01b0381166115f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e7565b610d1e81611b2c565b6001600160a01b03841661165e5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105e7565b336116788160008761166f88611b86565b610a6988611b86565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906116a89084906126f0565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610a6981600087878787611bdf565b815183511461176a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016105e7565b6001600160a01b0384166117905760405162461bcd60e51b81526004016105e7906125d1565b3360005b84518110156118935760008582815181106117bf57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008583815181106117eb57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561183b5760405162461bcd60e51b81526004016105e790612616565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906118789084906126f0565b925050819055505050508061188c906127bf565b9050611794565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118e3929190612548565b60405180910390a46118f9818787878787611d4a565b505050505050565b60045460ff1661194a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105e7565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60045460ff16156119da5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105e7565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119773390565b6001600160a01b038416611a355760405162461bcd60e51b81526004016105e7906125d1565b33611a4581878761166f88611b86565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611a865760405162461bcd60e51b81526004016105e790612616565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ac39084906126f0565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b23828888888888611bdf565b50505050505050565b600480546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611bce57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b156118f95760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611c2390899089908890889088906004016124f0565b602060405180830381600087803b158015611c3d57600080fd5b505af1925050508015611c6d575060408051601f3d908101601f19168201909252611c6a9181019061231f565b60015b611d1a57611c79612806565b806308c379a01415611cb35750611c8e61281e565b80611c995750611cb5565b8060405162461bcd60e51b81526004016105e79190612576565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016105e7565b6001600160e01b0319811663f23a6e6160e01b14611b235760405162461bcd60e51b81526004016105e790612589565b6001600160a01b0384163b156118f95760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611d8e9089908990889088908890600401612492565b602060405180830381600087803b158015611da857600080fd5b505af1925050508015611dd8575060408051601f3d908101601f19168201909252611dd59181019061231f565b60015b611de457611c79612806565b6001600160e01b0319811663bc197c8160e01b14611b235760405162461bcd60e51b81526004016105e790612589565b828054611e2090612757565b90600052602060002090601f016020900481019282611e425760008555611e88565b82601f10611e5b57805160ff1916838001178555611e88565b82800160010185558215611e88579182015b82811115611e88578251825591602001919060010190611e6d565b50611e94929150611e98565b5090565b5b80821115611e945760008155600101611e99565b60008083601f840112611ebe578182fd5b50813567ffffffffffffffff811115611ed5578182fd5b6020830191508360208260051b8501011115611ef057600080fd5b9250929050565b600082601f830112611f07578081fd5b81356020611f14826126cc565b604051611f218282612792565b8381528281019150858301600585901b87018401881015611f40578586fd5b855b85811015611f5e57813584529284019290840190600101611f42565b5090979650505050505050565b80358015158114611f7b57600080fd5b919050565b600082601f830112611f90578081fd5b813567ffffffffffffffff811115611faa57611faa6127f0565b604051611fc1601f8301601f191660200182612792565b818152846020838601011115611fd5578283fd5b816020850160208301379081016020019190915292915050565b600060208284031215612000578081fd5b8135610802816128a8565b6000806040838503121561201d578081fd5b8235612028816128a8565b91506020830135612038816128a8565b809150509250929050565b600080600080600060a0868803121561205a578081fd5b8535612065816128a8565b94506020860135612075816128a8565b9350604086013567ffffffffffffffff80821115612091578283fd5b61209d89838a01611ef7565b945060608801359150808211156120b2578283fd5b6120be89838a01611ef7565b935060808801359150808211156120d3578283fd5b506120e088828901611f80565b9150509295509295909350565b600080600080600060a08688031215612104578081fd5b853561210f816128a8565b9450602086013561211f816128a8565b93506040860135925060608601359150608086013567ffffffffffffffff811115612148578182fd5b6120e088828901611f80565b60008060408385031215612166578182fd5b8235612171816128a8565b915061217f60208401611f6b565b90509250929050565b6000806040838503121561219a578182fd5b82356121a5816128a8565b946020939093013593505050565b600080600080604085870312156121c8578182fd5b843567ffffffffffffffff808211156121df578384fd5b6121eb88838901611ead565b90965094506020870135915080821115612203578384fd5b5061221087828801611ead565b95989497509550505050565b6000806040838503121561222e578182fd5b823567ffffffffffffffff80821115612245578384fd5b818501915085601f830112612258578384fd5b81356020612265826126cc565b6040516122728282612792565b8381528281019150858301600585901b870184018b1015612291578889fd5b8896505b848710156122bc5780356122a8816128a8565b835260019690960195918301918301612295565b50965050860135925050808211156122d2578283fd5b506122df85828601611ef7565b9150509250929050565b6000602082840312156122fa578081fd5b61080282611f6b565b600060208284031215612314578081fd5b8135610802816128bd565b600060208284031215612330578081fd5b8151610802816128bd565b60006020828403121561234c578081fd5b813567ffffffffffffffff811115612362578182fd5b61236e84828501611f80565b949350505050565b600060208284031215612387578081fd5b5035919050565b600080604083850312156123a0578182fd5b50508035926020909101359150565b6000806000606084860312156123c3578081fd5b8335925060208401359150604084013567ffffffffffffffff8111156123e7578182fd5b6123f386828701611f80565b9150509250925092565b6000815180845260208085019450808401835b8381101561242c57815187529582019590820190600101612410565b509495945050505050565b6000815180845261244f816020860160208601612727565b601f01601f19169290920160200192915050565b60008351612475818460208801612727565b835190830190612489818360208801612727565b01949350505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906124be908301866123fd565b82810360608401526124d081866123fd565b905082810360808401526124e48185612437565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061252a90830184612437565b979650505050505050565b60208152600061080260208301846123fd565b60408152600061255b60408301856123fd565b828103602084015261256d81856123fd565b95945050505050565b6020815260006108026020830184612437565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600067ffffffffffffffff8211156126e6576126e66127f0565b5060051b60200190565b60008219821115612703576127036127da565b500190565b6000816000190483118215151615612722576127226127da565b500290565b60005b8381101561274257818101518382015260200161272a565b83811115612751576000848401525b50505050565b600181811c9082168061276b57607f821691505b6020821081141561278c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156127b8576127b86127f0565b6040525050565b60006000198214156127d3576127d36127da565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561281b57600481823e5160e01c5b90565b600060443d101561282c5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561285c57505050505090565b82850191508151818111156128745750505050505090565b843d870101602082850101111561288e5750505050505090565b61289d60208286010187612792565b509095945050505050565b6001600160a01b0381168114610d1e57600080fd5b6001600160e01b031981168114610d1e57600080fdfea2646970667358221220cd2e61d994a4cd61e1a939980677915bb0b73dcc5d1b689539501cb3da02e2eb64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101b65760003560e01c80638456cb59116100ec578063cdf653061161008a578063e985e9c511610064578063e985e9c5146104e1578063f08b82e61461052a578063f242432a1461053f578063f2fde38b1461055f57600080fd5b8063cdf653061461048c578063dcf436cd146104a1578063e7572230146104c157600080fd5b806395d89b41116100c657806395d89b41146103f1578063a22cb46514610406578063aa271e1a14610426578063bd85b0391461045f57600080fd5b80638456cb5914610379578063869f75941461038e5780638da5cb5b146103bb57600080fd5b806333ea51a8116101595780634e1273f4116101335780634e1273f4146102ff5780634fea28261461032c5780635c975abb1461034c578063715018a61461036457600080fd5b806333ea51a8146102b55780633ccfd60b146102d55780633f4ba83a146102ea57600080fd5b80630e89341c116101955780630e89341c146102405780631b2ef1ca146102605780632eb2c2d6146102755780633249a0c61461029557600080fd5b8062fdd58e146101bb57806301ffc9a7146101ee57806306fdde031461021e575b600080fd5b3480156101c757600080fd5b506101db6101d6366004612188565b61057f565b6040519081526020015b60405180910390f35b3480156101fa57600080fd5b5061020e610209366004612303565b610616565b60405190151581526020016101e5565b34801561022a57600080fd5b50610233610668565b6040516101e59190612576565b34801561024c57600080fd5b5061023361025b366004612376565b6106f6565b61027361026e36600461238e565b610809565b005b34801561028157600080fd5b50610273610290366004612043565b6109d9565b3480156102a157600080fd5b506102736102b036600461233b565b610a70565b3480156102c157600080fd5b506102736102d0366004611fef565b610c07565b3480156102e157600080fd5b50610273610ce5565b3480156102f657600080fd5b50610273610d21565b34801561030b57600080fd5b5061031f61031a36600461221c565b610d88565b6040516101e59190612535565b34801561033857600080fd5b506102736103473660046121b3565b610eea565b34801561035857600080fd5b5060045460ff1661020e565b34801561037057600080fd5b506102736110be565b34801561038557600080fd5b506102736110eb565b34801561039a57600080fd5b506101db6103a9366004612376565b60009081526007602052604090205490565b3480156103c757600080fd5b5060045461010090046001600160a01b03166040516001600160a01b0390911681526020016101e5565b3480156103fd57600080fd5b5061023361114b565b34801561041257600080fd5b50610273610421366004612154565b611158565b34801561043257600080fd5b5061020e610441366004611fef565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561046b57600080fd5b506101db61047a366004612376565b60009081526006602052604090205490565b34801561049857600080fd5b506101db600a81565b3480156104ad57600080fd5b506102736104bc3660046123af565b61122f565b3480156104cd57600080fd5b506101db6104dc366004612376565b611475565b3480156104ed57600080fd5b5061020e6104fc36600461200b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561053657600080fd5b50600a546101db565b34801561054b57600080fd5b5061027361055a3660046120ed565b6114d9565b34801561056b57600080fd5b5061027361057a366004611fef565b611560565b60006001600160a01b0383166105f05760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061064757506001600160e01b031982166303a24d0760e21b145b8061066257506301ffc9a760e01b6001600160e01b03198316145b92915050565b600c805461067590612757565b80601f01602080910402602001604051908101604052809291908181526020018280546106a190612757565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b505050505081565b60008181526009602052604081208054606092919061071490612757565b80601f016020809104026020016040519081016040528092919081815260200182805461074090612757565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905060008151116107b25760405180602001604052806000815250610802565b6040518060400160405280601581526020017468747470733a2f2f697066732e696f2f697066732f60581b815250816040516020016107f2929190612463565b6040516020818303038152906040525b9392505050565b6002600354141561082c5760405162461bcd60e51b81526004016105e790612695565b600260035560045460ff16156108775760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105e7565b6000811180156108885750600a8111155b6108c95760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a59081b5a5b9d0818dbdd5b9d60721b60448201526064016105e7565b600082815260076020526040902054600181118015610902575060008381526006602052604090205481906108ff9084906126f0565b11155b61093a5760405162461bcd60e51b81526020600482015260096024820152684e6f20737570706c7960b81b60448201526064016105e7565b600083815260086020526040902054610954908390612708565b34146109905760405162461bcd60e51b815260206004820152600b60248201526a57726f6e672076616c756560a81b60448201526064016105e7565b600083815260066020526040812080548492906109ae9084906126f0565b909155506109cf9050338484604051806020016040528060008152506115fe565b5050600160035550565b6001600160a01b0385163314806109f557506109f585336104fc565b610a5c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105e7565b610a698585858585611708565b5050505050565b60026003541415610a935760405162461bcd60e51b81526004016105e790612695565b60026003553360009081526005602052604090205460ff16610b05576004546001600160a01b03610100909104163314610b055760405162461bcd60e51b81526020600482015260136024820152722737ba1036b4b73a32b91037b91037bbb732b960691b60448201526064016105e7565b6000600a60008154610b16906127bf565b918290555060008181526007602052604090205490915015610b6b5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016105e7565b6000825111610bad5760405162461bcd60e51b815260206004820152600e60248201526d09ccacac840d2e0cce640d0c2e6d60931b60448201526064016105e7565b60008181526006602090815260408083206001908190556007835281842055600982529091208351610be192850190611e14565b50610bfe33826001604051806020016040528060008152506115fe565b50506001600355565b60026003541415610c2a5760405162461bcd60e51b81526004016105e790612695565b60026003556004546001600160a01b03610100909104163314610c5f5760405162461bcd60e51b81526004016105e790612660565b6001600160a01b03811615801590610c8057506001600160a01b0381163014155b610cbe5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016105e7565b600b80546001600160a01b0319166001600160a01b03929092169190911790556001600355565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d1e573d6000803e3d6000fd5b50565b60026003541415610d445760405162461bcd60e51b81526004016105e790612695565b60026003556004546001600160a01b03610100909104163314610d795760405162461bcd60e51b81526004016105e790612660565b610d81611901565b6001600355565b60608151835114610ded5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016105e7565b6000835167ffffffffffffffff811115610e1757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e40578160200160208202803683370190505b50905060005b8451811015610ee257610ea7858281518110610e7257634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610e9a57634e487b7160e01b600052603260045260246000fd5b602002602001015161057f565b828281518110610ec757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610edb816127bf565b9050610e46565b509392505050565b60026003541415610f0d5760405162461bcd60e51b81526004016105e790612695565b60026003556004546001600160a01b03610100909104163314610f425760405162461bcd60e51b81526004016105e790612660565b8280610f7d5760405162461bcd60e51b815260206004820152600a6024820152694e6f206d696e7465727360b01b60448201526064016105e7565b808214610fc15760405162461bcd60e51b815260206004820152601260248201527109cdedcdac2e8c6d0d2dcce40d8cadccee8d60731b60448201526064016105e7565b60008060005b838110156110af57878782818110610fef57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110049190611fef565b925085858281811061102657634e487b7160e01b600052603260045260246000fd5b905060200201602081019061103b91906122e9565b6001600160a01b038416600081815260056020908152604091829020805460ff19168515159081179091558251938452908301529193507fcd6f1ae53cfd8d696b3c76d89e4995f42da55411d0b394553687aee658bbb32d910160405180910390a1806110a7816127bf565b915050610fc7565b50506001600355505050505050565b600260035414156110e15760405162461bcd60e51b81526004016105e790612695565b6002600355600080fd5b6002600354141561110e5760405162461bcd60e51b81526004016105e790612695565b60026003556004546001600160a01b036101009091041633146111435760405162461bcd60e51b81526004016105e790612660565b610d81611994565b600d805461067590612757565b336001600160a01b03831614156111c35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016105e7565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260035414156112525760405162461bcd60e51b81526004016105e790612695565b60026003553360009081526005602052604090205460ff166112c4576004546001600160a01b036101009091041633146112c45760405162461bcd60e51b81526020600482015260136024820152722737ba1036b4b73a32b91037b91037bbb732b960691b60448201526064016105e7565b6000600a600081546112d5906127bf565b91829055506000818152600760205260409020549091501561132c5760405162461bcd60e51b815260206004820152601060248201526f20b63932b0b23c9031b932b0ba32b21760811b60448201526064016105e7565b6000841161136e5760405162461bcd60e51b815260206004820152600f60248201526e4d757374206861766520707269636560881b60448201526064016105e7565b600183116113b35760405162461bcd60e51b81526020600482015260126024820152714d757374206265206e6f6e2d756e6971756560701b60448201526064016105e7565b60008251116113f55760405162461bcd60e51b815260206004820152600e60248201526d09ccacac840d2e0cce640d0c2e6d60931b60448201526064016105e7565b60008181526007602090815260408083208690556008825280832087905560098252909120835161142892850190611e14565b5060408051828152602081018690529081018490527fba2e6ef87fe51860ee8b254b74cd1e44260224321c97720508e1cc5db4d7fcc19060600160405180910390a1505060016003555050565b6000818152600760205260408120546001106114c65760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a59081d1bdad95b881a5960821b60448201526064016105e7565b5060009081526008602052604090205490565b6001600160a01b0385163314806114f557506114f585336104fc565b6115535760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016105e7565b610a698585858585611a0f565b6004546001600160a01b036101009091041633146115905760405162461bcd60e51b81526004016105e790612660565b6001600160a01b0381166115f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e7565b610d1e81611b2c565b6001600160a01b03841661165e5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105e7565b336116788160008761166f88611b86565b610a6988611b86565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906116a89084906126f0565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610a6981600087878787611bdf565b815183511461176a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016105e7565b6001600160a01b0384166117905760405162461bcd60e51b81526004016105e7906125d1565b3360005b84518110156118935760008582815181106117bf57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008583815181106117eb57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561183b5760405162461bcd60e51b81526004016105e790612616565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906118789084906126f0565b925050819055505050508061188c906127bf565b9050611794565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118e3929190612548565b60405180910390a46118f9818787878787611d4a565b505050505050565b60045460ff1661194a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105e7565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60045460ff16156119da5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105e7565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119773390565b6001600160a01b038416611a355760405162461bcd60e51b81526004016105e7906125d1565b33611a4581878761166f88611b86565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611a865760405162461bcd60e51b81526004016105e790612616565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ac39084906126f0565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b23828888888888611bdf565b50505050505050565b600480546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611bce57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b156118f95760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611c2390899089908890889088906004016124f0565b602060405180830381600087803b158015611c3d57600080fd5b505af1925050508015611c6d575060408051601f3d908101601f19168201909252611c6a9181019061231f565b60015b611d1a57611c79612806565b806308c379a01415611cb35750611c8e61281e565b80611c995750611cb5565b8060405162461bcd60e51b81526004016105e79190612576565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016105e7565b6001600160e01b0319811663f23a6e6160e01b14611b235760405162461bcd60e51b81526004016105e790612589565b6001600160a01b0384163b156118f95760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611d8e9089908990889088908890600401612492565b602060405180830381600087803b158015611da857600080fd5b505af1925050508015611dd8575060408051601f3d908101601f19168201909252611dd59181019061231f565b60015b611de457611c79612806565b6001600160e01b0319811663bc197c8160e01b14611b235760405162461bcd60e51b81526004016105e790612589565b828054611e2090612757565b90600052602060002090601f016020900481019282611e425760008555611e88565b82601f10611e5b57805160ff1916838001178555611e88565b82800160010185558215611e88579182015b82811115611e88578251825591602001919060010190611e6d565b50611e94929150611e98565b5090565b5b80821115611e945760008155600101611e99565b60008083601f840112611ebe578182fd5b50813567ffffffffffffffff811115611ed5578182fd5b6020830191508360208260051b8501011115611ef057600080fd5b9250929050565b600082601f830112611f07578081fd5b81356020611f14826126cc565b604051611f218282612792565b8381528281019150858301600585901b87018401881015611f40578586fd5b855b85811015611f5e57813584529284019290840190600101611f42565b5090979650505050505050565b80358015158114611f7b57600080fd5b919050565b600082601f830112611f90578081fd5b813567ffffffffffffffff811115611faa57611faa6127f0565b604051611fc1601f8301601f191660200182612792565b818152846020838601011115611fd5578283fd5b816020850160208301379081016020019190915292915050565b600060208284031215612000578081fd5b8135610802816128a8565b6000806040838503121561201d578081fd5b8235612028816128a8565b91506020830135612038816128a8565b809150509250929050565b600080600080600060a0868803121561205a578081fd5b8535612065816128a8565b94506020860135612075816128a8565b9350604086013567ffffffffffffffff80821115612091578283fd5b61209d89838a01611ef7565b945060608801359150808211156120b2578283fd5b6120be89838a01611ef7565b935060808801359150808211156120d3578283fd5b506120e088828901611f80565b9150509295509295909350565b600080600080600060a08688031215612104578081fd5b853561210f816128a8565b9450602086013561211f816128a8565b93506040860135925060608601359150608086013567ffffffffffffffff811115612148578182fd5b6120e088828901611f80565b60008060408385031215612166578182fd5b8235612171816128a8565b915061217f60208401611f6b565b90509250929050565b6000806040838503121561219a578182fd5b82356121a5816128a8565b946020939093013593505050565b600080600080604085870312156121c8578182fd5b843567ffffffffffffffff808211156121df578384fd5b6121eb88838901611ead565b90965094506020870135915080821115612203578384fd5b5061221087828801611ead565b95989497509550505050565b6000806040838503121561222e578182fd5b823567ffffffffffffffff80821115612245578384fd5b818501915085601f830112612258578384fd5b81356020612265826126cc565b6040516122728282612792565b8381528281019150858301600585901b870184018b1015612291578889fd5b8896505b848710156122bc5780356122a8816128a8565b835260019690960195918301918301612295565b50965050860135925050808211156122d2578283fd5b506122df85828601611ef7565b9150509250929050565b6000602082840312156122fa578081fd5b61080282611f6b565b600060208284031215612314578081fd5b8135610802816128bd565b600060208284031215612330578081fd5b8151610802816128bd565b60006020828403121561234c578081fd5b813567ffffffffffffffff811115612362578182fd5b61236e84828501611f80565b949350505050565b600060208284031215612387578081fd5b5035919050565b600080604083850312156123a0578182fd5b50508035926020909101359150565b6000806000606084860312156123c3578081fd5b8335925060208401359150604084013567ffffffffffffffff8111156123e7578182fd5b6123f386828701611f80565b9150509250925092565b6000815180845260208085019450808401835b8381101561242c57815187529582019590820190600101612410565b509495945050505050565b6000815180845261244f816020860160208601612727565b601f01601f19169290920160200192915050565b60008351612475818460208801612727565b835190830190612489818360208801612727565b01949350505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906124be908301866123fd565b82810360608401526124d081866123fd565b905082810360808401526124e48185612437565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061252a90830184612437565b979650505050505050565b60208152600061080260208301846123fd565b60408152600061255b60408301856123fd565b828103602084015261256d81856123fd565b95945050505050565b6020815260006108026020830184612437565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600067ffffffffffffffff8211156126e6576126e66127f0565b5060051b60200190565b60008219821115612703576127036127da565b500190565b6000816000190483118215151615612722576127226127da565b500290565b60005b8381101561274257818101518382015260200161272a565b83811115612751576000848401525b50505050565b600181811c9082168061276b57607f821691505b6020821081141561278c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156127b8576127b86127f0565b6040525050565b60006000198214156127d3576127d36127da565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561281b57600481823e5160e01c5b90565b600060443d101561282c5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561285c57505050505090565b82850191508151818111156128745750505050505090565b843d870101602082850101111561288e5750505050505090565b61289d60208286010187612792565b509095945050505050565b6001600160a01b0381168114610d1e57600080fd5b6001600160e01b031981168114610d1e57600080fdfea2646970667358221220cd2e61d994a4cd61e1a939980677915bb0b73dcc5d1b689539501cb3da02e2eb64736f6c63430008040033

Deployed Bytecode Sourcemap

39314:4873:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19057:231;;;;;;;;;;-1:-1:-1;19057:231:0;;;;;:::i;:::-;;:::i;:::-;;;24727:25:1;;;24715:2;24700:18;19057:231:0;;;;;;;;18080:310;;;;;;;;;;-1:-1:-1;18080:310:0;;;;;:::i;:::-;;:::i;:::-;;;13520:14:1;;13513:22;13495:41;;13483:2;13468:18;18080:310:0;13450:92:1;39839:18:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40414:233::-;;;;;;;;;;-1:-1:-1;40414:233:0;;;;;:::i;:::-;;:::i;41236:506::-;;;;;;:::i;:::-;;:::i;:::-;;21152:442;;;;;;;;;;-1:-1:-1;21152:442:0;;;;;:::i;:::-;;:::i;42423:421::-;;;;;;;;;;-1:-1:-1;42423:421:0;;;;;:::i;:::-;;:::i;43789:227::-;;;;;;;;;;-1:-1:-1;43789:227:0;;;;;:::i;:::-;;:::i;43601:91::-;;;;;;;;;;;;;:::i;44104:80::-;;;;;;;;;;;;;:::i;19454:524::-;;;;;;;;;;-1:-1:-1;19454:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43042:537::-;;;;;;;;;;-1:-1:-1;43042:537:0;;;;;:::i;:::-;;:::i;35938:86::-;;;;;;;;;;-1:-1:-1;36009:7:0;;;;35938:86;;43698:85;;;;;;;;;;;;;:::i;44022:76::-;;;;;;;;;;;;;:::i;40778:115::-;;;;;;;;;;-1:-1:-1;40778:115:0;;;;;:::i;:::-;40837:7;40864:21;;;:12;:21;;;;;;;40778:115;38034:87;;;;;;;;;;-1:-1:-1;38107:6:0;;;;;-1:-1:-1;;;;;38107:6:0;38034:87;;-1:-1:-1;;;;;10890:32:1;;;10872:51;;10860:2;10845:18;38034:87:0;10827:102:1;39864:20:0;;;;;;;;;;;;;:::i;20051:311::-;;;;;;;;;;-1:-1:-1;20051:311:0;;;;;:::i;:::-;;:::i;42869:105::-;;;;;;;;;;-1:-1:-1;42869:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;42950:16:0;42926:4;42950:16;;;:8;:16;;;;;;;;;42869:105;40653:119;;;;;;;;;;-1:-1:-1;40653:119:0;;;;;:::i;:::-;40714:7;40741:23;;;:14;:23;;;;;;;40653:119;39741:43;;;;;;;;;;;;39782:2;39741:43;;41804:566;;;;;;;;;;-1:-1:-1;41804:566:0;;;;;:::i;:::-;;:::i;40915:176::-;;;;;;;;;;-1:-1:-1;40915:176:0;;;;;:::i;:::-;;:::i;20434:168::-;;;;;;;;;;-1:-1:-1;20434:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;20557:27:0;;;20533:4;20557:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;20434:168;41097:96;;;;;;;;;;-1:-1:-1;41173:12:0;;41097:96;;20674:401;;;;;;;;;;-1:-1:-1;20674:401:0;;;;;:::i;:::-;;:::i;38934:192::-;;;;;;;;;;-1:-1:-1;38934:192:0;;;;;:::i;:::-;;:::i;19057:231::-;19143:7;-1:-1:-1;;;;;19171:21:0;;19163:77;;;;-1:-1:-1;;;19163:77:0;;16187:2:1;19163:77:0;;;16169:21:1;16226:2;16206:18;;;16199:30;16265:34;16245:18;;;16238:62;-1:-1:-1;;;16316:18:1;;;16309:41;16367:19;;19163:77:0;;;;;;;;;-1:-1:-1;19258:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;19258:22:0;;;;;;;;;;;;19057:231::o;18080:310::-;18182:4;-1:-1:-1;;;;;;18219:41:0;;-1:-1:-1;;;18219:41:0;;:110;;-1:-1:-1;;;;;;;18277:52:0;;-1:-1:-1;;;18277:52:0;18219:110;:163;;;-1:-1:-1;;;;;;;;;;17105:40:0;;;18346:36;18199:183;18080:310;-1:-1:-1;;18080:310:0:o;39839:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40414:233::-;40500:22;40525:16;;;:7;:16;;;;;40500:41;;40474:13;;40500:22;40525:16;40500:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40586:1;40567:8;40561:22;:26;:78;;;;;;;;;;;;;;;;;40614:8;;;;;;;;;;;;;-1:-1:-1;;;40614:8:0;;;40624;40597:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40561:78;40554:85;40414:233;-1:-1:-1;;;40414:233:0:o;41236:506::-;34010:1;34606:7;;:19;;34598:63;;;;-1:-1:-1;;;34598:63:0;;;;;;;:::i;:::-;34010:1;34739:7;:18;36009:7;;;;36263:9:::1;36255:38;;;::::0;-1:-1:-1;;;36255:38:0;;18101:2:1;36255:38:0::1;::::0;::::1;18083:21:1::0;18140:2;18120:18;;;18113:30;-1:-1:-1;;;18159:18:1;;;18152:46;18215:18;;36255:38:0::1;18073:166:1::0;36255:38:0::1;41353:1:::2;41345:5;:9;:36;;;;;39782:2;41358:5;:23;;41345:36;41337:67;;;::::0;-1:-1:-1;;;41337:67:0;;21065:2:1;41337:67:0::2;::::0;::::2;21047:21:1::0;21104:2;21084:18;;;21077:30;-1:-1:-1;;;21123:18:1;;;21116:48;21181:18;;41337:67:0::2;21037:168:1::0;41337:67:0::2;41415:22;41440:21:::0;;;:12:::2;:21;::::0;;;;;41497:1:::2;41480:18:::0;::::2;:71:::0;::::2;;;-1:-1:-1::0;41502:23:0::2;::::0;;;:14:::2;:23;::::0;;;;;41537:14;;41502:31:::2;::::0;41528:5;;41502:31:::2;:::i;:::-;:49;;41480:71;41472:93;;;::::0;-1:-1:-1;;;41472:93:0;;21773:2:1;41472:93:0::2;::::0;::::2;21755:21:1::0;21812:1;21792:18;;;21785:29;-1:-1:-1;;;21830:18:1;;;21823:39;21879:18;;41472:93:0::2;21745:158:1::0;41472:93:0::2;41597:16;::::0;;;:7:::2;:16;::::0;;;;;:24:::2;::::0;41616:5;;41597:24:::2;:::i;:::-;41584:9;:37;41576:61;;;::::0;-1:-1:-1;;;41576:61:0;;17416:2:1;41576:61:0::2;::::0;::::2;17398:21:1::0;17455:2;17435:18;;;17428:30;-1:-1:-1;;;17474:18:1;;;17467:41;17525:18;;41576:61:0::2;17388:161:1::0;41576:61:0::2;41650:23;::::0;;;:14:::2;:23;::::0;;;;:32;;41677:5;;41650:23;:32:::2;::::0;41677:5;;41650:32:::2;:::i;:::-;::::0;;;-1:-1:-1;41695:39:0::2;::::0;-1:-1:-1;16164:10:0;41715:7:::2;41724:5;41695:39;;;;;;;;;;;::::0;:5:::2;:39::i;:::-;-1:-1:-1::0;;33966:1:0;34918:7;:22;-1:-1:-1;41236:506:0:o;21152:442::-;-1:-1:-1;;;;;21385:20:0;;16164:10;21385:20;;:60;;-1:-1:-1;21409:36:0;21426:4;16164:10;20434:168;:::i;21409:36::-;21363:160;;;;-1:-1:-1;;;21363:160:0;;19199:2:1;21363:160:0;;;19181:21:1;19238:2;19218:18;;;19211:30;19277:34;19257:18;;;19250:62;-1:-1:-1;;;19328:18:1;;;19321:48;19386:19;;21363:160:0;19171:240:1;21363:160:0;21534:52;21557:4;21563:2;21567:3;21572:7;21581:4;21534:22;:52::i;:::-;21152:442;;;;;:::o;42423:421::-;34010:1;34606:7;;:19;;34598:63;;;;-1:-1:-1;;;34598:63:0;;;;;;;:::i;:::-;34010:1;34739:7;:18;16164:10;40123:22:::1;::::0;;;:8:::1;:22;::::0;;;;;::::1;;40118:111;;38107:6:::0;;-1:-1:-1;;;;;38107:6:0;;;;;16164:10;40170:23:::1;40162:55;;;::::0;-1:-1:-1;;;40162:55:0;;15839:2:1;40162:55:0::1;::::0;::::1;15821:21:1::0;15878:2;15858:18;;;15851:30;-1:-1:-1;;;15897:18:1;;;15890:49;15956:18;;40162:55:0::1;15811:169:1::0;40162:55:0::1;42514:15:::2;42534:12;;42532:14;;;;;:::i;:::-;::::0;;;;-1:-1:-1;42565:21:0::2;::::0;;;:12:::2;:21;::::0;;;;;42532:14;;-1:-1:-1;42565:26:0;42557:53:::2;;;::::0;-1:-1:-1;;;42557:53:0;;14803:2:1;42557:53:0::2;::::0;::::2;14785:21:1::0;14842:2;14822:18;;;14815:30;-1:-1:-1;;;14861:18:1;;;14854:44;14915:18;;42557:53:0::2;14775:164:1::0;42557:53:0::2;42654:1;42635:8;42629:22;:26;42621:53;;;::::0;-1:-1:-1;;;42621:53:0;;22930:2:1;42621:53:0::2;::::0;::::2;22912:21:1::0;22969:2;22949:18;;;22942:30;-1:-1:-1;;;22988:18:1;;;22981:44;23042:18;;42621:53:0::2;22902:164:1::0;42621:53:0::2;42687:23;::::0;;;:14:::2;:23;::::0;;;;;;;42713:1:::2;42687:27:::0;;;;42725:12:::2;:21:::0;;;;;:25;42761:7:::2;:16:::0;;;;;:27;;::::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;42801:35:0::2;16164:10:::0;42821:7:::2;42830:1;42801:35;;;;;;;;;;;::::0;:5:::2;:35::i;:::-;-1:-1:-1::0;;33966:1:0;34918:7;:22;42423:421::o;43789:227::-;34010:1;34606:7;;:19;;34598:63;;;;-1:-1:-1;;;34598:63:0;;;;;;;:::i;:::-;34010:1;34739:7;:18;38107:6;;-1:-1:-1;;;;;38107:6:0;;;;;16164:10;38254:23:::1;38246:68;;;;-1:-1:-1::0;;;38246:68:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43894:24:0;::::2;::::0;;::::2;::::0;:55:::2;;-1:-1:-1::0;;;;;;43922:27:0;::::2;43944:4;43922:27;;43894:55;43886:83;;;::::0;-1:-1:-1;;;43886:83:0;;15495:2:1;43886:83:0::2;::::0;::::2;15477:21:1::0;15534:2;15514:18;;;15507:30;-1:-1:-1;;;15553:18:1;;;15546:45;15608:18;;43886:83:0::2;15467:165:1::0;43886:83:0::2;43982:13;:26:::0;;-1:-1:-1;;;;;;43982:26:0::2;-1:-1:-1::0;;;;;43982:26:0;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;34918:7:0;:22;43789:227::o;43601:91::-;43639:13;;:45;;-1:-1:-1;;;;;43639:13:0;;;;43662:21;43639:45;;;;;:13;:45;:13;:45;43662:21;43639:13;:45;;;;;;;;;;;;;;;;;;;;;43601:91::o;44104:80::-;34010:1;34606:7;;:19;;34598:63;;;;-1:-1:-1;;;34598:63:0;;;;;;;:::i;:::-;34010:1;34739:7;:18;38107:6;;-1:-1:-1;;;;;38107:6:0;;;;;16164:10;38254:23:::1;38246:68;;;;-1:-1:-1::0;;;38246:68:0::1;;;;;;;:::i;:::-;44166:10:::2;:8;:10::i;:::-;33966:1:::0;34918:7;:22;44104:80::o;19454:524::-;19610:16;19671:3;:10;19652:8;:15;:29;19644:83;;;;-1:-1:-1;;;19644:83:0;;22520:2:1;19644:83:0;;;22502:21:1;22559:2;22539:18;;;22532:30;22598:34;22578:18;;;22571:62;-1:-1:-1;;;22649:18:1;;;22642:39;22698:19;;19644:83:0;22492:231:1;19644:83:0;19740:30;19787:8;:15;19773:30;;;;;;-1:-1:-1;;;19773:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19773:30:0;;19740:63;;19821:9;19816:122;19840:8;:15;19836:1;:19;19816:122;;;19896:30;19906:8;19915:1;19906:11;;;;;;-1:-1:-1;;;19906:11:0;;;;;;;;;;;;;;;19919:3;19923:1;19919:6;;;;;;-1:-1:-1;;;19919:6:0;;;;;;;;;;;;;;;19896:9;:30::i;:::-;19877:13;19891:1;19877:16;;;;;;-1:-1:-1;;;19877:16:0;;;;;;;;;;;;;;;;;;:49;19857:3;;;:::i;:::-;;;19816:122;;;-1:-1:-1;19957:13:0;19454:524;-1:-1:-1;;;19454:524:0:o;43042:537::-;34010:1;34606:7;;:19;;34598:63;;;;-1:-1:-1;;;34598:63:0;;;;;;;:::i;:::-;34010:1;34739:7;:18;38107:6;;-1:-1:-1;;;;;38107:6:0;;;;;16164:10;38254:23:::1;38246:68;;;;-1:-1:-1::0;;;38246:68:0::1;;;;;;;:::i;:::-;43177:7:::0;43210:9;43202:32:::2;;;::::0;-1:-1:-1;;;43202:32:0;;24444:2:1;43202:32:0::2;::::0;::::2;24426:21:1::0;24483:2;24463:18;;;24456:30;-1:-1:-1;;;24502:18:1;;;24495:40;24552:18;;43202:32:0::2;24416:160:1::0;43202:32:0::2;43253:25:::0;;::::2;43245:56;;;::::0;-1:-1:-1;;;43245:56:0;;19963:2:1;43245:56:0::2;::::0;::::2;19945:21:1::0;20002:2;19982:18;;;19975:30;-1:-1:-1;;;20021:18:1;;;20014:48;20079:18;;43245:56:0::2;19935:168:1::0;43245:56:0::2;43314:14;43339:13:::0;43368:9:::2;43363:209;43383:5;43379:1;:9;43363:209;;;43419:7;;43427:1;43419:10;;;;;-1:-1:-1::0;;;43419:10:0::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43410:19;;43455:9;;43465:1;43455:12;;;;;-1:-1:-1::0;;;43455:12:0::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43482:16:0;::::2;;::::0;;;:8:::2;:16;::::0;;;;;;;;:27;;-1:-1:-1;;43482:27:0::2;::::0;::::2;;::::0;;::::2;::::0;;;43531:29;;12498:51:1;;;12565:18;;;12558:50;43482:27:0;;-1:-1:-1;43531:29:0::2;::::0;12471:18:1;43531:29:0::2;;;;;;;43390:3:::0;::::2;::::0;::::2;:::i;:::-;;;;43363:209;;;-1:-1:-1::0;;33966:1:0;34918:7;:22;-1:-1:-1;;;;;;43042:537:0:o;43698:85::-;34010:1;34606:7;;:19;;34598:63;;;;-1:-1:-1;;;34598:63:0;;;;;;;:::i;:::-;34010:1;34739:7;:18;43767:8:::1;::::0;::::1;44022:76:::0;34010:1;34606:7;;:19;;34598:63;;;;-1:-1:-1;;;34598:63:0;;;;;;;:::i;:::-;34010:1;34739:7;:18;38107:6;;-1:-1:-1;;;;;38107:6:0;;;;;16164:10;38254:23:::1;38246:68;;;;-1:-1:-1::0;;;38246:68:0::1;;;;;;;:::i;:::-;44082:8:::2;:6;:8::i;39864:20::-:0;;;;;;;:::i;20051:311::-;16164:10;-1:-1:-1;;;;;20154:24:0;;;;20146:78;;;;-1:-1:-1;;;20146:78:0;;22110:2:1;20146:78:0;;;22092:21:1;22149:2;22129:18;;;22122:30;22188:34;22168:18;;;22161:62;-1:-1:-1;;;22239:18:1;;;22232:39;22288:19;;20146:78:0;22082:231:1;20146:78:0;16164:10;20237:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;20237:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;20237:53:0;;;;;;;;;;20306:48;;13495:41:1;;;20237:42:0;;16164:10;20306:48;;13468:18:1;20306:48:0;;;;;;;20051:311;;:::o;41804:566::-;34010:1;34606:7;;:19;;34598:63;;;;-1:-1:-1;;;34598:63:0;;;;;;;:::i;:::-;34010:1;34739:7;:18;16164:10;40123:22:::1;::::0;;;:8:::1;:22;::::0;;;;;::::1;;40118:111;;38107:6:::0;;-1:-1:-1;;;;;38107:6:0;;;;;16164:10;40170:23:::1;40162:55;;;::::0;-1:-1:-1;;;40162:55:0;;15839:2:1;40162:55:0::1;::::0;::::1;15821:21:1::0;15878:2;15858:18;;;15851:30;-1:-1:-1;;;15897:18:1;;;15890:49;15956:18;;40162:55:0::1;15811:169:1::0;40162:55:0::1;41930:15:::2;41950:12;;41948:14;;;;;:::i;:::-;::::0;;;;-1:-1:-1;41981:21:0::2;::::0;;;:12:::2;:21;::::0;;;;;41948:14;;-1:-1:-1;41981:26:0;41973:55:::2;;;::::0;-1:-1:-1;;;41973:55:0;;19618:2:1;41973:55:0::2;::::0;::::2;19600:21:1::0;19657:2;19637:18;;;19630:30;-1:-1:-1;;;19676:18:1;;;19669:46;19732:18;;41973:55:0::2;19590:166:1::0;41973:55:0::2;42055:1;42047:5;:9;42039:37;;;::::0;-1:-1:-1;;;42039:37:0;;20721:2:1;42039:37:0::2;::::0;::::2;20703:21:1::0;20760:2;20740:18;;;20733:30;-1:-1:-1;;;20779:18:1;;;20772:45;20834:18;;42039:37:0::2;20693:165:1::0;42039:37:0::2;42103:1;42095:5;:9;42087:40;;;::::0;-1:-1:-1;;;42087:40:0;;18852:2:1;42087:40:0::2;::::0;::::2;18834:21:1::0;18891:2;18871:18;;;18864:30;-1:-1:-1;;;18910:18:1;;;18903:48;18968:18;;42087:40:0::2;18824:168:1::0;42087:40:0::2;42171:1;42152:8;42146:22;:26;42138:53;;;::::0;-1:-1:-1;;;42138:53:0;;22930:2:1;42138:53:0::2;::::0;::::2;22912:21:1::0;22969:2;22949:18;;;22942:30;-1:-1:-1;;;22988:18:1;;;22981:44;23042:18;;42138:53:0::2;22902:164:1::0;42138:53:0::2;42204:21;::::0;;;:12:::2;:21;::::0;;;;;;;:29;;;42244:7:::2;:16:::0;;;;;:24;;;42279:7:::2;:16:::0;;;;;:27;;::::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;42324:38:0::2;::::0;;25218:25:1;;;25274:2;25259:18;;25252:34;;;25302:18;;;25295:34;;;42324:38:0::2;::::0;25206:2:1;25191:18;42324:38:0::2;;;;;;;-1:-1:-1::0;;33966:1:0;34918:7;:22;-1:-1:-1;;41804:566:0:o;40915:176::-;40973:7;41001:21;;;:12;:21;;;;;;41025:1;-1:-1:-1;40993:54:0;;;;-1:-1:-1;;;40993:54:0;;17756:2:1;40993:54:0;;;17738:21:1;17795:2;17775:18;;;17768:30;-1:-1:-1;;;17814:18:1;;;17807:46;17870:18;;40993:54:0;17728:166:1;40993:54:0;-1:-1:-1;41067:16:0;;;;:7;:16;;;;;;;40915:176::o;20674:401::-;-1:-1:-1;;;;;20882:20:0;;16164:10;20882:20;;:60;;-1:-1:-1;20906:36:0;20923:4;16164:10;20434:168;:::i;20906:36::-;20860:151;;;;-1:-1:-1;;;20860:151:0;;17006:2:1;20860:151:0;;;16988:21:1;17045:2;17025:18;;;17018:30;17084:34;17064:18;;;17057:62;-1:-1:-1;;;17135:18:1;;;17128:39;17184:19;;20860:151:0;16978:231:1;20860:151:0;21022:45;21040:4;21046:2;21050;21054:6;21062:4;21022:17;:45::i;38934:192::-;38107:6;;-1:-1:-1;;;;;38107:6:0;;;;;16164:10;38254:23;38246:68;;;;-1:-1:-1;;;38246:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39023:22:0;::::1;39015:73;;;::::0;-1:-1:-1;;;39015:73:0;;16599:2:1;39015:73:0::1;::::0;::::1;16581:21:1::0;16638:2;16618:18;;;16611:30;16677:34;16657:18;;;16650:62;-1:-1:-1;;;16728:18:1;;;16721:36;16774:19;;39015:73:0::1;16571:228:1::0;39015:73:0::1;39099:19;39109:8;39099:9;:19::i;25643:599::-:0;-1:-1:-1;;;;;25801:21:0;;25793:67;;;;-1:-1:-1;;;25793:67:0;;23682:2:1;25793:67:0;;;23664:21:1;23721:2;23701:18;;;23694:30;23760:34;23740:18;;;23733:62;-1:-1:-1;;;23811:18:1;;;23804:31;23852:19;;25793:67:0;23654:223:1;25793:67:0;16164:10;25917:107;16164:10;25873:16;25960:7;25969:21;25987:2;25969:17;:21::i;:::-;25992:25;26010:6;25992:17;:25::i;25917:107::-;26037:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26037:22:0;;;;;;;;;:32;;26063:6;;26037:9;:32;;26063:6;;26037:32;:::i;:::-;;;;-1:-1:-1;;26085:57:0;;;24937:25:1;;;24993:2;24978:18;;24971:34;;;-1:-1:-1;;;;;26085:57:0;;;;26118:1;;26085:57;;;;;;24910:18:1;26085:57:0;;;;;;;26155:79;26186:8;26204:1;26208:7;26217:2;26221:6;26229:4;26155:30;:79::i;23236:1074::-;23463:7;:14;23449:3;:10;:28;23441:81;;;;-1:-1:-1;;;23441:81:0;;23273:2:1;23441:81:0;;;23255:21:1;23312:2;23292:18;;;23285:30;23351:34;23331:18;;;23324:62;-1:-1:-1;;;23402:18:1;;;23395:38;23450:19;;23441:81:0;23245:230:1;23441:81:0;-1:-1:-1;;;;;23541:16:0;;23533:66;;;;-1:-1:-1;;;23533:66:0;;;;;;;:::i;:::-;16164:10;23612:16;23729:421;23753:3;:10;23749:1;:14;23729:421;;;23785:10;23798:3;23802:1;23798:6;;;;;;-1:-1:-1;;;23798:6:0;;;;;;;;;;;;;;;23785:19;;23819:14;23836:7;23844:1;23836:10;;;;;;-1:-1:-1;;;23836:10:0;;;;;;;;;;;;;;;;;;;;23863:19;23885:13;;;;;;;;;;-1:-1:-1;;;;;23885:19:0;;;;;;;;;;;;23836:10;;-1:-1:-1;23927:21:0;;;;23919:76;;;;-1:-1:-1;;;23919:76:0;;;;;;;:::i;:::-;24039:9;:13;;;;;;;;;;;-1:-1:-1;;;;;24039:19:0;;;;;;;;;;24061:20;;;24039:42;;24111:17;;;;;;;:27;;24061:20;;24039:9;24111:27;;24061:20;;24111:27;:::i;:::-;;;;;;;;23729:421;;;23765:3;;;;:::i;:::-;;;23729:421;;;;24197:2;-1:-1:-1;;;;;24167:47:0;24191:4;-1:-1:-1;;;;;24167:47:0;24181:8;-1:-1:-1;;;;;24167:47:0;;24201:3;24206:7;24167:47;;;;;;;:::i;:::-;;;;;;;;24227:75;24263:8;24273:4;24279:2;24283:3;24288:7;24297:4;24227:35;:75::i;:::-;23236:1074;;;;;;:::o;36997:120::-;36009:7;;;;36533:41;;;;-1:-1:-1;;;36533:41:0;;15146:2:1;36533:41:0;;;15128:21:1;15185:2;15165:18;;;15158:30;-1:-1:-1;;;15204:18:1;;;15197:50;15264:18;;36533:41:0;15118:170:1;36533:41:0;37056:7:::1;:15:::0;;-1:-1:-1;;37056:15:0::1;::::0;;37087:22:::1;16164:10:::0;37096:12:::1;37087:22;::::0;-1:-1:-1;;;;;10890:32:1;;;10872:51;;10860:2;10845:18;37087:22:0::1;;;;;;;36997:120::o:0;36738:118::-;36009:7;;;;36263:9;36255:38;;;;-1:-1:-1;;;36255:38:0;;18101:2:1;36255:38:0;;;18083:21:1;18140:2;18120:18;;;18113:30;-1:-1:-1;;;18159:18:1;;;18152:46;18215:18;;36255:38:0;18073:166:1;36255:38:0;36798:7:::1;:14:::0;;-1:-1:-1;;36798:14:0::1;36808:4;36798:14;::::0;;36828:20:::1;36835:12;16164:10:::0;;16084:98;22058:820;-1:-1:-1;;;;;22246:16:0;;22238:66;;;;-1:-1:-1;;;22238:66:0;;;;;;;:::i;:::-;16164:10;22361:96;16164:10;22392:4;22398:2;22402:21;22420:2;22402:17;:21::i;22361:96::-;22470:19;22492:13;;;;;;;;;;;-1:-1:-1;;;;;22492:19:0;;;;;;;;;;22530:21;;;;22522:76;;;;-1:-1:-1;;;22522:76:0;;;;;;;:::i;:::-;22634:9;:13;;;;;;;;;;;-1:-1:-1;;;;;22634:19:0;;;;;;;;;;22656:20;;;22634:42;;22698:17;;;;;;;:27;;22656:20;;22634:9;22698:27;;22656:20;;22698:27;:::i;:::-;;;;-1:-1:-1;;22743:46:0;;;24937:25:1;;;24993:2;24978:18;;24971:34;;;-1:-1:-1;;;;;22743:46:0;;;;;;;;;;;;;;24910:18:1;22743:46:0;;;;;;;22802:68;22833:8;22843:4;22849:2;22853;22857:6;22865:4;22802:30;:68::i;:::-;22058:820;;;;;;;:::o;39134:173::-;39209:6;;;-1:-1:-1;;;;;39226:17:0;;;39209:6;39226:17;;;-1:-1:-1;;;;;;39226:17:0;;;;;;39259:40;;39209:6;;;;;;;;39259:40;;39190:16;;39259:40;39134:173;;:::o;32154:198::-;32274:16;;;32288:1;32274:16;;;;;;;;;32220;;32249:22;;32274:16;;;;;;;;;;;;-1:-1:-1;32274:16:0;32249:41;;32312:7;32301:5;32307:1;32301:8;;;;;;-1:-1:-1;;;32301:8:0;;;;;;;;;;;;;;;;;;:18;32339:5;32154:198;-1:-1:-1;;32154:198:0:o;30573:748::-;-1:-1:-1;;;;;30788:13:0;;8754:20;8802:8;30784:530;;30824:72;;-1:-1:-1;;;30824:72:0;;-1:-1:-1;;;;;30824:38:0;;;;;:72;;30863:8;;30873:4;;30879:2;;30883:6;;30891:4;;30824:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30824:72:0;;;;;;;;-1:-1:-1;;30824:72:0;;;;;;;;;;;;:::i;:::-;;;30820:483;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;31176:6;31169:14;;-1:-1:-1;;;31169:14:0;;;;;;;;:::i;30820:483::-;;;31225:62;;-1:-1:-1;;;31225:62:0;;13973:2:1;31225:62:0;;;13955:21:1;14012:2;13992:18;;;13985:30;14051:34;14031:18;;;14024:62;-1:-1:-1;;;14102:18:1;;;14095:50;14162:19;;31225:62:0;13945:242:1;30820:483:0;-1:-1:-1;;;;;;30946:59:0;;-1:-1:-1;;;30946:59:0;30942:158;;31030:50;;-1:-1:-1;;;31030:50:0;;;;;;;:::i;31329:817::-;-1:-1:-1;;;;;31569:13:0;;8754:20;8802:8;31565:574;;31605:79;;-1:-1:-1;;;31605:79:0;;-1:-1:-1;;;;;31605:43:0;;;;;:79;;31649:8;;31659:4;;31665:3;;31670:7;;31679:4;;31605:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31605:79:0;;;;;;;;-1:-1:-1;;31605:79:0;;;;;;;;;;;;:::i;:::-;;;31601:527;;;;:::i;:::-;-1:-1:-1;;;;;;31766:64:0;;-1:-1:-1;;;31766:64:0;31762:163;;31855:50;;-1:-1:-1;;;31855:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:395:1;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:2;;166:8;156;149:26;108:2;-1:-1:-1;196:20:1;;239:18;228:30;;225:2;;;278:8;268;261:26;225:2;322:4;314:6;310:17;298:29;;382:3;375:4;365:6;362:1;358:14;350:6;346:27;342:38;339:47;336:2;;;399:1;396;389:12;336:2;98:311;;;;;:::o;414:755::-;468:5;521:3;514:4;506:6;502:17;498:27;488:2;;543:5;536;529:20;488:2;583:6;570:20;609:4;632:43;672:2;632:43;:::i;:::-;704:2;698:9;716:31;744:2;736:6;716:31;:::i;:::-;782:18;;;816:15;;;;-1:-1:-1;851:15:1;;;901:1;897:10;;;885:23;;881:32;;878:41;-1:-1:-1;875:2:1;;;936:5;929;922:20;875:2;962:5;976:163;990:2;987:1;984:9;976:163;;;1047:17;;1035:30;;1085:12;;;;1117;;;;1008:1;1001:9;976:163;;;-1:-1:-1;1157:6:1;;478:691;-1:-1:-1;;;;;;;478:691:1:o;1174:160::-;1239:20;;1295:13;;1288:21;1278:32;;1268:2;;1324:1;1321;1314:12;1268:2;1220:114;;;:::o;1339:575::-;1381:5;1434:3;1427:4;1419:6;1415:17;1411:27;1401:2;;1456:5;1449;1442:20;1401:2;1496:6;1483:20;1522:18;1518:2;1515:26;1512:2;;;1544:18;;:::i;:::-;1593:2;1587:9;1605:67;1660:2;1641:13;;-1:-1:-1;;1637:27:1;1666:4;1633:38;1587:9;1605:67;:::i;:::-;1696:2;1688:6;1681:18;1742:3;1735:4;1730:2;1722:6;1718:15;1714:26;1711:35;1708:2;;;1763:5;1756;1749:20;1708:2;1831;1824:4;1816:6;1812:17;1805:4;1797:6;1793:17;1780:54;1854:15;;;1871:4;1850:26;1843:41;;;;1858:6;1391:523;-1:-1:-1;;1391:523:1:o;1919:257::-;1978:6;2031:2;2019:9;2010:7;2006:23;2002:32;1999:2;;;2052:6;2044;2037:22;1999:2;2096:9;2083:23;2115:31;2140:5;2115:31;:::i;2451:398::-;2519:6;2527;2580:2;2568:9;2559:7;2555:23;2551:32;2548:2;;;2601:6;2593;2586:22;2548:2;2645:9;2632:23;2664:31;2689:5;2664:31;:::i;:::-;2714:5;-1:-1:-1;2771:2:1;2756:18;;2743:32;2784:33;2743:32;2784:33;:::i;:::-;2836:7;2826:17;;;2538:311;;;;;:::o;2854:1111::-;3008:6;3016;3024;3032;3040;3093:3;3081:9;3072:7;3068:23;3064:33;3061:2;;;3115:6;3107;3100:22;3061:2;3159:9;3146:23;3178:31;3203:5;3178:31;:::i;:::-;3228:5;-1:-1:-1;3285:2:1;3270:18;;3257:32;3298:33;3257:32;3298:33;:::i;:::-;3350:7;-1:-1:-1;3408:2:1;3393:18;;3380:32;3431:18;3461:14;;;3458:2;;;3493:6;3485;3478:22;3458:2;3521:61;3574:7;3565:6;3554:9;3550:22;3521:61;:::i;:::-;3511:71;;3635:2;3624:9;3620:18;3607:32;3591:48;;3664:2;3654:8;3651:16;3648:2;;;3685:6;3677;3670:22;3648:2;3713:63;3768:7;3757:8;3746:9;3742:24;3713:63;:::i;:::-;3703:73;;3829:3;3818:9;3814:19;3801:33;3785:49;;3859:2;3849:8;3846:16;3843:2;;;3880:6;3872;3865:22;3843:2;;3908:51;3951:7;3940:8;3929:9;3925:24;3908:51;:::i;:::-;3898:61;;;3051:914;;;;;;;;:::o;3970:754::-;4074:6;4082;4090;4098;4106;4159:3;4147:9;4138:7;4134:23;4130:33;4127:2;;;4181:6;4173;4166:22;4127:2;4225:9;4212:23;4244:31;4269:5;4244:31;:::i;:::-;4294:5;-1:-1:-1;4351:2:1;4336:18;;4323:32;4364:33;4323:32;4364:33;:::i;:::-;4416:7;-1:-1:-1;4470:2:1;4455:18;;4442:32;;-1:-1:-1;4521:2:1;4506:18;;4493:32;;-1:-1:-1;4576:3:1;4561:19;;4548:33;4604:18;4593:30;;4590:2;;;4641:6;4633;4626:22;4590:2;4669:49;4710:7;4701:6;4690:9;4686:22;4669:49;:::i;4729:325::-;4794:6;4802;4855:2;4843:9;4834:7;4830:23;4826:32;4823:2;;;4876:6;4868;4861:22;4823:2;4920:9;4907:23;4939:31;4964:5;4939:31;:::i;:::-;4989:5;-1:-1:-1;5013:35:1;5044:2;5029:18;;5013:35;:::i;:::-;5003:45;;4813:241;;;;;:::o;5059:325::-;5127:6;5135;5188:2;5176:9;5167:7;5163:23;5159:32;5156:2;;;5209:6;5201;5194:22;5156:2;5253:9;5240:23;5272:31;5297:5;5272:31;:::i;:::-;5322:5;5374:2;5359:18;;;;5346:32;;-1:-1:-1;;;5146:238:1:o;5389:800::-;5508:6;5516;5524;5532;5585:2;5573:9;5564:7;5560:23;5556:32;5553:2;;;5606:6;5598;5591:22;5553:2;5651:9;5638:23;5680:18;5721:2;5713:6;5710:14;5707:2;;;5742:6;5734;5727:22;5707:2;5786:70;5848:7;5839:6;5828:9;5824:22;5786:70;:::i;:::-;5875:8;;-1:-1:-1;5760:96:1;-1:-1:-1;5963:2:1;5948:18;;5935:32;;-1:-1:-1;5979:16:1;;;5976:2;;;6013:6;6005;5998:22;5976:2;;6057:72;6121:7;6110:8;6099:9;6095:24;6057:72;:::i;:::-;5543:646;;;;-1:-1:-1;6148:8:1;-1:-1:-1;;;;5543:646:1:o;6194:1343::-;6312:6;6320;6373:2;6361:9;6352:7;6348:23;6344:32;6341:2;;;6394:6;6386;6379:22;6341:2;6439:9;6426:23;6468:18;6509:2;6501:6;6498:14;6495:2;;;6530:6;6522;6515:22;6495:2;6573:6;6562:9;6558:22;6548:32;;6618:7;6611:4;6607:2;6603:13;6599:27;6589:2;;6645:6;6637;6630:22;6589:2;6686;6673:16;6708:4;6731:43;6771:2;6731:43;:::i;:::-;6803:2;6797:9;6815:31;6843:2;6835:6;6815:31;:::i;:::-;6881:18;;;6915:15;;;;-1:-1:-1;6950:11:1;;;6992:1;6988:10;;;6980:19;;6976:28;;6973:41;-1:-1:-1;6970:2:1;;;7032:6;7024;7017:22;6970:2;7059:6;7050:15;;7074:238;7088:2;7085:1;7082:9;7074:238;;;7159:3;7146:17;7176:31;7201:5;7176:31;:::i;:::-;7220:18;;7106:1;7099:9;;;;;7258:12;;;;7290;;7074:238;;;-1:-1:-1;7331:6:1;-1:-1:-1;;7375:18:1;;7362:32;;-1:-1:-1;;7406:16:1;;;7403:2;;;7440:6;7432;7425:22;7403:2;;7468:63;7523:7;7512:8;7501:9;7497:24;7468:63;:::i;:::-;7458:73;;;6331:1206;;;;;:::o;7542:190::-;7598:6;7651:2;7639:9;7630:7;7626:23;7622:32;7619:2;;;7672:6;7664;7657:22;7619:2;7700:26;7716:9;7700:26;:::i;7737:255::-;7795:6;7848:2;7836:9;7827:7;7823:23;7819:32;7816:2;;;7869:6;7861;7854:22;7816:2;7913:9;7900:23;7932:30;7956:5;7932:30;:::i;7997:259::-;8066:6;8119:2;8107:9;8098:7;8094:23;8090:32;8087:2;;;8140:6;8132;8125:22;8087:2;8177:9;8171:16;8196:30;8220:5;8196:30;:::i;8261:341::-;8330:6;8383:2;8371:9;8362:7;8358:23;8354:32;8351:2;;;8404:6;8396;8389:22;8351:2;8449:9;8436:23;8482:18;8474:6;8471:30;8468:2;;;8519:6;8511;8504:22;8468:2;8547:49;8588:7;8579:6;8568:9;8564:22;8547:49;:::i;:::-;8537:59;8341:261;-1:-1:-1;;;;8341:261:1:o;8607:190::-;8666:6;8719:2;8707:9;8698:7;8694:23;8690:32;8687:2;;;8740:6;8732;8725:22;8687:2;-1:-1:-1;8768:23:1;;8677:120;-1:-1:-1;8677:120:1:o;8802:258::-;8870:6;8878;8931:2;8919:9;8910:7;8906:23;8902:32;8899:2;;;8952:6;8944;8937:22;8899:2;-1:-1:-1;;8980:23:1;;;9050:2;9035:18;;;9022:32;;-1:-1:-1;8889:171:1:o;9065:477::-;9152:6;9160;9168;9221:2;9209:9;9200:7;9196:23;9192:32;9189:2;;;9242:6;9234;9227:22;9189:2;9283:9;9270:23;9260:33;;9340:2;9329:9;9325:18;9312:32;9302:42;;9395:2;9384:9;9380:18;9367:32;9422:18;9414:6;9411:30;9408:2;;;9459:6;9451;9444:22;9408:2;9487:49;9528:7;9519:6;9508:9;9504:22;9487:49;:::i;:::-;9477:59;;;9179:363;;;;;:::o;9547:437::-;9600:3;9638:5;9632:12;9665:6;9660:3;9653:19;9691:4;9720:2;9715:3;9711:12;9704:19;;9757:2;9750:5;9746:14;9778:3;9790:169;9804:6;9801:1;9798:13;9790:169;;;9865:13;;9853:26;;9899:12;;;;9934:15;;;;9826:1;9819:9;9790:169;;;-1:-1:-1;9975:3:1;;9608:376;-1:-1:-1;;;;;9608:376:1:o;9989:257::-;10030:3;10068:5;10062:12;10095:6;10090:3;10083:19;10111:63;10167:6;10160:4;10155:3;10151:14;10144:4;10137:5;10133:16;10111:63;:::i;:::-;10228:2;10207:15;-1:-1:-1;;10203:29:1;10194:39;;;;10235:4;10190:50;;10038:208;-1:-1:-1;;10038:208:1:o;10251:470::-;10430:3;10468:6;10462:13;10484:53;10530:6;10525:3;10518:4;10510:6;10506:17;10484:53;:::i;:::-;10600:13;;10559:16;;;;10622:57;10600:13;10559:16;10656:4;10644:17;;10622:57;:::i;:::-;10695:20;;10438:283;-1:-1:-1;;;;10438:283:1:o;10934:826::-;-1:-1:-1;;;;;11331:15:1;;;11313:34;;11383:15;;11378:2;11363:18;;11356:43;11293:3;11430:2;11415:18;;11408:31;;;11256:4;;11462:57;;11499:19;;11491:6;11462:57;:::i;:::-;11567:9;11559:6;11555:22;11550:2;11539:9;11535:18;11528:50;11601:44;11638:6;11630;11601:44;:::i;:::-;11587:58;;11694:9;11686:6;11682:22;11676:3;11665:9;11661:19;11654:51;11722:32;11747:6;11739;11722:32;:::i;:::-;11714:40;11265:495;-1:-1:-1;;;;;;;;11265:495:1:o;11765:560::-;-1:-1:-1;;;;;12062:15:1;;;12044:34;;12114:15;;12109:2;12094:18;;12087:43;12161:2;12146:18;;12139:34;;;12204:2;12189:18;;12182:34;;;12024:3;12247;12232:19;;12225:32;;;11987:4;;12274:45;;12299:19;;12291:6;12274:45;:::i;:::-;12266:53;11996:329;-1:-1:-1;;;;;;;11996:329:1:o;12619:261::-;12798:2;12787:9;12780:21;12761:4;12818:56;12870:2;12859:9;12855:18;12847:6;12818:56;:::i;12885:465::-;13142:2;13131:9;13124:21;13105:4;13168:56;13220:2;13209:9;13205:18;13197:6;13168:56;:::i;:::-;13272:9;13264:6;13260:22;13255:2;13244:9;13240:18;13233:50;13300:44;13337:6;13329;13300:44;:::i;:::-;13292:52;13114:236;-1:-1:-1;;;;;13114:236:1:o;13547:219::-;13696:2;13685:9;13678:21;13659:4;13716:44;13756:2;13745:9;13741:18;13733:6;13716:44;:::i;14192:404::-;14394:2;14376:21;;;14433:2;14413:18;;;14406:30;14472:34;14467:2;14452:18;;14445:62;-1:-1:-1;;;14538:2:1;14523:18;;14516:38;14586:3;14571:19;;14366:230::o;18244:401::-;18446:2;18428:21;;;18485:2;18465:18;;;18458:30;18524:34;18519:2;18504:18;;18497:62;-1:-1:-1;;;18590:2:1;18575:18;;18568:35;18635:3;18620:19;;18418:227::o;20108:406::-;20310:2;20292:21;;;20349:2;20329:18;;;20322:30;20388:34;20383:2;20368:18;;20361:62;-1:-1:-1;;;20454:2:1;20439:18;;20432:40;20504:3;20489:19;;20282:232::o;21210:356::-;21412:2;21394:21;;;21431:18;;;21424:30;21490:34;21485:2;21470:18;;21463:62;21557:2;21542:18;;21384:182::o;23882:355::-;24084:2;24066:21;;;24123:2;24103:18;;;24096:30;24162:33;24157:2;24142:18;;24135:61;24228:2;24213:18;;24056:181::o;25340:183::-;25400:4;25433:18;25425:6;25422:30;25419:2;;;25455:18;;:::i;:::-;-1:-1:-1;25500:1:1;25496:14;25512:4;25492:25;;25409:114::o;25528:128::-;25568:3;25599:1;25595:6;25592:1;25589:13;25586:2;;;25605:18;;:::i;:::-;-1:-1:-1;25641:9:1;;25576:80::o;25661:168::-;25701:7;25767:1;25763;25759:6;25755:14;25752:1;25749:21;25744:1;25737:9;25730:17;25726:45;25723:2;;;25774:18;;:::i;:::-;-1:-1:-1;25814:9:1;;25713:116::o;25834:258::-;25906:1;25916:113;25930:6;25927:1;25924:13;25916:113;;;26006:11;;;26000:18;25987:11;;;25980:39;25952:2;25945:10;25916:113;;;26047:6;26044:1;26041:13;26038:2;;;26082:1;26073:6;26068:3;26064:16;26057:27;26038:2;;25887:205;;;:::o;26097:380::-;26176:1;26172:12;;;;26219;;;26240:2;;26294:4;26286:6;26282:17;26272:27;;26240:2;26347;26339:6;26336:14;26316:18;26313:38;26310:2;;;26393:10;26388:3;26384:20;26381:1;26374:31;26428:4;26425:1;26418:15;26456:4;26453:1;26446:15;26310:2;;26152:325;;;:::o;26482:249::-;26592:2;26573:13;;-1:-1:-1;;26569:27:1;26557:40;;26627:18;26612:34;;26648:22;;;26609:62;26606:2;;;26674:18;;:::i;:::-;26710:2;26703:22;-1:-1:-1;;26529:202:1:o;26736:135::-;26775:3;-1:-1:-1;;26796:17:1;;26793:2;;;26816:18;;:::i;:::-;-1:-1:-1;26863:1:1;26852:13;;26783:88::o;26876:127::-;26937:10;26932:3;26928:20;26925:1;26918:31;26968:4;26965:1;26958:15;26992:4;26989:1;26982:15;27008:127;27069:10;27064:3;27060:20;27057:1;27050:31;27100:4;27097:1;27090:15;27124:4;27121:1;27114:15;27140:185;27175:3;27217:1;27199:16;27196:23;27193:2;;;27267:1;27262:3;27257;27242:27;27298:10;27293:3;27289:20;27193:2;27183:142;:::o;27330:671::-;27369:3;27411:4;27393:16;27390:26;27387:2;;;27377:624;:::o;27387:2::-;27453;27447:9;-1:-1:-1;;27518:16:1;27514:25;;27511:1;27447:9;27490:50;27569:4;27563:11;27593:16;27628:18;27699:2;27692:4;27684:6;27680:17;27677:25;27672:2;27664:6;27661:14;27658:45;27655:2;;;27706:5;;;;;27377:624;:::o;27655:2::-;27743:6;27737:4;27733:17;27722:28;;27779:3;27773:10;27806:2;27798:6;27795:14;27792:2;;;27812:5;;;;;;27377:624;:::o;27792:2::-;27896;27877:16;27871:4;27867:27;27863:36;27856:4;27847:6;27842:3;27838:16;27834:27;27831:69;27828:2;;;27903:5;;;;;;27377:624;:::o;27828:2::-;27919:57;27970:4;27961:6;27953;27949:19;27945:30;27939:4;27919:57;:::i;:::-;-1:-1:-1;27992:3:1;;27377:624;-1:-1:-1;;;;;27377:624:1:o;28006:131::-;-1:-1:-1;;;;;28081:31:1;;28071:42;;28061:2;;28127:1;28124;28117:12;28142:131;-1:-1:-1;;;;;;28216:32:1;;28206:43;;28196:2;;28263:1;28260;28253:12

Swarm Source

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