ETH Price: $3,084.00 (-1.12%)
Gas: 2 Gwei

Token

TheSect (SECT)
 

Overview

Max Total Supply

98 SECT

Holders

94

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SECT
0x16952f8b0e7250061add6bc8f39efb24c3bce155
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:
TheSect

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-06
*/

//SPDX-License-Identifier: UNLICENSED

pragma solidity >=0.8.19;

library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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);
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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);
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

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

interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(
        address owner,
        uint256 index
    ) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(
        address owner
    ) public view virtual override returns (uint256) {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(
        uint256 tokenId
    ) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(
        uint256 tokenId
    ) public view virtual override returns (address) {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(
        address operator,
        bool approved
    ) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(
        address spender,
        uint256 tokenId
    ) internal view virtual returns (bool) {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(
        address owner,
        uint256 index
    ) public view virtual override returns (uint256) {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(
        uint256 index
    ) public view virtual override returns (uint256) {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(
        address from,
        uint256 tokenId
    ) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(
        address registrant,
        address operator
    ) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(
        address registrant,
        address subscription
    ) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(
        address registrant,
        address registrantToCopy
    ) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(
        address registrant,
        address operator,
        bool filtered
    ) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(
        address registrant,
        address[] calldata operators,
        bool filtered
    ) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(
        address registrant,
        bytes32 codehash,
        bool filtered
    ) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(
        address registrant,
        bytes32[] calldata codeHashes,
        bool filtered
    ) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(
        address registrant,
        address registrantToSubscribe
    ) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(
        address registrant
    ) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(
        address registrant,
        uint256 index
    ) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(
        address registrant,
        address registrantToCopy
    ) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(
        address registrant,
        address operator
    ) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(
        address registrant,
        address operatorWithCode
    ) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(
        address registrant,
        bytes32 codeHash
    ) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(
        address addr
    ) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(
        address addr
    ) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(
        address registrant,
        uint256 index
    ) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(
        address registrant,
        uint256 index
    ) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(
                    address(this),
                    subscriptionOrRegistrantToCopy
                );
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(
                        address(this),
                        subscriptionOrRegistrantToCopy
                    );
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (
                !OPERATOR_FILTER_REGISTRY.isOperatorAllowed(
                    address(this),
                    operator
                )
            ) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

contract TheSect is DefaultOperatorFilterer, ERC721Enumerable, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    // Constants
    string public baseExtension = ".json";

    // Supply
    uint256 public maxSupply = 100;
    uint256 public lastSupply = maxSupply;
    uint256 public maxMintAmount = 1;

    // Lists
    uint256[100] public remainingIds;
    mapping(uint256 => address) public minters;

    // Whitelist Mappings
    mapping(address => bool) public whitelist;
    mapping(address => bool) public hasMinted;

    // Params
    bool public paused = true;
    string private _baseTokenURI;
    address private _wallet;

    // TradeLock
    bool public tradeLock = true;

    modifier tradeLockModifier() {
        require(!tradeLock);
        _;
    }

    // Constructor
    constructor() ERC721("TheSect", "SECT") {
        _baseTokenURI = "ipfs://bafybeih2nqaizw53drbdb3g2fa6j7v6y44b2yei4dio5moiwrqsosuqfb4/";
        _wallet = msg.sender;
        _regularMint();
    }

    // URI Handling
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    // Setters
    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseExtension(
        string memory _newBaseExtension
    ) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setTradeLock(bool _state) public onlyOwner {
        tradeLock = _state;
    }

    function setWhitelistedAddresses(
        address[] memory _whitelistedAddresses,
        bool _state
    ) public onlyOwner {
        for (uint256 i = 0; i < _whitelistedAddresses.length; i++) {
            whitelist[_whitelistedAddresses[i]] = _state;
        }
    }

    // Minting
    function mint() public {
        // Checks
        require(!paused, "TheSect: minting has not started yet");
        require(lastSupply >= 1, "TheSect: the collection is sold out");
        // Whitelist
        require(whitelist[msg.sender], "TheSect: you are not whitelisted");
        require(!hasMinted[msg.sender], "TheSect: you already minted");
        // Minting
        _randomMint(msg.sender);
    }

    // Give a random NFT to a contest winner
    function randomGiveaway(
        address _winner,
        uint256 _amount
    ) external onlyOwner {
        // Checks
        require(_winner != address(0), "TheSect: zero address");
        require(_amount > 0, "TheSect: you have to mint at least one");
        require(lastSupply != 0, "TheSect: the collection is sold out");
        // Mint random NFTs for a winner
        for (uint256 i = 1; i <= _amount; i++) {
            _randomMint(_winner);
        }
    }

    // Random mint
    function _randomMint(address _target) internal returns (uint256) {
        // Get Random id to mint
        uint256 _index = _getRandom() % lastSupply;
        uint256 _realIndex = getValue(_index) + 1;
        // Reduce supply
        lastSupply--;
        // Replace used id by last
        remainingIds[_index] = getValue(lastSupply);
        // Mint
        _safeMint(_target, _realIndex);
        // Save Original minters
        minters[_realIndex] = msg.sender;
        return _realIndex;
    }

    // Mint for reserved spots
    function _regularMint() internal returns (uint256) {
        // Get Actual id to mint
        uint256 _index = totalSupply();
        uint256 _realIndex = getValue(_index) + 1;
        // Reduce supply
        lastSupply--;
        // Replace used id by last
        remainingIds[_index] = getValue(lastSupply);
        // Mint
        _safeMint(msg.sender, _realIndex);
        // Save Original minters
        minters[_realIndex] = msg.sender;
        return _realIndex;
    }

    // Get Token List
    function getTokenIds(
        address _owner
    ) public view returns (uint256[] memory) {
        // Count owned Token
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        // Get ids of owned Token
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    // Return compiled Token URI
    function tokenURI(
        uint256 _id
    ) public view virtual override returns (string memory) {
        require(_exists(_id), "TheSect: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _id.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    // Get value from a remaining id node
    function getValue(uint256 _index) internal view returns (uint256) {
        if (remainingIds[_index] != 0) return remainingIds[_index];
        else return _index;
    }

    // Create a random id for minting
    function _getRandom() internal view returns (uint256) {
        return
            uint256(
                keccak256(
                    abi.encodePacked(
                        block.prevrandao,
                        block.timestamp,
                        lastSupply
                    )
                )
            );
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function setApprovalForAll(
        address operator,
        bool approved
    ) public override(IERC721, ERC721) onlyAllowedOperatorApproval(operator) tradeLockModifier {
        super.setApprovalForAll(operator, approved);
    }

    function approve(
        address operator,
        uint256 tokenId
    ) public override(IERC721, ERC721) onlyAllowedOperatorApproval(operator) tradeLockModifier {
        super.approve(operator, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override(IERC721, ERC721) onlyAllowedOperator(from) tradeLockModifier {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override(IERC721, ERC721) onlyAllowedOperator(from) tradeLockModifier {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override(IERC721, ERC721) onlyAllowedOperator(from) tradeLockModifier {
        super.safeTransferFrom(from, to, tokenId, data);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_winner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"randomGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"remainingIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setTradeLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistedAddresses","type":"address[]"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600b9062000026908262000a55565b506064600c819055600d556001600e8190556076805460ff191690911790556078805460ff60a01b1916600160a01b17905534801562000064575f80fd5b506040805180820182526007815266151a1954d958dd60ca1b6020808301919091528251808401909352600483526314d150d560e21b9083015290733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b15620001f15780156200014457604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b5f604051808303815f87803b15801562000127575f80fd5b505af11580156200013a573d5f803e3d5ffd5b50505050620001f1565b6001600160a01b03821615620001955760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200010f565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e486906024015f604051808303815f87803b158015620001d9575f80fd5b505af1158015620001ec573d5f803e3d5ffd5b505050505b505f905062000201838262000a55565b50600162000210828262000a55565b5050506200022d620002276200027a60201b60201c565b6200027e565b604051806080016040528060438152602001620034196043913960779062000256908262000a55565b50607880546001600160a01b0319163317905562000273620002cf565b5062000c43565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f80620002db60085490565b90505f620002e98262000363565b620002f690600162000b31565b600d80549192505f620003098362000b4d565b9091555050600d546200031c9062000363565b600f836064811062000332576200033262000b65565b0155620003403382620003a4565b5f81815260736020526040902080546001600160a01b0319163317905592915050565b5f600f82606481106200037a576200037a62000b65565b015415620003a057600f826064811062000398576200039862000b65565b015492915050565b5090565b620003c5828260405180602001604052805f815250620003c960201b60201c565b5050565b620003d5838362000443565b620003e35f84848462000595565b6200043e5760405162461bcd60e51b815260206004820152603260248201525f80516020620033f983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b0382166200049b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000435565b5f818152600260205260409020546001600160a01b031615620005015760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000435565b6200050e5f8383620006d8565b6001600160a01b0382165f9081526003602052604081208054600192906200053890849062000b31565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f6001600160a01b0384163b15620006cc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620005db90339089908890889060040162000b79565b6020604051808303815f875af192505050801562000618575060408051601f3d908101601f19168201909252620006159181019062000be9565b60015b620006b1573d80801562000648576040519150601f19603f3d011682016040523d82523d5f602084013e6200064d565b606091505b5080515f03620006a95760405162461bcd60e51b815260206004820152603260248201525f80516020620033f983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000435565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620006d0565b5060015b949350505050565b6001600160a01b03831662000735576200072f81600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6200075b565b816001600160a01b0316836001600160a01b0316146200075b576200075b83826200079b565b6001600160a01b03821662000775576200043e8162000839565b826001600160a01b0316826001600160a01b0316146200043e576200043e8282620008eb565b5f6001620007a9846200092f565b620007b5919062000c19565b5f8381526007602052604090205490915080821462000807576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f906200084c9060019062000c19565b5f838152600960205260408120546008805493945090928490811062000876576200087662000b65565b905f5260205f2001549050806008838154811062000898576200089862000b65565b5f918252602080832090910192909255828152600990915260408082208490558582528120556008805480620008d257620008d262000c2f565b600190038181905f5260205f20015f9055905550505050565b5f620008f7836200092f565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b5f6001600160a01b0382166200099b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000435565b506001600160a01b03165f9081526003602052604090205490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620009df57607f821691505b602082108103620009fe57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200043e575f81815260208120601f850160051c8101602086101562000a2c5750805b601f850160051c820191505b8181101562000a4d5782815560010162000a38565b505050505050565b81516001600160401b0381111562000a715762000a71620009b6565b62000a898162000a828454620009ca565b8462000a04565b602080601f83116001811462000abf575f841562000aa75750858301515b5f19600386901b1c1916600185901b17855562000a4d565b5f85815260208120601f198616915b8281101562000aef5788860151825594840194600190910190840162000ace565b508582101562000b0d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082018082111562000b475762000b4762000b1d565b92915050565b5f8162000b5e5762000b5e62000b1d565b505f190190565b634e487b7160e01b5f52603260045260245ffd5b5f60018060a01b03808716835260208187168185015285604085015260806060850152845191508160808501525f5b8281101562000bc65785810182015185820160a00152810162000ba8565b50505f60a0828501015260a0601f19601f83011684010191505095945050505050565b5f6020828403121562000bfa575f80fd5b81516001600160e01b03198116811462000c12575f80fd5b9392505050565b8181038181111562000b475762000b4762000b1d565b634e487b7160e01b5f52603160045260245ffd5b6127a88062000c515f395ff3fe608060405234801561000f575f80fd5b506004361061023f575f3560e01c8063715018a611610135578063b88d4fde116100b4578063da3ef23f11610079578063da3ef23f146104fc578063e985e9c51461050f578063ee6d9d6d1461054a578063f2fde38b1461055d578063f75b8c5f14610570575f80fd5b8063b88d4fde146104a5578063c6682862146104b8578063c87b56dd146104c0578063d004b036146104d3578063d5abeb01146104f3575f80fd5b80638da5cb5b116100fa5780638da5cb5b1461044457806395d89b41146104555780639b19251a1461045d578063a22cb4651461047f578063b3ef77f214610492575f80fd5b8063715018a6146103da57806374ffb4c6146103e25780637c8b32ca146103f55780637f00c7a6146104095780638623ec7b1461041c575f80fd5b80632f893de7116101c15780634f6ccce7116101865780634f6ccce71461038157806355f804b3146103945780635c975abb146103a75780636352211e146103b457806370a08231146103c7575f80fd5b80632f893de71461031c57806338e21cce1461032f5780633ccfd60b1461035157806341f434341461035957806342842e0e1461036e575f80fd5b80631249c58b116102075780631249c58b146102d357806318160ddd146102db578063239c70ae146102ed57806323b872dd146102f65780632f745c5914610309575f80fd5b806301ffc9a71461024357806302329a291461026b57806306fdde0314610280578063081812fc14610295578063095ea7b3146102c0575b5f80fd5b610256610251366004611f33565b610579565b60405190151581526020015b60405180910390f35b61027e610279366004611f66565b6105a3565b005b6102886105e9565b6040516102629190611fce565b6102a86102a3366004611fe0565b610678565b6040516001600160a01b039091168152602001610262565b61027e6102ce36600461200d565b61070b565b61027e61073a565b6008545b604051908152602001610262565b6102df600e5481565b61027e610304366004612035565b610885565b6102df61031736600461200d565b6108c6565b61027e61032a3660046120b3565b61095a565b61025661033d36600461216d565b60756020525f908152604090205460ff1681565b61027e6109e8565b6102a86daaeb6d7670e522a718067333cd4e81565b61027e61037c366004612035565b610a42565b6102df61038f366004611fe0565b610a7d565b61027e6103a23660046121db565b610b0d565b6076546102569060ff1681565b6102a86103c2366004611fe0565b610b43565b6102df6103d536600461216d565b610bb9565b61027e610c3e565b61027e6103f0366004611f66565b610c73565b60785461025690600160a01b900460ff1681565b61027e610417366004611fe0565b610cbb565b6102a861042a366004611fe0565b60736020525f90815260409020546001600160a01b031681565b600a546001600160a01b03166102a8565b610288610cea565b61025661046b36600461216d565b60746020525f908152604090205460ff1681565b61027e61048d366004612220565b610cf9565b61027e6104a036600461200d565b610d23565b61027e6104b3366004612255565b610e40565b610288610e83565b6102886104ce366004611fe0565b610f0f565b6104e66104e136600461216d565b610fe2565b60405161026291906122cc565b6102df600c5481565b61027e61050a3660046121db565b611081565b61025661051d36600461230f565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6102df610558366004611fe0565b6110b7565b61027e61056b36600461216d565b6110cd565b6102df600d5481565b5f6001600160e01b0319821663780e9d6360e01b148061059d575061059d82611165565b92915050565b600a546001600160a01b031633146105d65760405162461bcd60e51b81526004016105cd90612340565b60405180910390fd5b6076805460ff1916911515919091179055565b60605f80546105f790612375565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612375565b801561066e5780601f106106455761010080835404028352916020019161066e565b820191905f5260205f20905b81548152906001019060200180831161065157829003601f168201915b5050505050905090565b5f818152600260205260408120546001600160a01b03166106f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105cd565b505f908152600460205260409020546001600160a01b031690565b81610715816111b4565b607854600160a01b900460ff161561072b575f80fd5b610735838361126b565b505050565b60765460ff16156107995760405162461bcd60e51b8152602060048201526024808201527f546865536563743a206d696e74696e6720686173206e6f742073746172746564604482015263081e595d60e21b60648201526084016105cd565b6001600d5410156107bc5760405162461bcd60e51b81526004016105cd906123ad565b335f9081526074602052604090205460ff1661081a5760405162461bcd60e51b815260206004820181905260248201527f546865536563743a20796f7520617265206e6f742077686974656c697374656460448201526064016105cd565b335f9081526075602052604090205460ff16156108795760405162461bcd60e51b815260206004820152601b60248201527f546865536563743a20796f7520616c7265616479206d696e746564000000000060448201526064016105cd565b6108823361137a565b50565b826001600160a01b038116331461089f5761089f336111b4565b607854600160a01b900460ff16156108b5575f80fd5b6108c0848484611438565b50505050565b5f6108d083610bb9565b82106109325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105cd565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109845760405162461bcd60e51b81526004016105cd90612340565b5f5b8251811015610735578160745f8584815181106109a5576109a56123f0565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806109e081612418565b915050610986565b600a546001600160a01b03163314610a125760405162461bcd60e51b81526004016105cd90612340565b6040514790339082156108fc029083905f818181858888f19350505050158015610a3e573d5f803e3d5ffd5b5050565b826001600160a01b0381163314610a5c57610a5c336111b4565b607854600160a01b900460ff1615610a72575f80fd5b6108c0848484611469565b5f610a8760085490565b8210610aea5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105cd565b60088281548110610afd57610afd6123f0565b905f5260205f2001549050919050565b600a546001600160a01b03163314610b375760405162461bcd60e51b81526004016105cd90612340565b6077610a3e828261247d565b5f818152600260205260408120546001600160a01b03168061059d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105cd565b5f6001600160a01b038216610c235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105cd565b506001600160a01b03165f9081526003602052604090205490565b600a546001600160a01b03163314610c685760405162461bcd60e51b81526004016105cd90612340565b610c715f611483565b565b600a546001600160a01b03163314610c9d5760405162461bcd60e51b81526004016105cd90612340565b60788054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b03163314610ce55760405162461bcd60e51b81526004016105cd90612340565b600e55565b6060600180546105f790612375565b81610d03816111b4565b607854600160a01b900460ff1615610d19575f80fd5b61073583836114d4565b600a546001600160a01b03163314610d4d5760405162461bcd60e51b81526004016105cd90612340565b6001600160a01b038216610d9b5760405162461bcd60e51b8152602060048201526015602482015274546865536563743a207a65726f206164647265737360581b60448201526064016105cd565b5f8111610df95760405162461bcd60e51b815260206004820152602660248201527f546865536563743a20796f75206861766520746f206d696e74206174206c65616044820152657374206f6e6560d01b60648201526084016105cd565b600d545f03610e1a5760405162461bcd60e51b81526004016105cd906123ad565b60015b81811161073557610e2d8361137a565b5080610e3881612418565b915050610e1d565b836001600160a01b0381163314610e5a57610e5a336111b4565b607854600160a01b900460ff1615610e70575f80fd5b610e7c85858585611597565b5050505050565b600b8054610e9090612375565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90612375565b8015610f075780601f10610ede57610100808354040283529160200191610f07565b820191905f5260205f20905b815481529060010190602001808311610eea57829003601f168201915b505050505081565b5f818152600260205260409020546060906001600160a01b0316610f865760405162461bcd60e51b815260206004820152602860248201527f546865536563743a2055524920717565727920666f72206e6f6e657869737465604482015267373a103a37b5b2b760c11b60648201526084016105cd565b5f610f8f6115c9565b90505f815111610fad5760405180602001604052805f815250610fdb565b80610fb7846115d8565b600b604051602001610fcb93929190612539565b6040516020818303038152906040525b9392505050565b60605f610fee83610bb9565b90505f8167ffffffffffffffff81111561100a5761100a61206e565b604051908082528060200260200182016040528015611033578160200160208202803683370190505b5090505f5b828110156110795761104a85826108c6565b82828151811061105c5761105c6123f0565b60209081029190910101528061107181612418565b915050611038565b509392505050565b600a546001600160a01b031633146110ab5760405162461bcd60e51b81526004016105cd90612340565b600b610a3e828261247d565b600f81606481106110c6575f80fd5b0154905081565b600a546001600160a01b031633146110f75760405162461bcd60e51b81526004016105cd90612340565b6001600160a01b03811661115c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105cd565b61088281611483565b5f6001600160e01b031982166380ac58cd60e01b148061119557506001600160e01b03198216635b5e139f60e01b145b8061059d57506301ffc9a760e01b6001600160e01b031983161461059d565b6daaeb6d7670e522a718067333cd4e3b1561088257604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561121f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124391906125d4565b61088257604051633b79c77360e21b81526001600160a01b03821660048201526024016105cd565b5f61127582610b43565b9050806001600160a01b0316836001600160a01b0316036112e25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105cd565b336001600160a01b03821614806112fe57506112fe813361051d565b6113705760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105cd565b61073583836116dd565b600d5460408051446020808301919091524282840152606080830185905283518084039091018152608090920190925280519101205f9182916113bd9190612603565b90505f6113c98261174a565b6113d4906001612616565b600d80549192505f6113e583612629565b91905055506113f5600d5461174a565b600f8360648110611408576114086123f0565b01556114148482611789565b5f81815260736020526040902080546001600160a01b031916331790559392505050565b61144233826117a2565b61145e5760405162461bcd60e51b81526004016105cd9061263e565b610735838383611892565b61073583838360405180602001604052805f815250610e40565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b336001600160a01b0383160361152c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105cd565b335f8181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115a133836117a2565b6115bd5760405162461bcd60e51b81526004016105cd9061263e565b6108c084848484611a39565b6060607780546105f790612375565b6060815f036115fe5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611627578061161181612418565b91506116209050600a8361268f565b9150611601565b5f8167ffffffffffffffff8111156116415761164161206e565b6040519080825280601f01601f19166020018201604052801561166b576020820181803683370190505b5090505b84156116d5576116806001836126a2565b915061168d600a86612603565b611698906030612616565b60f81b8183815181106116ad576116ad6123f0565b60200101906001600160f81b03191690815f1a9053506116ce600a8661268f565b945061166f565b949350505050565b5f81815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061171182610b43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f600f826064811061175e5761175e6123f0565b01541561178057600f8260648110611778576117786123f0565b015492915050565b5090565b919050565b610a3e828260405180602001604052805f815250611a6c565b5f818152600260205260408120546001600160a01b031661181a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105cd565b5f61182483610b43565b9050806001600160a01b0316846001600160a01b0316148061185f5750836001600160a01b031661185484610678565b6001600160a01b0316145b806116d557506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff166116d5565b826001600160a01b03166118a582610b43565b6001600160a01b03161461190d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105cd565b6001600160a01b03821661196f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105cd565b61197a838383611a9e565b6119845f826116dd565b6001600160a01b0383165f9081526003602052604081208054600192906119ac9084906126a2565b90915550506001600160a01b0382165f9081526003602052604081208054600192906119d9908490612616565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611a44848484611892565b611a5084848484611b55565b6108c05760405162461bcd60e51b81526004016105cd906126b5565b611a768383611c52565b611a825f848484611b55565b6107355760405162461bcd60e51b81526004016105cd906126b5565b6001600160a01b038316611af857611af381600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b1b565b816001600160a01b0316836001600160a01b031614611b1b57611b1b8382611d9c565b6001600160a01b038216611b325761073581611e35565b826001600160a01b0316826001600160a01b031614610735576107358282611edc565b5f6001600160a01b0384163b15611c4757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b98903390899088908890600401612707565b6020604051808303815f875af1925050508015611bd2575060408051601f3d908101601f19168201909252611bcf91810190612743565b60015b611c2d573d808015611bff576040519150601f19603f3d011682016040523d82523d5f602084013e611c04565b606091505b5080515f03611c255760405162461bcd60e51b81526004016105cd906126b5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116d5565b506001949350505050565b6001600160a01b038216611ca85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105cd565b5f818152600260205260409020546001600160a01b031615611d0c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105cd565b611d175f8383611a9e565b6001600160a01b0382165f908152600360205260408120805460019290611d3f908490612616565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f6001611da884610bb9565b611db291906126a2565b5f83815260076020526040902054909150808214611e03576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f90611e46906001906126a2565b5f8381526009602052604081205460088054939450909284908110611e6d57611e6d6123f0565b905f5260205f20015490508060088381548110611e8c57611e8c6123f0565b5f918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ec357611ec361275e565b600190038181905f5260205f20015f9055905550505050565b5f611ee683610bb9565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610882575f80fd5b5f60208284031215611f43575f80fd5b8135610fdb81611f1e565b8015158114610882575f80fd5b803561178481611f4e565b5f60208284031215611f76575f80fd5b8135610fdb81611f4e565b5f5b83811015611f9b578181015183820152602001611f83565b50505f910152565b5f8151808452611fba816020860160208601611f81565b601f01601f19169290920160200192915050565b602081525f610fdb6020830184611fa3565b5f60208284031215611ff0575f80fd5b5035919050565b80356001600160a01b0381168114611784575f80fd5b5f806040838503121561201e575f80fd5b61202783611ff7565b946020939093013593505050565b5f805f60608486031215612047575f80fd5b61205084611ff7565b925061205e60208501611ff7565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156120ab576120ab61206e565b604052919050565b5f80604083850312156120c4575f80fd5b823567ffffffffffffffff808211156120db575f80fd5b818501915085601f8301126120ee575f80fd5b81356020828211156121025761210261206e565b8160051b9250612113818401612082565b828152928401810192818101908985111561212c575f80fd5b948201945b848610156121515761214286611ff7565b82529482019490820190612131565b96506121609050878201611f5b565b9450505050509250929050565b5f6020828403121561217d575f80fd5b610fdb82611ff7565b5f67ffffffffffffffff83111561219f5761219f61206e565b6121b2601f8401601f1916602001612082565b90508281528383830111156121c5575f80fd5b828260208301375f602084830101529392505050565b5f602082840312156121eb575f80fd5b813567ffffffffffffffff811115612201575f80fd5b8201601f81018413612211575f80fd5b6116d584823560208401612186565b5f8060408385031215612231575f80fd5b61223a83611ff7565b9150602083013561224a81611f4e565b809150509250929050565b5f805f8060808587031215612268575f80fd5b61227185611ff7565b935061227f60208601611ff7565b925060408501359150606085013567ffffffffffffffff8111156122a1575f80fd5b8501601f810187136122b1575f80fd5b6122c087823560208401612186565b91505092959194509250565b602080825282518282018190525f9190848201906040850190845b81811015612303578351835292840192918401916001016122e7565b50909695505050505050565b5f8060408385031215612320575f80fd5b61232983611ff7565b915061233760208401611ff7565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061238957607f821691505b6020821081036123a757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526023908201527f546865536563743a2074686520636f6c6c656374696f6e20697320736f6c64206040820152621bdd5d60ea1b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161242957612429612404565b5060010190565b601f821115610735575f81815260208120601f850160051c810160208610156124565750805b601f850160051c820191505b8181101561247557828155600101612462565b505050505050565b815167ffffffffffffffff8111156124975761249761206e565b6124ab816124a58454612375565b84612430565b602080601f8311600181146124de575f84156124c75750858301515b5f19600386901b1c1916600185901b178555612475565b5f85815260208120601f198616915b8281101561250c578886015182559484019460019091019084016124ed565b508582101561252957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f8451602061254b8285838a01611f81565b85519184019161255e8184848a01611f81565b85549201915f9061256e81612375565b60018281168015612586576001811461259b576125c4565b60ff19841687528215158302870194506125c4565b895f52855f205f5b848110156125bc578154898201529083019087016125a3565b505082870194505b50929a9950505050505050505050565b5f602082840312156125e4575f80fd5b8151610fdb81611f4e565b634e487b7160e01b5f52601260045260245ffd5b5f82612611576126116125ef565b500690565b8082018082111561059d5761059d612404565b5f8161263757612637612404565b505f190190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b5f8261269d5761269d6125ef565b500490565b8181038181111561059d5761059d612404565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061273990830184611fa3565b9695505050505050565b5f60208284031215612753575f80fd5b8151610fdb81611f1e565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220b869f23af536746ebe9fcd482152a1d5c62b04c545422dbad33a0148dc45750764736f6c634300081400334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f6261667962656968326e7161697a77353364726264623367326661366a37763679343462327965693464696f356d6f69777271736f7375716662342f

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061023f575f3560e01c8063715018a611610135578063b88d4fde116100b4578063da3ef23f11610079578063da3ef23f146104fc578063e985e9c51461050f578063ee6d9d6d1461054a578063f2fde38b1461055d578063f75b8c5f14610570575f80fd5b8063b88d4fde146104a5578063c6682862146104b8578063c87b56dd146104c0578063d004b036146104d3578063d5abeb01146104f3575f80fd5b80638da5cb5b116100fa5780638da5cb5b1461044457806395d89b41146104555780639b19251a1461045d578063a22cb4651461047f578063b3ef77f214610492575f80fd5b8063715018a6146103da57806374ffb4c6146103e25780637c8b32ca146103f55780637f00c7a6146104095780638623ec7b1461041c575f80fd5b80632f893de7116101c15780634f6ccce7116101865780634f6ccce71461038157806355f804b3146103945780635c975abb146103a75780636352211e146103b457806370a08231146103c7575f80fd5b80632f893de71461031c57806338e21cce1461032f5780633ccfd60b1461035157806341f434341461035957806342842e0e1461036e575f80fd5b80631249c58b116102075780631249c58b146102d357806318160ddd146102db578063239c70ae146102ed57806323b872dd146102f65780632f745c5914610309575f80fd5b806301ffc9a71461024357806302329a291461026b57806306fdde0314610280578063081812fc14610295578063095ea7b3146102c0575b5f80fd5b610256610251366004611f33565b610579565b60405190151581526020015b60405180910390f35b61027e610279366004611f66565b6105a3565b005b6102886105e9565b6040516102629190611fce565b6102a86102a3366004611fe0565b610678565b6040516001600160a01b039091168152602001610262565b61027e6102ce36600461200d565b61070b565b61027e61073a565b6008545b604051908152602001610262565b6102df600e5481565b61027e610304366004612035565b610885565b6102df61031736600461200d565b6108c6565b61027e61032a3660046120b3565b61095a565b61025661033d36600461216d565b60756020525f908152604090205460ff1681565b61027e6109e8565b6102a86daaeb6d7670e522a718067333cd4e81565b61027e61037c366004612035565b610a42565b6102df61038f366004611fe0565b610a7d565b61027e6103a23660046121db565b610b0d565b6076546102569060ff1681565b6102a86103c2366004611fe0565b610b43565b6102df6103d536600461216d565b610bb9565b61027e610c3e565b61027e6103f0366004611f66565b610c73565b60785461025690600160a01b900460ff1681565b61027e610417366004611fe0565b610cbb565b6102a861042a366004611fe0565b60736020525f90815260409020546001600160a01b031681565b600a546001600160a01b03166102a8565b610288610cea565b61025661046b36600461216d565b60746020525f908152604090205460ff1681565b61027e61048d366004612220565b610cf9565b61027e6104a036600461200d565b610d23565b61027e6104b3366004612255565b610e40565b610288610e83565b6102886104ce366004611fe0565b610f0f565b6104e66104e136600461216d565b610fe2565b60405161026291906122cc565b6102df600c5481565b61027e61050a3660046121db565b611081565b61025661051d36600461230f565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6102df610558366004611fe0565b6110b7565b61027e61056b36600461216d565b6110cd565b6102df600d5481565b5f6001600160e01b0319821663780e9d6360e01b148061059d575061059d82611165565b92915050565b600a546001600160a01b031633146105d65760405162461bcd60e51b81526004016105cd90612340565b60405180910390fd5b6076805460ff1916911515919091179055565b60605f80546105f790612375565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612375565b801561066e5780601f106106455761010080835404028352916020019161066e565b820191905f5260205f20905b81548152906001019060200180831161065157829003601f168201915b5050505050905090565b5f818152600260205260408120546001600160a01b03166106f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105cd565b505f908152600460205260409020546001600160a01b031690565b81610715816111b4565b607854600160a01b900460ff161561072b575f80fd5b610735838361126b565b505050565b60765460ff16156107995760405162461bcd60e51b8152602060048201526024808201527f546865536563743a206d696e74696e6720686173206e6f742073746172746564604482015263081e595d60e21b60648201526084016105cd565b6001600d5410156107bc5760405162461bcd60e51b81526004016105cd906123ad565b335f9081526074602052604090205460ff1661081a5760405162461bcd60e51b815260206004820181905260248201527f546865536563743a20796f7520617265206e6f742077686974656c697374656460448201526064016105cd565b335f9081526075602052604090205460ff16156108795760405162461bcd60e51b815260206004820152601b60248201527f546865536563743a20796f7520616c7265616479206d696e746564000000000060448201526064016105cd565b6108823361137a565b50565b826001600160a01b038116331461089f5761089f336111b4565b607854600160a01b900460ff16156108b5575f80fd5b6108c0848484611438565b50505050565b5f6108d083610bb9565b82106109325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105cd565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109845760405162461bcd60e51b81526004016105cd90612340565b5f5b8251811015610735578160745f8584815181106109a5576109a56123f0565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806109e081612418565b915050610986565b600a546001600160a01b03163314610a125760405162461bcd60e51b81526004016105cd90612340565b6040514790339082156108fc029083905f818181858888f19350505050158015610a3e573d5f803e3d5ffd5b5050565b826001600160a01b0381163314610a5c57610a5c336111b4565b607854600160a01b900460ff1615610a72575f80fd5b6108c0848484611469565b5f610a8760085490565b8210610aea5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105cd565b60088281548110610afd57610afd6123f0565b905f5260205f2001549050919050565b600a546001600160a01b03163314610b375760405162461bcd60e51b81526004016105cd90612340565b6077610a3e828261247d565b5f818152600260205260408120546001600160a01b03168061059d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105cd565b5f6001600160a01b038216610c235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105cd565b506001600160a01b03165f9081526003602052604090205490565b600a546001600160a01b03163314610c685760405162461bcd60e51b81526004016105cd90612340565b610c715f611483565b565b600a546001600160a01b03163314610c9d5760405162461bcd60e51b81526004016105cd90612340565b60788054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b03163314610ce55760405162461bcd60e51b81526004016105cd90612340565b600e55565b6060600180546105f790612375565b81610d03816111b4565b607854600160a01b900460ff1615610d19575f80fd5b61073583836114d4565b600a546001600160a01b03163314610d4d5760405162461bcd60e51b81526004016105cd90612340565b6001600160a01b038216610d9b5760405162461bcd60e51b8152602060048201526015602482015274546865536563743a207a65726f206164647265737360581b60448201526064016105cd565b5f8111610df95760405162461bcd60e51b815260206004820152602660248201527f546865536563743a20796f75206861766520746f206d696e74206174206c65616044820152657374206f6e6560d01b60648201526084016105cd565b600d545f03610e1a5760405162461bcd60e51b81526004016105cd906123ad565b60015b81811161073557610e2d8361137a565b5080610e3881612418565b915050610e1d565b836001600160a01b0381163314610e5a57610e5a336111b4565b607854600160a01b900460ff1615610e70575f80fd5b610e7c85858585611597565b5050505050565b600b8054610e9090612375565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90612375565b8015610f075780601f10610ede57610100808354040283529160200191610f07565b820191905f5260205f20905b815481529060010190602001808311610eea57829003601f168201915b505050505081565b5f818152600260205260409020546060906001600160a01b0316610f865760405162461bcd60e51b815260206004820152602860248201527f546865536563743a2055524920717565727920666f72206e6f6e657869737465604482015267373a103a37b5b2b760c11b60648201526084016105cd565b5f610f8f6115c9565b90505f815111610fad5760405180602001604052805f815250610fdb565b80610fb7846115d8565b600b604051602001610fcb93929190612539565b6040516020818303038152906040525b9392505050565b60605f610fee83610bb9565b90505f8167ffffffffffffffff81111561100a5761100a61206e565b604051908082528060200260200182016040528015611033578160200160208202803683370190505b5090505f5b828110156110795761104a85826108c6565b82828151811061105c5761105c6123f0565b60209081029190910101528061107181612418565b915050611038565b509392505050565b600a546001600160a01b031633146110ab5760405162461bcd60e51b81526004016105cd90612340565b600b610a3e828261247d565b600f81606481106110c6575f80fd5b0154905081565b600a546001600160a01b031633146110f75760405162461bcd60e51b81526004016105cd90612340565b6001600160a01b03811661115c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105cd565b61088281611483565b5f6001600160e01b031982166380ac58cd60e01b148061119557506001600160e01b03198216635b5e139f60e01b145b8061059d57506301ffc9a760e01b6001600160e01b031983161461059d565b6daaeb6d7670e522a718067333cd4e3b1561088257604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561121f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124391906125d4565b61088257604051633b79c77360e21b81526001600160a01b03821660048201526024016105cd565b5f61127582610b43565b9050806001600160a01b0316836001600160a01b0316036112e25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105cd565b336001600160a01b03821614806112fe57506112fe813361051d565b6113705760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105cd565b61073583836116dd565b600d5460408051446020808301919091524282840152606080830185905283518084039091018152608090920190925280519101205f9182916113bd9190612603565b90505f6113c98261174a565b6113d4906001612616565b600d80549192505f6113e583612629565b91905055506113f5600d5461174a565b600f8360648110611408576114086123f0565b01556114148482611789565b5f81815260736020526040902080546001600160a01b031916331790559392505050565b61144233826117a2565b61145e5760405162461bcd60e51b81526004016105cd9061263e565b610735838383611892565b61073583838360405180602001604052805f815250610e40565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b336001600160a01b0383160361152c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105cd565b335f8181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115a133836117a2565b6115bd5760405162461bcd60e51b81526004016105cd9061263e565b6108c084848484611a39565b6060607780546105f790612375565b6060815f036115fe5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611627578061161181612418565b91506116209050600a8361268f565b9150611601565b5f8167ffffffffffffffff8111156116415761164161206e565b6040519080825280601f01601f19166020018201604052801561166b576020820181803683370190505b5090505b84156116d5576116806001836126a2565b915061168d600a86612603565b611698906030612616565b60f81b8183815181106116ad576116ad6123f0565b60200101906001600160f81b03191690815f1a9053506116ce600a8661268f565b945061166f565b949350505050565b5f81815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061171182610b43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f600f826064811061175e5761175e6123f0565b01541561178057600f8260648110611778576117786123f0565b015492915050565b5090565b919050565b610a3e828260405180602001604052805f815250611a6c565b5f818152600260205260408120546001600160a01b031661181a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105cd565b5f61182483610b43565b9050806001600160a01b0316846001600160a01b0316148061185f5750836001600160a01b031661185484610678565b6001600160a01b0316145b806116d557506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff166116d5565b826001600160a01b03166118a582610b43565b6001600160a01b03161461190d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105cd565b6001600160a01b03821661196f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105cd565b61197a838383611a9e565b6119845f826116dd565b6001600160a01b0383165f9081526003602052604081208054600192906119ac9084906126a2565b90915550506001600160a01b0382165f9081526003602052604081208054600192906119d9908490612616565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611a44848484611892565b611a5084848484611b55565b6108c05760405162461bcd60e51b81526004016105cd906126b5565b611a768383611c52565b611a825f848484611b55565b6107355760405162461bcd60e51b81526004016105cd906126b5565b6001600160a01b038316611af857611af381600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b1b565b816001600160a01b0316836001600160a01b031614611b1b57611b1b8382611d9c565b6001600160a01b038216611b325761073581611e35565b826001600160a01b0316826001600160a01b031614610735576107358282611edc565b5f6001600160a01b0384163b15611c4757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b98903390899088908890600401612707565b6020604051808303815f875af1925050508015611bd2575060408051601f3d908101601f19168201909252611bcf91810190612743565b60015b611c2d573d808015611bff576040519150601f19603f3d011682016040523d82523d5f602084013e611c04565b606091505b5080515f03611c255760405162461bcd60e51b81526004016105cd906126b5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116d5565b506001949350505050565b6001600160a01b038216611ca85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105cd565b5f818152600260205260409020546001600160a01b031615611d0c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105cd565b611d175f8383611a9e565b6001600160a01b0382165f908152600360205260408120805460019290611d3f908490612616565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f6001611da884610bb9565b611db291906126a2565b5f83815260076020526040902054909150808214611e03576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f90611e46906001906126a2565b5f8381526009602052604081205460088054939450909284908110611e6d57611e6d6123f0565b905f5260205f20015490508060088381548110611e8c57611e8c6123f0565b5f918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ec357611ec361275e565b600190038181905f5260205f20015f9055905550505050565b5f611ee683610bb9565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610882575f80fd5b5f60208284031215611f43575f80fd5b8135610fdb81611f1e565b8015158114610882575f80fd5b803561178481611f4e565b5f60208284031215611f76575f80fd5b8135610fdb81611f4e565b5f5b83811015611f9b578181015183820152602001611f83565b50505f910152565b5f8151808452611fba816020860160208601611f81565b601f01601f19169290920160200192915050565b602081525f610fdb6020830184611fa3565b5f60208284031215611ff0575f80fd5b5035919050565b80356001600160a01b0381168114611784575f80fd5b5f806040838503121561201e575f80fd5b61202783611ff7565b946020939093013593505050565b5f805f60608486031215612047575f80fd5b61205084611ff7565b925061205e60208501611ff7565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156120ab576120ab61206e565b604052919050565b5f80604083850312156120c4575f80fd5b823567ffffffffffffffff808211156120db575f80fd5b818501915085601f8301126120ee575f80fd5b81356020828211156121025761210261206e565b8160051b9250612113818401612082565b828152928401810192818101908985111561212c575f80fd5b948201945b848610156121515761214286611ff7565b82529482019490820190612131565b96506121609050878201611f5b565b9450505050509250929050565b5f6020828403121561217d575f80fd5b610fdb82611ff7565b5f67ffffffffffffffff83111561219f5761219f61206e565b6121b2601f8401601f1916602001612082565b90508281528383830111156121c5575f80fd5b828260208301375f602084830101529392505050565b5f602082840312156121eb575f80fd5b813567ffffffffffffffff811115612201575f80fd5b8201601f81018413612211575f80fd5b6116d584823560208401612186565b5f8060408385031215612231575f80fd5b61223a83611ff7565b9150602083013561224a81611f4e565b809150509250929050565b5f805f8060808587031215612268575f80fd5b61227185611ff7565b935061227f60208601611ff7565b925060408501359150606085013567ffffffffffffffff8111156122a1575f80fd5b8501601f810187136122b1575f80fd5b6122c087823560208401612186565b91505092959194509250565b602080825282518282018190525f9190848201906040850190845b81811015612303578351835292840192918401916001016122e7565b50909695505050505050565b5f8060408385031215612320575f80fd5b61232983611ff7565b915061233760208401611ff7565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061238957607f821691505b6020821081036123a757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526023908201527f546865536563743a2074686520636f6c6c656374696f6e20697320736f6c64206040820152621bdd5d60ea1b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161242957612429612404565b5060010190565b601f821115610735575f81815260208120601f850160051c810160208610156124565750805b601f850160051c820191505b8181101561247557828155600101612462565b505050505050565b815167ffffffffffffffff8111156124975761249761206e565b6124ab816124a58454612375565b84612430565b602080601f8311600181146124de575f84156124c75750858301515b5f19600386901b1c1916600185901b178555612475565b5f85815260208120601f198616915b8281101561250c578886015182559484019460019091019084016124ed565b508582101561252957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f8451602061254b8285838a01611f81565b85519184019161255e8184848a01611f81565b85549201915f9061256e81612375565b60018281168015612586576001811461259b576125c4565b60ff19841687528215158302870194506125c4565b895f52855f205f5b848110156125bc578154898201529083019087016125a3565b505082870194505b50929a9950505050505050505050565b5f602082840312156125e4575f80fd5b8151610fdb81611f4e565b634e487b7160e01b5f52601260045260245ffd5b5f82612611576126116125ef565b500690565b8082018082111561059d5761059d612404565b5f8161263757612637612404565b505f190190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b5f8261269d5761269d6125ef565b500490565b8181038181111561059d5761059d612404565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061273990830184611fa3565b9695505050505050565b5f60208284031215612753575f80fd5b8151610fdb81611f1e565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220b869f23af536746ebe9fcd482152a1d5c62b04c545422dbad33a0148dc45750764736f6c63430008140033

Deployed Bytecode Sourcemap

58429:7237:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41972:266;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;41972:266:0;;;;;;;;60083:79;;;;;;:::i;:::-;;:::i;:::-;;29565:100;;;:::i;:::-;;;;;;;:::i;31224:274::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2199:32:1;;;2181:51;;2169:2;2154:18;31224:274:0;2035:203:1;64670:217:0;;;;;;:::i;:::-;;:::i;60567:417::-;;;:::i;42716:113::-;42804:10;:17;42716:113;;;2826:25:1;;;2814:2;2799:18;42716:113:0;2680:177:1;58776:32:0;;;;;;64895:232;;;;;;:::i;:::-;;:::i;42322:318::-;;;;;;:::i;:::-;;:::i;60267:276::-;;;;;;:::i;:::-;;:::i;58996:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;64275:143;;;:::i;55397:::-;;55110:42;55397:143;;65135:240;;;;;;:::i;:::-;;:::i;42906:286::-;;;;;;:::i;:::-;;:::i;59689:104::-;;;;;;:::i;:::-;;:::i;59061:25::-;;;;;;;;;29206:292;;;;;;:::i;:::-;;:::i;28883:261::-;;;;;;:::i;:::-;;:::i;11013:94::-;;;:::i;60170:89::-;;;;;;:::i;:::-;;:::i;59178:28::-;;;;;-1:-1:-1;;;59178:28:0;;;;;;59801:122;;;;;;:::i;:::-;;:::i;58870:42::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;58870:42:0;;;10362:87;10435:6;;-1:-1:-1;;;;;10435:6:0;10362:87;;29734:104;;;:::i;58948:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;64426:236;;;;;;:::i;:::-;;:::i;61038:480::-;;;;;;:::i;:::-;;:::i;65383:274::-;;;;;;:::i;:::-;;:::i;58634:37::-;;;:::i;63101:550::-;;;;;;:::i;:::-;;:::i;62622:437::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58695:30::-;;;;;;59931:144;;;;;;:::i;:::-;;:::i;31961:189::-;;;;;;:::i;:::-;-1:-1:-1;;;;;32107:25:0;;;32083:4;32107:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31961:189;58831:32;;;;;;:::i;:::-;;:::i;11262:229::-;;;;;;:::i;:::-;;:::i;58732:37::-;;;;;;41972:266;42090:4;-1:-1:-1;;;;;;42127:50:0;;-1:-1:-1;;;42127:50:0;;:103;;;42194:36;42218:11;42194:23;:36::i;:::-;42107:123;41972:266;-1:-1:-1;;41972:266:0:o;60083:79::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;;;;;;;;;60139:6:::1;:15:::0;;-1:-1:-1;;60139:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60083:79::o;29565:100::-;29619:13;29652:5;29645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29565:100;:::o;31224:274::-;31316:7;34921:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34921:16:0;31336:110;;;;-1:-1:-1;;;31336:110:0;;8775:2:1;31336:110:0;;;8757:21:1;8814:2;8794:18;;;8787:30;8853:34;8833:18;;;8826:62;-1:-1:-1;;;8904:18:1;;;8897:42;8956:19;;31336:110:0;8573:408:1;31336:110:0;-1:-1:-1;31466:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31466:24:0;;31224:274::o;64670:217::-;64808:8;57313:30;57334:8;57313:20;:30::i;:::-;59264:9:::1;::::0;-1:-1:-1;;;59264:9:0;::::1;;;59263:10;59255:19;;;::::0;::::1;;64847:32:::2;64861:8;64871:7;64847:13;:32::i;:::-;64670:217:::0;;;:::o;60567:417::-;60629:6;;;;60628:7;60620:56;;;;-1:-1:-1;;;60620:56:0;;9188:2:1;60620:56:0;;;9170:21:1;9227:2;9207:18;;;9200:30;9266:34;9246:18;;;9239:62;-1:-1:-1;;;9317:18:1;;;9310:34;9361:19;;60620:56:0;8986:400:1;60620:56:0;60709:1;60695:10;;:15;;60687:63;;;;-1:-1:-1;;;60687:63:0;;;;;;;:::i;:::-;60801:10;60791:21;;;;:9;:21;;;;;;;;60783:66;;;;-1:-1:-1;;;60783:66:0;;9997:2:1;60783:66:0;;;9979:21:1;;;10016:18;;;10009:30;10075:34;10055:18;;;10048:62;10127:18;;60783:66:0;9795:356:1;60783:66:0;60879:10;60869:21;;;;:9;:21;;;;;;;;60868:22;60860:62;;;;-1:-1:-1;;;60860:62:0;;10358:2:1;60860:62:0;;;10340:21:1;10397:2;10377:18;;;10370:30;10436:29;10416:18;;;10409:57;10483:18;;60860:62:0;10156:351:1;60860:62:0;60953:23;60965:10;60953:11;:23::i;:::-;;60567:417::o;64895:232::-;65047:4;-1:-1:-1;;;;;57039:18:0;;57047:10;57039:18;57035:83;;57074:32;57095:10;57074:20;:32::i;:::-;59264:9:::1;::::0;-1:-1:-1;;;59264:9:0;::::1;;;59263:10;59255:19;;;::::0;::::1;;65082:37:::2;65101:4;65107:2;65111:7;65082:18;:37::i;:::-;64895:232:::0;;;;:::o;42322:318::-;42444:7;42494:23;42511:5;42494:16;:23::i;:::-;42486:5;:31;42464:124;;;;-1:-1:-1;;;42464:124:0;;10714:2:1;42464:124:0;;;10696:21:1;10753:2;10733:18;;;10726:30;10792:34;10772:18;;;10765:62;-1:-1:-1;;;10843:18:1;;;10836:41;10894:19;;42464:124:0;10512:407:1;42464:124:0;-1:-1:-1;;;;;;42606:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42322:318::o;60267:276::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;60411:9:::1;60406:130;60430:21;:28;60426:1;:32;60406:130;;;60518:6;60480:9;:35;60490:21;60512:1;60490:24;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;60480:35:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;60480:35:0;:44;;-1:-1:-1;;60480:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60460:3;::::1;::::0;::::1;:::i;:::-;;;;60406:130;;64275:143:::0;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;64373:37:::1;::::0;64341:21:::1;::::0;64381:10:::1;::::0;64373:37;::::1;;;::::0;64341:21;;64323:15:::1;64373:37:::0;64323:15;64373:37;64341:21;64381:10;64373:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;64312:106;64275:143::o:0;65135:240::-;65291:4;-1:-1:-1;;;;;57039:18:0;;57047:10;57039:18;57035:83;;57074:32;57095:10;57074:20;:32::i;:::-;59264:9:::1;::::0;-1:-1:-1;;;59264:9:0;::::1;;;59263:10;59255:19;;;::::0;::::1;;65326:41:::2;65349:4;65355:2;65359:7;65326:22;:41::i;42906:286::-:0;42997:7;43047:30;42804:10;:17;;42716:113;43047:30;43039:5;:38;43017:132;;;;-1:-1:-1;;;43017:132:0;;11530:2:1;43017:132:0;;;11512:21:1;11569:2;11549:18;;;11542:30;11608:34;11588:18;;;11581:62;-1:-1:-1;;;11659:18:1;;;11652:42;11711:19;;43017:132:0;11328:408:1;43017:132:0;43167:10;43178:5;43167:17;;;;;;;;:::i;:::-;;;;;;;;;43160:24;;42906:286;;;:::o;59689:104::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;59762:13:::1;:23;59778:7:::0;59762:13;:23:::1;:::i;29206:292::-:0;29294:7;29330:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29330:16:0;;29357:110;;;;-1:-1:-1;;;29357:110:0;;14147:2:1;29357:110:0;;;14129:21:1;14186:2;14166:18;;;14159:30;14225:34;14205:18;;;14198:62;-1:-1:-1;;;14276:18:1;;;14269:39;14325:19;;29357:110:0;13945:405:1;28883:261:0;28971:7;-1:-1:-1;;;;;29013:19:0;;28991:111;;;;-1:-1:-1;;;28991:111:0;;14557:2:1;28991:111:0;;;14539:21:1;14596:2;14576:18;;;14569:30;14635:34;14615:18;;;14608:62;-1:-1:-1;;;14686:18:1;;;14679:40;14736:19;;28991:111:0;14355:406:1;28991:111:0;-1:-1:-1;;;;;;29120:16:0;;;;;:9;:16;;;;;;;28883:261::o;11013:94::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;11078:21:::1;11096:1;11078:9;:21::i;:::-;11013:94::o:0;60170:89::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;60233:9:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;60233:18:0::1;-1:-1:-1::0;;;;60233:18:0;;::::1;::::0;;;::::1;::::0;;60170:89::o;59801:122::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;59882:13:::1;:33:::0;59801:122::o;29734:104::-;29790:13;29823:7;29816:14;;;;;:::i;64426:236::-;64572:8;57313:30;57334:8;57313:20;:30::i;:::-;59264:9:::1;::::0;-1:-1:-1;;;59264:9:0;::::1;;;59263:10;59255:19;;;::::0;::::1;;64611:43:::2;64635:8;64645;64611:23;:43::i;61038:480::-:0;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61178:21:0;::::1;61170:55;;;::::0;-1:-1:-1;;;61170:55:0;;14968:2:1;61170:55:0::1;::::0;::::1;14950:21:1::0;15007:2;14987:18;;;14980:30;-1:-1:-1;;;15026:18:1;;;15019:51;15087:18;;61170:55:0::1;14766:345:1::0;61170:55:0::1;61254:1;61244:7;:11;61236:62;;;::::0;-1:-1:-1;;;61236:62:0;;15318:2:1;61236:62:0::1;::::0;::::1;15300:21:1::0;15357:2;15337:18;;;15330:30;15396:34;15376:18;;;15369:62;-1:-1:-1;;;15447:18:1;;;15440:36;15493:19;;61236:62:0::1;15116:402:1::0;61236:62:0::1;61317:10;;61331:1;61317:15:::0;61309:63:::1;;;;-1:-1:-1::0;;;61309:63:0::1;;;;;;;:::i;:::-;61442:1;61425:86;61450:7;61445:1;:12;61425:86;;61479:20;61491:7;61479:11;:20::i;:::-;-1:-1:-1::0;61459:3:0;::::1;::::0;::::1;:::i;:::-;;;;61425:86;;65383:274:::0;65567:4;-1:-1:-1;;;;;57039:18:0;;57047:10;57039:18;57035:83;;57074:32;57095:10;57074:20;:32::i;:::-;59264:9:::1;::::0;-1:-1:-1;;;59264:9:0;::::1;;;59263:10;59255:19;;;::::0;::::1;;65602:47:::2;65625:4;65631:2;65635:7;65644:4;65602:22;:47::i;:::-;65383:274:::0;;;;;:::o;58634:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63101:550::-;34897:4;34921:16;;;:7;:16;;;;;;63186:13;;-1:-1:-1;;;;;34921:16:0;63212:65;;;;-1:-1:-1;;;63212:65:0;;15725:2:1;63212:65:0;;;15707:21:1;15764:2;15744:18;;;15737:30;15803:34;15783:18;;;15776:62;-1:-1:-1;;;15854:18:1;;;15847:38;15902:19;;63212:65:0;15523:404:1;63212:65:0;63288:28;63319:10;:8;:10::i;:::-;63288:41;;63391:1;63366:14;63360:28;:32;:283;;;;;;;;;;;;;;;;;63484:14;63525;:3;:12;:14::i;:::-;63566:13;63441:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63360:283;63340:303;63101:550;-1:-1:-1;;;63101:550:0:o;62622:437::-;62696:16;62755:23;62781:17;62791:6;62781:9;:17::i;:::-;62755:43;;62809:25;62851:15;62837:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62837:30:0;;62809:58;;62918:9;62913:113;62933:15;62929:1;:19;62913:113;;;62984:30;63004:6;63012:1;62984:19;:30::i;:::-;62970:8;62979:1;62970:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;62950:3;;;;:::i;:::-;;;;62913:113;;;-1:-1:-1;63043:8:0;62622:437;-1:-1:-1;;;62622:437:0:o;59931:144::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;60034:13:::1;:33;60050:17:::0;60034:13;:33:::1;:::i;58831:32::-:0;;;;;;;;;;;;;;;-1:-1:-1;58831:32:0;:::o;11262:229::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11365:22:0;::::1;11343:110;;;::::0;-1:-1:-1;;;11343:110:0;;17395:2:1;11343:110:0::1;::::0;::::1;17377:21:1::0;17434:2;17414:18;;;17407:30;17473:34;17453:18;;;17446:62;-1:-1:-1;;;17524:18:1;;;17517:36;17570:19;;11343:110:0::1;17193:402:1::0;11343:110:0::1;11464:19;11474:8;11464:9;:19::i;28498:321::-:0;28616:4;-1:-1:-1;;;;;;28653:40:0;;-1:-1:-1;;;28653:40:0;;:105;;-1:-1:-1;;;;;;;28710:48:0;;-1:-1:-1;;;28710:48:0;28653:105;:158;;;-1:-1:-1;;;;;;;;;;21481:40:0;;;28775:36;21356:173;57456:740;55110:42;57647:45;:49;57643:546;;57964:128;;-1:-1:-1;;;57964:128:0;;58037:4;57964:128;;;17812:34:1;-1:-1:-1;;;;;17882:15:1;;17862:18;;;17855:43;55110:42:0;;57964;;17747:18:1;;57964:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57941:237;;58134:28;;-1:-1:-1;;;58134:28:0;;-1:-1:-1;;;;;2199:32:1;;58134:28:0;;;2181:51:1;2154:18;;58134:28:0;2035:203:1;30747:411:0;30828:13;30844:23;30859:7;30844:14;:23::i;:::-;30828:39;;30892:5;-1:-1:-1;;;;;30886:11:0;:2;-1:-1:-1;;;;;30886:11:0;;30878:57;;;;-1:-1:-1;;;30878:57:0;;18361:2:1;30878:57:0;;;18343:21:1;18400:2;18380:18;;;18373:30;18439:34;18419:18;;;18412:62;-1:-1:-1;;;18490:18:1;;;18483:31;18531:19;;30878:57:0;18159:397:1;30878:57:0;9800:10;-1:-1:-1;;;;;30970:21:0;;;;:62;;-1:-1:-1;30995:37:0;31012:5;9800:10;31961:189;:::i;30995:37::-;30948:168;;;;-1:-1:-1;;;30948:168:0;;18763:2:1;30948:168:0;;;18745:21:1;18802:2;18782:18;;;18775:30;18841:34;18821:18;;;18814:62;18912:26;18892:18;;;18885:54;18956:19;;30948:168:0;18561:420:1;30948:168:0;31129:21;31138:2;31142:7;31129:8;:21::i;61546:514::-;61688:10;;64064:161;;;64107:16;64064:161;;;;20721:19:1;;;;64150:15:0;20756:12:1;;;20749:28;20793:12;;;;20786:28;;;64064:161:0;;;;;;;;;;20830:12:1;;;;64064:161:0;;;64032:212;;;;;61602:7;;;;61673:25;;;;:::i;:::-;61656:42;;61709:18;61730:16;61739:6;61730:8;:16::i;:::-;:20;;61749:1;61730:20;:::i;:::-;61787:10;:12;;61709:41;;-1:-1:-1;61787:10:0;:12;;;:::i;:::-;;;;;;61869:20;61878:10;;61869:8;:20::i;:::-;61846:12;61859:6;61846:20;;;;;;;:::i;:::-;;:43;61917:30;61927:7;61936:10;61917:9;:30::i;:::-;61992:19;;;;:7;:19;;;;;:32;;-1:-1:-1;;;;;;61992:32:0;62014:10;61992:32;;;62000:10;61546:514;-1:-1:-1;;;61546:514:0:o;32217:376::-;32426:41;9800:10;32459:7;32426:18;:41::i;:::-;32404:140;;;;-1:-1:-1;;;32404:140:0;;;;;;;:::i;:::-;32557:28;32567:4;32573:2;32577:7;32557:9;:28::i;32664:185::-;32802:39;32819:4;32825:2;32829:7;32802:39;;;;;;;;;;;;:16;:39::i;11499:173::-;11574:6;;;-1:-1:-1;;;;;11591:17:0;;;-1:-1:-1;;;;;;11591:17:0;;;;;;;11624:40;;11574:6;;;11591:17;11574:6;;11624:40;;11555:16;;11624:40;11544:128;11499:173;:::o;31570:320::-;9800:10;-1:-1:-1;;;;;31698:24:0;;;31690:62;;;;-1:-1:-1;;;31690:62:0;;20126:2:1;31690:62:0;;;20108:21:1;20165:2;20145:18;;;20138:30;20204:27;20184:18;;;20177:55;20249:18;;31690:62:0;19924:349:1;31690:62:0;9800:10;31765:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31765:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31765:53:0;;;;;;;;;;31834:48;;540:41:1;;;31765:42:0;;9800:10;31834:48;;513:18:1;31834:48:0;;;;;;;31570:320;;:::o;32920:365::-;33109:41;9800:10;33142:7;33109:18;:41::i;:::-;33087:140;;;;-1:-1:-1;;;33087:140:0;;;;;;;:::i;:::-;33238:39;33252:4;33258:2;33262:7;33271:5;33238:13;:39::i;59551:114::-;59611:13;59644;59637:20;;;;;:::i;7903:723::-;7959:13;8180:5;8189:1;8180:10;8176:53;;-1:-1:-1;;8207:10:0;;;;;;;;;;;;-1:-1:-1;;;8207:10:0;;;;;7903:723::o;8176:53::-;8254:5;8239:12;8295:78;8302:9;;8295:78;;8328:8;;;;:::i;:::-;;-1:-1:-1;8351:10:0;;-1:-1:-1;8359:2:0;8351:10;;:::i;:::-;;;8295:78;;;8383:19;8415:6;8405:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8405:17:0;;8383:39;;8433:154;8440:10;;8433:154;;8467:11;8477:1;8467:11;;:::i;:::-;;-1:-1:-1;8536:10:0;8544:2;8536:5;:10;:::i;:::-;8523:24;;:2;:24;:::i;:::-;8510:39;;8493:6;8500;8493:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8493:56:0;;;;;;;;-1:-1:-1;8564:11:0;8573:2;8564:11;;:::i;:::-;;;8433:154;;;8611:6;7903:723;-1:-1:-1;;;;7903:723:0:o;38939:174::-;39014:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39014:29:0;-1:-1:-1;;;;;39014:29:0;;;;;;;;:24;;39068:23;39014:24;39068:14;:23::i;:::-;-1:-1:-1;;;;;39059:46:0;;;;;;;;;;;38939:174;;:::o;63702:172::-;63759:7;63783:12;63796:6;63783:20;;;;;;;:::i;:::-;;;:25;63779:87;;63817:12;63830:6;63817:20;;;;;;;:::i;:::-;;;;63702:172;-1:-1:-1;;63702:172:0:o;63779:87::-;-1:-1:-1;63860:6:0;63702:172::o;63779:87::-;63702:172;;;:::o;35904:110::-;35980:26;35990:2;35994:7;35980:26;;;;;;;;;;;;:9;:26::i;35126:436::-;35244:4;34921:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34921:16:0;35261:110;;;;-1:-1:-1;;;35261:110:0;;21055:2:1;35261:110:0;;;21037:21:1;21094:2;21074:18;;;21067:30;21133:34;21113:18;;;21106:62;-1:-1:-1;;;21184:18:1;;;21177:42;21236:19;;35261:110:0;20853:408:1;35261:110:0;35382:13;35398:23;35413:7;35398:14;:23::i;:::-;35382:39;;35451:5;-1:-1:-1;;;;;35440:16:0;:7;-1:-1:-1;;;;;35440:16:0;;:64;;;;35497:7;-1:-1:-1;;;;;35473:31:0;:20;35485:7;35473:11;:20::i;:::-;-1:-1:-1;;;;;35473:31:0;;35440:64;:113;;;-1:-1:-1;;;;;;32107:25:0;;;32083:4;32107:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35521:32;31961:189;38206:615;38379:4;-1:-1:-1;;;;;38352:31:0;:23;38367:7;38352:14;:23::i;:::-;-1:-1:-1;;;;;38352:31:0;;38330:122;;;;-1:-1:-1;;;38330:122:0;;21468:2:1;38330:122:0;;;21450:21:1;21507:2;21487:18;;;21480:30;21546:34;21526:18;;;21519:62;-1:-1:-1;;;21597:18:1;;;21590:39;21646:19;;38330:122:0;21266:405:1;38330:122:0;-1:-1:-1;;;;;38471:16:0;;38463:65;;;;-1:-1:-1;;;38463:65:0;;21878:2:1;38463:65:0;;;21860:21:1;21917:2;21897:18;;;21890:30;21956:34;21936:18;;;21929:62;-1:-1:-1;;;22007:18:1;;;22000:34;22051:19;;38463:65:0;21676:400:1;38463:65:0;38541:39;38562:4;38568:2;38572:7;38541:20;:39::i;:::-;38645:29;38662:1;38666:7;38645:8;:29::i;:::-;-1:-1:-1;;;;;38687:15:0;;;;;;:9;:15;;;;;:20;;38706:1;;38687:15;:20;;38706:1;;38687:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38718:13:0;;;;;;:9;:13;;;;;:18;;38735:1;;38718:13;:18;;38735:1;;38718:18;:::i;:::-;;;;-1:-1:-1;;38747:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38747:21:0;-1:-1:-1;;;;;38747:21:0;;;;;;;;;38786:27;;38747:16;;38786:27;;;;;;;38206:615;;;:::o;34167:352::-;34324:28;34334:4;34340:2;34344:7;34324:9;:28::i;:::-;34385:48;34408:4;34414:2;34418:7;34427:5;34385:22;:48::i;:::-;34363:148;;;;-1:-1:-1;;;34363:148:0;;;;;;;:::i;36241:321::-;36371:18;36377:2;36381:7;36371:5;:18::i;:::-;36422:54;36453:1;36457:2;36461:7;36470:5;36422:22;:54::i;:::-;36400:154;;;;-1:-1:-1;;;36400:154:0;;;;;;;:::i;43805:589::-;-1:-1:-1;;;;;44011:18:0;;44007:187;;44046:40;44078:7;45221:10;:17;;45194:24;;;;:15;:24;;;;;:44;;;45249:24;;;;;;;;;;;;45117:164;44046:40;44007:187;;;44116:2;-1:-1:-1;;;;;44108:10:0;:4;-1:-1:-1;;;;;44108:10:0;;44104:90;;44135:47;44168:4;44174:7;44135:32;:47::i;:::-;-1:-1:-1;;;;;44208:16:0;;44204:183;;44241:45;44278:7;44241:36;:45::i;44204:183::-;44314:4;-1:-1:-1;;;;;44308:10:0;:2;-1:-1:-1;;;;;44308:10:0;;44304:83;;44335:40;44363:2;44367:7;44335:27;:40::i;39678:980::-;39833:4;-1:-1:-1;;;;;39854:13:0;;12612:20;12660:8;39850:801;;39907:175;;-1:-1:-1;;;39907:175:0;;-1:-1:-1;;;;;39907:36:0;;;;;:175;;9800:10;;40001:4;;40028:7;;40058:5;;39907:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39907:175:0;;;;;;;;-1:-1:-1;;39907:175:0;;;;;;;;;;;;:::i;:::-;;;39886:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40265:6;:13;40282:1;40265:18;40261:320;;40308:108;;-1:-1:-1;;;40308:108:0;;;;;;;:::i;40261:320::-;40531:6;40525:13;40516:6;40512:2;40508:15;40501:38;39886:710;-1:-1:-1;;;;;;40146:51:0;-1:-1:-1;;;40146:51:0;;-1:-1:-1;40139:58:0;;39850:801;-1:-1:-1;40635:4:0;39678:980;;;;;;:::o;36898:382::-;-1:-1:-1;;;;;36978:16:0;;36970:61;;;;-1:-1:-1;;;36970:61:0;;23450:2:1;36970:61:0;;;23432:21:1;;;23469:18;;;23462:30;23528:34;23508:18;;;23501:62;23580:18;;36970:61:0;23248:356:1;36970:61:0;34897:4;34921:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34921:16:0;:30;37042:58;;;;-1:-1:-1;;;37042:58:0;;23811:2:1;37042:58:0;;;23793:21:1;23850:2;23830:18;;;23823:30;23889;23869:18;;;23862:58;23937:18;;37042:58:0;23609:352:1;37042:58:0;37113:45;37142:1;37146:2;37150:7;37113:20;:45::i;:::-;-1:-1:-1;;;;;37171:13:0;;;;;;:9;:13;;;;;:18;;37188:1;;37171:13;:18;;37188:1;;37171:18;:::i;:::-;;;;-1:-1:-1;;37200:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37200:21:0;-1:-1:-1;;;;;37200:21:0;;;;;;;;37239:33;;37200:16;;;37239:33;;37200:16;;37239:33;36898:382;;:::o;45908:1013::-;46199:22;46249:1;46224:22;46241:4;46224:16;:22::i;:::-;:26;;;;:::i;:::-;46261:18;46282:26;;;:17;:26;;;;;;46199:51;;-1:-1:-1;46415:28:0;;;46411:328;;-1:-1:-1;;;;;46482:18:0;;46460:19;46482:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46533:30;;;;;;:44;;;46650:30;;:17;:30;;;;;:43;;;46411:328;-1:-1:-1;46835:26:0;;;;:17;:26;;;;;;;;46828:33;;;-1:-1:-1;;;;;46879:18:0;;;;;:12;:18;;;;;:34;;;;;;;46872:41;45908:1013::o;47216:1079::-;47494:10;:17;47469:22;;47494:21;;47514:1;;47494:21;:::i;:::-;47526:18;47547:24;;;:15;:24;;;;;;47920:10;:26;;47469:46;;-1:-1:-1;47547:24:0;;47469:46;;47920:26;;;;;;:::i;:::-;;;;;;;;;47898:48;;47984:11;47959:10;47970;47959:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48064:28;;;:15;:28;;;;;;;:41;;;48236:24;;;;;48229:31;48271:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47287:1008;;;47216:1079;:::o;44695:221::-;44780:14;44797:20;44814:2;44797:16;:20::i;:::-;-1:-1:-1;;;;;44828:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44873:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44695:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:128;780:20;;809:28;780:20;809:28;:::i;848:241::-;904:6;957:2;945:9;936:7;932:23;928:32;925:52;;;973:1;970;963:12;925:52;1012:9;999:23;1031:28;1053:5;1031:28;:::i;1094:250::-;1179:1;1189:113;1203:6;1200:1;1197:13;1189:113;;;1279:11;;;1273:18;1260:11;;;1253:39;1225:2;1218:10;1189:113;;;-1:-1:-1;;1336:1:1;1318:16;;1311:27;1094:250::o;1349:271::-;1391:3;1429:5;1423:12;1456:6;1451:3;1444:19;1472:76;1541:6;1534:4;1529:3;1525:14;1518:4;1511:5;1507:16;1472:76;:::i;:::-;1602:2;1581:15;-1:-1:-1;;1577:29:1;1568:39;;;;1609:4;1564:50;;1349:271;-1:-1:-1;;1349:271:1:o;1625:220::-;1774:2;1763:9;1756:21;1737:4;1794:45;1835:2;1824:9;1820:18;1812:6;1794:45;:::i;1850:180::-;1909:6;1962:2;1950:9;1941:7;1937:23;1933:32;1930:52;;;1978:1;1975;1968:12;1930:52;-1:-1:-1;2001:23:1;;1850:180;-1:-1:-1;1850:180:1:o;2243:173::-;2311:20;;-1:-1:-1;;;;;2360:31:1;;2350:42;;2340:70;;2406:1;2403;2396:12;2421:254;2489:6;2497;2550:2;2538:9;2529:7;2525:23;2521:32;2518:52;;;2566:1;2563;2556:12;2518:52;2589:29;2608:9;2589:29;:::i;:::-;2579:39;2665:2;2650:18;;;;2637:32;;-1:-1:-1;;;2421:254:1:o;2862:328::-;2939:6;2947;2955;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;3047:29;3066:9;3047:29;:::i;:::-;3037:39;;3095:38;3129:2;3118:9;3114:18;3095:38;:::i;:::-;3085:48;;3180:2;3169:9;3165:18;3152:32;3142:42;;2862:328;;;;;:::o;3195:127::-;3256:10;3251:3;3247:20;3244:1;3237:31;3287:4;3284:1;3277:15;3311:4;3308:1;3301:15;3327:275;3398:2;3392:9;3463:2;3444:13;;-1:-1:-1;;3440:27:1;3428:40;;3498:18;3483:34;;3519:22;;;3480:62;3477:88;;;3545:18;;:::i;:::-;3581:2;3574:22;3327:275;;-1:-1:-1;3327:275:1:o;3607:1022::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3814:9;3801:23;3843:18;3884:2;3876:6;3873:14;3870:34;;;3900:1;3897;3890:12;3870:34;3938:6;3927:9;3923:22;3913:32;;3983:7;3976:4;3972:2;3968:13;3964:27;3954:55;;4005:1;4002;3995:12;3954:55;4041:2;4028:16;4063:4;4086:2;4082;4079:10;4076:36;;;4092:18;;:::i;:::-;4138:2;4135:1;4131:10;4121:20;;4161:28;4185:2;4181;4177:11;4161:28;:::i;:::-;4223:15;;;4293:11;;;4289:20;;;4254:12;;;;4321:19;;;4318:39;;;4353:1;4350;4343:12;4318:39;4377:11;;;;4397:148;4413:6;4408:3;4405:15;4397:148;;;4479:23;4498:3;4479:23;:::i;:::-;4467:36;;4430:12;;;;4523;;;;4397:148;;;4564:5;-1:-1:-1;4588:35:1;;-1:-1:-1;4604:18:1;;;4588:35;:::i;:::-;4578:45;;;;;;3607:1022;;;;;:::o;4634:186::-;4693:6;4746:2;4734:9;4725:7;4721:23;4717:32;4714:52;;;4762:1;4759;4752:12;4714:52;4785:29;4804:9;4785:29;:::i;5065:407::-;5130:5;5164:18;5156:6;5153:30;5150:56;;;5186:18;;:::i;:::-;5224:57;5269:2;5248:15;;-1:-1:-1;;5244:29:1;5275:4;5240:40;5224:57;:::i;:::-;5215:66;;5304:6;5297:5;5290:21;5344:3;5335:6;5330:3;5326:16;5323:25;5320:45;;;5361:1;5358;5351:12;5320:45;5410:6;5405:3;5398:4;5391:5;5387:16;5374:43;5464:1;5457:4;5448:6;5441:5;5437:18;5433:29;5426:40;5065:407;;;;;:::o;5477:451::-;5546:6;5599:2;5587:9;5578:7;5574:23;5570:32;5567:52;;;5615:1;5612;5605:12;5567:52;5655:9;5642:23;5688:18;5680:6;5677:30;5674:50;;;5720:1;5717;5710:12;5674:50;5743:22;;5796:4;5788:13;;5784:27;-1:-1:-1;5774:55:1;;5825:1;5822;5815:12;5774:55;5848:74;5914:7;5909:2;5896:16;5891:2;5887;5883:11;5848:74;:::i;5933:315::-;5998:6;6006;6059:2;6047:9;6038:7;6034:23;6030:32;6027:52;;;6075:1;6072;6065:12;6027:52;6098:29;6117:9;6098:29;:::i;:::-;6088:39;;6177:2;6166:9;6162:18;6149:32;6190:28;6212:5;6190:28;:::i;:::-;6237:5;6227:15;;;5933:315;;;;;:::o;6253:667::-;6348:6;6356;6364;6372;6425:3;6413:9;6404:7;6400:23;6396:33;6393:53;;;6442:1;6439;6432:12;6393:53;6465:29;6484:9;6465:29;:::i;:::-;6455:39;;6513:38;6547:2;6536:9;6532:18;6513:38;:::i;:::-;6503:48;;6598:2;6587:9;6583:18;6570:32;6560:42;;6653:2;6642:9;6638:18;6625:32;6680:18;6672:6;6669:30;6666:50;;;6712:1;6709;6702:12;6666:50;6735:22;;6788:4;6780:13;;6776:27;-1:-1:-1;6766:55:1;;6817:1;6814;6807:12;6766:55;6840:74;6906:7;6901:2;6888:16;6883:2;6879;6875:11;6840:74;:::i;:::-;6830:84;;;6253:667;;;;;;;:::o;6925:632::-;7096:2;7148:21;;;7218:13;;7121:18;;;7240:22;;;7067:4;;7096:2;7319:15;;;;7293:2;7278:18;;;7067:4;7362:169;7376:6;7373:1;7370:13;7362:169;;;7437:13;;7425:26;;7506:15;;;;7471:12;;;;7398:1;7391:9;7362:169;;;-1:-1:-1;7548:3:1;;6925:632;-1:-1:-1;;;;;;6925:632:1:o;7562:260::-;7630:6;7638;7691:2;7679:9;7670:7;7666:23;7662:32;7659:52;;;7707:1;7704;7697:12;7659:52;7730:29;7749:9;7730:29;:::i;:::-;7720:39;;7778:38;7812:2;7801:9;7797:18;7778:38;:::i;:::-;7768:48;;7562:260;;;;;:::o;7827:356::-;8029:2;8011:21;;;8048:18;;;8041:30;8107:34;8102:2;8087:18;;8080:62;8174:2;8159:18;;7827:356::o;8188:380::-;8267:1;8263:12;;;;8310;;;8331:61;;8385:4;8377:6;8373:17;8363:27;;8331:61;8438:2;8430:6;8427:14;8407:18;8404:38;8401:161;;8484:10;8479:3;8475:20;8472:1;8465:31;8519:4;8516:1;8509:15;8547:4;8544:1;8537:15;8401:161;;8188:380;;;:::o;9391:399::-;9593:2;9575:21;;;9632:2;9612:18;;;9605:30;9671:34;9666:2;9651:18;;9644:62;-1:-1:-1;;;9737:2:1;9722:18;;9715:33;9780:3;9765:19;;9391:399::o;10924:127::-;10985:10;10980:3;10976:20;10973:1;10966:31;11016:4;11013:1;11006:15;11040:4;11037:1;11030:15;11056:127;11117:10;11112:3;11108:20;11105:1;11098:31;11148:4;11145:1;11138:15;11172:4;11169:1;11162:15;11188:135;11227:3;11248:17;;;11245:43;;11268:18;;:::i;:::-;-1:-1:-1;11315:1:1;11304:13;;11188:135::o;11867:545::-;11969:2;11964:3;11961:11;11958:448;;;12005:1;12030:5;12026:2;12019:17;12075:4;12071:2;12061:19;12145:2;12133:10;12129:19;12126:1;12122:27;12116:4;12112:38;12181:4;12169:10;12166:20;12163:47;;;-1:-1:-1;12204:4:1;12163:47;12259:2;12254:3;12250:12;12247:1;12243:20;12237:4;12233:31;12223:41;;12314:82;12332:2;12325:5;12322:13;12314:82;;;12377:17;;;12358:1;12347:13;12314:82;;;12318:3;;;11867:545;;;:::o;12588:1352::-;12714:3;12708:10;12741:18;12733:6;12730:30;12727:56;;;12763:18;;:::i;:::-;12792:97;12882:6;12842:38;12874:4;12868:11;12842:38;:::i;:::-;12836:4;12792:97;:::i;:::-;12944:4;;13008:2;12997:14;;13025:1;13020:663;;;;13727:1;13744:6;13741:89;;;-1:-1:-1;13796:19:1;;;13790:26;13741:89;-1:-1:-1;;12545:1:1;12541:11;;;12537:24;12533:29;12523:40;12569:1;12565:11;;;12520:57;13843:81;;12990:944;;13020:663;11814:1;11807:14;;;11851:4;11838:18;;-1:-1:-1;;13056:20:1;;;13174:236;13188:7;13185:1;13182:14;13174:236;;;13277:19;;;13271:26;13256:42;;13369:27;;;;13337:1;13325:14;;;;13204:19;;13174:236;;;13178:3;13438:6;13429:7;13426:19;13423:201;;;13499:19;;;13493:26;-1:-1:-1;;13582:1:1;13578:14;;;13594:3;13574:24;13570:37;13566:42;13551:58;13536:74;;13423:201;-1:-1:-1;;;;;13670:1:1;13654:14;;;13650:22;13637:36;;-1:-1:-1;12588:1352:1:o;15932:1256::-;16156:3;16194:6;16188:13;16220:4;16233:64;16290:6;16285:3;16280:2;16272:6;16268:15;16233:64;:::i;:::-;16360:13;;16319:16;;;;16382:68;16360:13;16319:16;16417:15;;;16382:68;:::i;:::-;16539:13;;16472:20;;;16512:1;;16577:36;16539:13;16577:36;:::i;:::-;16632:1;16649:18;;;16676:141;;;;16831:1;16826:337;;;;16642:521;;16676:141;-1:-1:-1;;16711:24:1;;16697:39;;16788:16;;16781:24;16767:39;;16756:51;;;-1:-1:-1;16676:141:1;;16826:337;16857:6;16854:1;16847:17;16905:2;16902:1;16892:16;16930:1;16944:169;16958:8;16955:1;16952:15;16944:169;;;17040:14;;17025:13;;;17018:37;17083:16;;;;16975:10;;16944:169;;;16948:3;;17144:8;17137:5;17133:20;17126:27;;16642:521;-1:-1:-1;17179:3:1;;15932:1256;-1:-1:-1;;;;;;;;;;15932:1256:1:o;17909:245::-;17976:6;18029:2;18017:9;18008:7;18004:23;18000:32;17997:52;;;18045:1;18042;18035:12;17997:52;18077:9;18071:16;18096:28;18118:5;18096:28;:::i;18986:127::-;19047:10;19042:3;19038:20;19035:1;19028:31;19078:4;19075:1;19068:15;19102:4;19099:1;19092:15;19118:112;19150:1;19176;19166:35;;19181:18;;:::i;:::-;-1:-1:-1;19215:9:1;;19118:112::o;19235:125::-;19300:9;;;19321:10;;;19318:36;;;19334:18;;:::i;19365:136::-;19404:3;19432:5;19422:39;;19441:18;;:::i;:::-;-1:-1:-1;;;19477:18:1;;19365:136::o;19506:413::-;19708:2;19690:21;;;19747:2;19727:18;;;19720:30;19786:34;19781:2;19766:18;;19759:62;-1:-1:-1;;;19852:2:1;19837:18;;19830:47;19909:3;19894:19;;19506:413::o;20278:120::-;20318:1;20344;20334:35;;20349:18;;:::i;:::-;-1:-1:-1;20383:9:1;;20278:120::o;20403:128::-;20470:9;;;20491:11;;;20488:37;;;20505:18;;:::i;22081:414::-;22283:2;22265:21;;;22322:2;22302:18;;;22295:30;22361:34;22356:2;22341:18;;22334:62;-1:-1:-1;;;22427:2:1;22412:18;;22405:48;22485:3;22470:19;;22081:414::o;22500:489::-;-1:-1:-1;;;;;22769:15:1;;;22751:34;;22821:15;;22816:2;22801:18;;22794:43;22868:2;22853:18;;22846:34;;;22916:3;22911:2;22896:18;;22889:31;;;22694:4;;22937:46;;22963:19;;22955:6;22937:46;:::i;:::-;22929:54;22500:489;-1:-1:-1;;;;;;22500:489:1:o;22994:249::-;23063:6;23116:2;23104:9;23095:7;23091:23;23087:32;23084:52;;;23132:1;23129;23122:12;23084:52;23164:9;23158:16;23183:30;23207:5;23183:30;:::i;23966:127::-;24027:10;24022:3;24018:20;24015:1;24008:31;24058:4;24055:1;24048:15;24082:4;24079:1;24072:15

Swarm Source

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