ETH Price: $2,606.72 (+0.60%)

Token

ReptileSyndicateClub (RSC)
 

Overview

Max Total Supply

367 RSC

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
legalalien.eth
Balance
5 RSC
0x50bfecaea054c96c4ebbbba4cd61750a19858ad7
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:
ReptileSyndicateClub

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-30
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
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);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
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;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
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);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);
}

contract ReptileSyndicateClub is ERC721, Ownable, IERC721Enumerable {

    mapping (address => bool) public _whitelisted;
    mapping (address => uint) public _minted;

    uint public salePrice;
    uint public whitelistPrice;
    uint public maxSupply;
    uint public maxPerTx;
    uint public maxPerWallet;
    uint public counter = 1;

    bool public publicMintStatus;

    string public baseURI;

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setSalePrice(uint price) external onlyOwner {
        salePrice = price;
    }

    function setWhitelistPrice(uint price) external onlyOwner {
        whitelistPrice = price;
    }

    function setMaxSupply(uint supply) external onlyOwner {
        maxSupply = supply;
    }

    function addToWhitelist(address[] memory whitelisted) external onlyOwner {
        for(uint i=0; i < whitelisted.length; i++){
            _whitelisted[whitelisted[i]] = !_whitelisted[whitelisted[i]];
        }
    }

    function setMaxPerTx(uint max) external onlyOwner {
        maxPerTx = max;
    }

    function setMaxPerWallet(uint max) external onlyOwner {
        maxPerWallet = max;
    }

    function setPublicMintStatus() external onlyOwner {
        publicMintStatus = !publicMintStatus;
    }

    function totalSupply() public view virtual override returns(uint) {
        return counter - 1;
    }

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

    constructor() ERC721("ReptileSyndicateClub", "RSC") {}

    function publicMint(uint amount) external payable {
        require(publicMintStatus, "Sale not active!");
        require(counter + amount <= maxSupply + 1, "Not enough tokens to sell!");
        require(amount <= maxPerTx, "Incorrect amount!");
        require(_minted[msg.sender] + amount <= maxPerWallet, "Incorrect amount!");
        if(_whitelisted[msg.sender]){
            require(msg.value == whitelistPrice * amount, "Incorrect amount!");
            for(uint i=0; i < amount; i++){
                _safeMint(msg.sender, counter++);
                _minted[msg.sender]++;
            }
        }else{
            require(msg.value == salePrice * amount, "Incorrect amount!");
            for(uint i=0; i < amount; i++){
                _safeMint(msg.sender, counter++);
                _minted[msg.sender]++;
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelisted","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"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":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":[{"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":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600e553480156200001657600080fd5b506040518060400160405280601481526020017f52657074696c6553796e646963617465436c75620000000000000000000000008152506040518060400160405280600381526020017f525343000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009b929190620001ab565b508060019080519060200190620000b4929190620001ab565b505050620000d7620000cb620000dd60201b60201c565b620000e560201b60201c565b620002c0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b9906200025b565b90600052602060002090601f016020900481019282620001dd576000855562000229565b82601f10620001f857805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002285782518255916020019190600101906200020b565b5b5090506200023891906200023c565b5090565b5b80821115620002575760008160009055506001016200023d565b5090565b600060028204905060018216806200027457607f821691505b602082108114156200028b576200028a62000291565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613ea080620002d06000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063c219c2ef116100ab578063e985e9c51161006f578063e985e9c51461079a578063f2fde38b146107d7578063f51f96dd14610800578063f968adbe1461082b578063fc1a1c36146108565761021a565b8063c219c2ef146106c9578063c6f6f216146106e0578063c87b56dd14610709578063d5abeb0114610746578063e268e4d3146107715761021a565b80637f649783116100f25780637f649783146105f85780638da5cb5b1461062157806395d89b411461064c578063a22cb46514610677578063b88d4fde146106a05761021a565b806370a082311461053e578063715018a61461057b578063717d57d3146105925780637de77ecc146105bb5761021a565b80632db11544116101a657806355f804b31161017557806355f804b31461045957806361bc221a146104825780636352211e146104ad5780636c0360eb146104ea5780636f8b44b0146105155761021a565b80632db11544146103d25780633ccfd60b146103ee57806342842e0e14610405578063453c23101461042e5761021a565b8063095ea7b3116101ed578063095ea7b31461030157806318160ddd1461032a5780631919fed71461035557806323b872dd1461037e57806326202370146103a75761021a565b806301c4b3161461021f57806301ffc9a71461025c57806306fdde0314610299578063081812fc146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612c8b565b610881565b6040516102539190613712565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612e73565b6108a1565b6040516102909190613712565b60405180910390f35b3480156102a557600080fd5b506102ae610983565b6040516102bb919061372d565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612f06565b610a15565b6040516102f891906136ab565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612df6565b610a9a565b005b34801561033657600080fd5b5061033f610bb2565b60405161034c91906139af565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612f06565b610bc8565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612cf0565b610c4e565b005b3480156103b357600080fd5b506103bc610cae565b6040516103c99190613712565b60405180910390f35b6103ec60048036038101906103e79190612f06565b610cc1565b005b3480156103fa57600080fd5b50610403611063565b005b34801561041157600080fd5b5061042c60048036038101906104279190612cf0565b611128565b005b34801561043a57600080fd5b50610443611148565b60405161045091906139af565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612ec5565b61114e565b005b34801561048e57600080fd5b506104976111e4565b6040516104a491906139af565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612f06565b6111ea565b6040516104e191906136ab565b60405180910390f35b3480156104f657600080fd5b506104ff61129c565b60405161050c919061372d565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612f06565b61132a565b005b34801561054a57600080fd5b5061056560048036038101906105609190612c8b565b6113b0565b60405161057291906139af565b60405180910390f35b34801561058757600080fd5b50610590611468565b005b34801561059e57600080fd5b506105b960048036038101906105b49190612f06565b6114f0565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612c8b565b611576565b6040516105ef91906139af565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612e32565b61158e565b005b34801561062d57600080fd5b50610636611751565b60405161064391906136ab565b60405180910390f35b34801561065857600080fd5b5061066161177b565b60405161066e919061372d565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612dba565b61180d565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190612d3f565b611823565b005b3480156106d557600080fd5b506106de611885565b005b3480156106ec57600080fd5b5061070760048036038101906107029190612f06565b61192d565b005b34801561071557600080fd5b50610730600480360381019061072b9190612f06565b6119b3565b60405161073d919061372d565b60405180910390f35b34801561075257600080fd5b5061075b611a5a565b60405161076891906139af565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612f06565b611a60565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190612cb4565b611ae6565b6040516107ce9190613712565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612c8b565b611b7a565b005b34801561080c57600080fd5b50610815611c72565b60405161082291906139af565b60405180910390f35b34801561083757600080fd5b50610840611c78565b60405161084d91906139af565b60405180910390f35b34801561086257600080fd5b5061086b611c7e565b60405161087891906139af565b60405180910390f35b60076020528060005260406000206000915054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097c575061097b82611c84565b5b9050919050565b60606000805461099290613c95565b80601f01602080910402602001604051908101604052809291908181526020018280546109be90613c95565b8015610a0b5780601f106109e057610100808354040283529160200191610a0b565b820191906000526020600020905b8154815290600101906020018083116109ee57829003601f168201915b5050505050905090565b6000610a2082611cee565b610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a56906138ef565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa5826111ea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061396f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b35611d5a565b73ffffffffffffffffffffffffffffffffffffffff161480610b645750610b6381610b5e611d5a565b611ae6565b5b610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a9061386f565b60405180910390fd5b610bad8383611d62565b505050565b60006001600e54610bc39190613bab565b905090565b610bd0611d5a565b73ffffffffffffffffffffffffffffffffffffffff16610bee611751565b73ffffffffffffffffffffffffffffffffffffffff1614610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b9061390f565b60405180910390fd5b8060098190555050565b610c5f610c59611d5a565b82611e1b565b610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c959061398f565b60405180910390fd5b610ca9838383611ef9565b505050565b600f60009054906101000a900460ff1681565b600f60009054906101000a900460ff16610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d079061382f565b60405180910390fd5b6001600b54610d1f9190613aca565b81600e54610d2d9190613aca565b1115610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d65906137af565b60405180910390fd5b600c54811115610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa9061380f565b60405180910390fd5b600d5481600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e019190613aca565b1115610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e399061380f565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f7c5780600a54610ea29190613b51565b3414610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061380f565b60405180910390fd5b60005b81811015610f7657610f0e33600e6000815480929190610f0590613cc7565b91905055612155565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f5e90613cc7565b91905055508080610f6e90613cc7565b915050610ee6565b50611060565b80600954610f8a9190613b51565b3414610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc29061380f565b60405180910390fd5b60005b8181101561105e57610ff633600e6000815480929190610fed90613cc7565b91905055612155565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061104690613cc7565b9190505550808061105690613cc7565b915050610fce565b505b50565b61106b611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611089611751565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d69061390f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611125573d6000803e3d6000fd5b50565b61114383838360405180602001604052806000815250611823565b505050565b600d5481565b611156611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611174611751565b73ffffffffffffffffffffffffffffffffffffffff16146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c19061390f565b60405180910390fd5b80601090805190602001906111e0929190612a19565b5050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906138af565b60405180910390fd5b80915050919050565b601080546112a990613c95565b80601f01602080910402602001604051908101604052809291908181526020018280546112d590613c95565b80156113225780601f106112f757610100808354040283529160200191611322565b820191906000526020600020905b81548152906001019060200180831161130557829003601f168201915b505050505081565b611332611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611350611751565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d9061390f565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611421576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114189061388f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611470611d5a565b73ffffffffffffffffffffffffffffffffffffffff1661148e611751565b73ffffffffffffffffffffffffffffffffffffffff16146114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db9061390f565b60405180910390fd5b6114ee6000612173565b565b6114f8611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611516611751565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061390f565b60405180910390fd5b80600a8190555050565b60086020528060005260406000206000915090505481565b611596611d5a565b73ffffffffffffffffffffffffffffffffffffffff166115b4611751565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116019061390f565b60405180910390fd5b60005b815181101561174d5760076000838381518110611653577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600760008484815181106116e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061174590613cc7565b91505061160d565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461178a90613c95565b80601f01602080910402602001604051908101604052809291908181526020018280546117b690613c95565b80156118035780601f106117d857610100808354040283529160200191611803565b820191906000526020600020905b8154815290600101906020018083116117e657829003601f168201915b5050505050905090565b61181f611818611d5a565b8383612239565b5050565b61183461182e611d5a565b83611e1b565b611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a9061398f565b60405180910390fd5b61187f848484846123a6565b50505050565b61188d611d5a565b73ffffffffffffffffffffffffffffffffffffffff166118ab611751565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f89061390f565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611935611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611953611751565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061390f565b60405180910390fd5b80600c8190555050565b60606119be82611cee565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061394f565b60405180910390fd5b6000611a07612402565b90506000815111611a275760405180602001604052806000815250611a52565b80611a3184612494565b604051602001611a42929190613687565b6040516020818303038152906040525b915050919050565b600b5481565b611a68611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611a86611751565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad39061390f565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b82611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611ba0611751565b73ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed9061390f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d9061376f565b60405180910390fd5b611c6f81612173565b50565b60095481565b600c5481565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd5836111ea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e2682611cee565b611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c9061384f565b60405180910390fd5b6000611e70836111ea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611edf57508373ffffffffffffffffffffffffffffffffffffffff16611ec784610a15565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ef05750611eef8185611ae6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f19826111ea565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f669061392f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906137cf565b60405180910390fd5b611fea838383612641565b611ff5600082611d62565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120459190613bab565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209c9190613aca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61216f828260405180602001604052806000815250612646565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f906137ef565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123999190613712565b60405180910390a3505050565b6123b1848484611ef9565b6123bd848484846126a1565b6123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f39061374f565b60405180910390fd5b50505050565b60606010805461241190613c95565b80601f016020809104026020016040519081016040528092919081815260200182805461243d90613c95565b801561248a5780601f1061245f5761010080835404028352916020019161248a565b820191906000526020600020905b81548152906001019060200180831161246d57829003601f168201915b5050505050905090565b606060008214156124dc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263c565b600082905060005b6000821461250e5780806124f790613cc7565b915050600a826125079190613b20565b91506124e4565b60008167ffffffffffffffff811115612550577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125825781602001600182028036833780820191505090505b5090505b600085146126355760018261259b9190613bab565b9150600a856125aa9190613d10565b60306125b69190613aca565b60f81b8183815181106125f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262e9190613b20565b9450612586565b8093505050505b919050565b505050565b6126508383612838565b61265d60008484846126a1565b61269c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126939061374f565b60405180910390fd5b505050565b60006126c28473ffffffffffffffffffffffffffffffffffffffff16612a06565b1561282b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126eb611d5a565b8786866040518563ffffffff1660e01b815260040161270d94939291906136c6565b602060405180830381600087803b15801561272757600080fd5b505af192505050801561275857506040513d601f19601f820116820180604052508101906127559190612e9c565b60015b6127db573d8060008114612788576040519150601f19603f3d011682016040523d82523d6000602084013e61278d565b606091505b506000815114156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca9061374f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612830565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f906138cf565b60405180910390fd5b6128b181611cee565b156128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e89061378f565b60405180910390fd5b6128fd60008383612641565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294d9190613aca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a2590613c95565b90600052602060002090601f016020900481019282612a475760008555612a8e565b82601f10612a6057805160ff1916838001178555612a8e565b82800160010185558215612a8e579182015b82811115612a8d578251825591602001919060010190612a72565b5b509050612a9b9190612a9f565b5090565b5b80821115612ab8576000816000905550600101612aa0565b5090565b6000612acf612aca846139fb565b6139ca565b90508083825260208201905082856020860282011115612aee57600080fd5b60005b85811015612b1e5781612b048882612ba4565b845260208401935060208301925050600181019050612af1565b5050509392505050565b6000612b3b612b3684613a27565b6139ca565b905082815260208101848484011115612b5357600080fd5b612b5e848285613c53565b509392505050565b6000612b79612b7484613a57565b6139ca565b905082815260208101848484011115612b9157600080fd5b612b9c848285613c53565b509392505050565b600081359050612bb381613e0e565b92915050565b600082601f830112612bca57600080fd5b8135612bda848260208601612abc565b91505092915050565b600081359050612bf281613e25565b92915050565b600081359050612c0781613e3c565b92915050565b600081519050612c1c81613e3c565b92915050565b600082601f830112612c3357600080fd5b8135612c43848260208601612b28565b91505092915050565b600082601f830112612c5d57600080fd5b8135612c6d848260208601612b66565b91505092915050565b600081359050612c8581613e53565b92915050565b600060208284031215612c9d57600080fd5b6000612cab84828501612ba4565b91505092915050565b60008060408385031215612cc757600080fd5b6000612cd585828601612ba4565b9250506020612ce685828601612ba4565b9150509250929050565b600080600060608486031215612d0557600080fd5b6000612d1386828701612ba4565b9350506020612d2486828701612ba4565b9250506040612d3586828701612c76565b9150509250925092565b60008060008060808587031215612d5557600080fd5b6000612d6387828801612ba4565b9450506020612d7487828801612ba4565b9350506040612d8587828801612c76565b925050606085013567ffffffffffffffff811115612da257600080fd5b612dae87828801612c22565b91505092959194509250565b60008060408385031215612dcd57600080fd5b6000612ddb85828601612ba4565b9250506020612dec85828601612be3565b9150509250929050565b60008060408385031215612e0957600080fd5b6000612e1785828601612ba4565b9250506020612e2885828601612c76565b9150509250929050565b600060208284031215612e4457600080fd5b600082013567ffffffffffffffff811115612e5e57600080fd5b612e6a84828501612bb9565b91505092915050565b600060208284031215612e8557600080fd5b6000612e9384828501612bf8565b91505092915050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c0d565b91505092915050565b600060208284031215612ed757600080fd5b600082013567ffffffffffffffff811115612ef157600080fd5b612efd84828501612c4c565b91505092915050565b600060208284031215612f1857600080fd5b6000612f2684828501612c76565b91505092915050565b612f3881613bdf565b82525050565b612f4781613bf1565b82525050565b6000612f5882613a87565b612f628185613a9d565b9350612f72818560208601613c62565b612f7b81613dfd565b840191505092915050565b6000612f9182613a92565b612f9b8185613aae565b9350612fab818560208601613c62565b612fb481613dfd565b840191505092915050565b6000612fca82613a92565b612fd48185613abf565b9350612fe4818560208601613c62565b80840191505092915050565b6000612ffd603283613aae565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613063602683613aae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130c9601c83613aae565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613109601a83613aae565b91507f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c210000000000006000830152602082019050919050565b6000613149602483613aae565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131af601983613aae565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131ef601183613aae565b91507f496e636f727265637420616d6f756e74210000000000000000000000000000006000830152602082019050919050565b600061322f601083613aae565b91507f53616c65206e6f742061637469766521000000000000000000000000000000006000830152602082019050919050565b600061326f602c83613aae565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132d5603883613aae565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061333b602a83613aae565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a1602983613aae565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613407602083613aae565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613447602c83613aae565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134ad602083613aae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006134ed602983613aae565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613553602f83613aae565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006135b9602183613aae565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061361f603183613aae565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b61368181613c49565b82525050565b60006136938285612fbf565b915061369f8284612fbf565b91508190509392505050565b60006020820190506136c06000830184612f2f565b92915050565b60006080820190506136db6000830187612f2f565b6136e86020830186612f2f565b6136f56040830185613678565b81810360608301526137078184612f4d565b905095945050505050565b60006020820190506137276000830184612f3e565b92915050565b600060208201905081810360008301526137478184612f86565b905092915050565b6000602082019050818103600083015261376881612ff0565b9050919050565b6000602082019050818103600083015261378881613056565b9050919050565b600060208201905081810360008301526137a8816130bc565b9050919050565b600060208201905081810360008301526137c8816130fc565b9050919050565b600060208201905081810360008301526137e88161313c565b9050919050565b60006020820190508181036000830152613808816131a2565b9050919050565b60006020820190508181036000830152613828816131e2565b9050919050565b6000602082019050818103600083015261384881613222565b9050919050565b6000602082019050818103600083015261386881613262565b9050919050565b60006020820190508181036000830152613888816132c8565b9050919050565b600060208201905081810360008301526138a88161332e565b9050919050565b600060208201905081810360008301526138c881613394565b9050919050565b600060208201905081810360008301526138e8816133fa565b9050919050565b600060208201905081810360008301526139088161343a565b9050919050565b60006020820190508181036000830152613928816134a0565b9050919050565b60006020820190508181036000830152613948816134e0565b9050919050565b6000602082019050818103600083015261396881613546565b9050919050565b60006020820190508181036000830152613988816135ac565b9050919050565b600060208201905081810360008301526139a881613612565b9050919050565b60006020820190506139c46000830184613678565b92915050565b6000604051905081810181811067ffffffffffffffff821117156139f1576139f0613dce565b5b8060405250919050565b600067ffffffffffffffff821115613a1657613a15613dce565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a4257613a41613dce565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613a7257613a71613dce565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ad582613c49565b9150613ae083613c49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b1557613b14613d41565b5b828201905092915050565b6000613b2b82613c49565b9150613b3683613c49565b925082613b4657613b45613d70565b5b828204905092915050565b6000613b5c82613c49565b9150613b6783613c49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ba057613b9f613d41565b5b828202905092915050565b6000613bb682613c49565b9150613bc183613c49565b925082821015613bd457613bd3613d41565b5b828203905092915050565b6000613bea82613c29565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c80578082015181840152602081019050613c65565b83811115613c8f576000848401525b50505050565b60006002820490506001821680613cad57607f821691505b60208210811415613cc157613cc0613d9f565b5b50919050565b6000613cd282613c49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0557613d04613d41565b5b600182019050919050565b6000613d1b82613c49565b9150613d2683613c49565b925082613d3657613d35613d70565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e1781613bdf565b8114613e2257600080fd5b50565b613e2e81613bf1565b8114613e3957600080fd5b50565b613e4581613bfd565b8114613e5057600080fd5b50565b613e5c81613c49565b8114613e6757600080fd5b5056fea26469706673582212201228900668b045e91055a6e3bbda10a400514e639c45bedf542c6acd4cee309e64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063c219c2ef116100ab578063e985e9c51161006f578063e985e9c51461079a578063f2fde38b146107d7578063f51f96dd14610800578063f968adbe1461082b578063fc1a1c36146108565761021a565b8063c219c2ef146106c9578063c6f6f216146106e0578063c87b56dd14610709578063d5abeb0114610746578063e268e4d3146107715761021a565b80637f649783116100f25780637f649783146105f85780638da5cb5b1461062157806395d89b411461064c578063a22cb46514610677578063b88d4fde146106a05761021a565b806370a082311461053e578063715018a61461057b578063717d57d3146105925780637de77ecc146105bb5761021a565b80632db11544116101a657806355f804b31161017557806355f804b31461045957806361bc221a146104825780636352211e146104ad5780636c0360eb146104ea5780636f8b44b0146105155761021a565b80632db11544146103d25780633ccfd60b146103ee57806342842e0e14610405578063453c23101461042e5761021a565b8063095ea7b3116101ed578063095ea7b31461030157806318160ddd1461032a5780631919fed71461035557806323b872dd1461037e57806326202370146103a75761021a565b806301c4b3161461021f57806301ffc9a71461025c57806306fdde0314610299578063081812fc146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612c8b565b610881565b6040516102539190613712565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612e73565b6108a1565b6040516102909190613712565b60405180910390f35b3480156102a557600080fd5b506102ae610983565b6040516102bb919061372d565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612f06565b610a15565b6040516102f891906136ab565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612df6565b610a9a565b005b34801561033657600080fd5b5061033f610bb2565b60405161034c91906139af565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612f06565b610bc8565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612cf0565b610c4e565b005b3480156103b357600080fd5b506103bc610cae565b6040516103c99190613712565b60405180910390f35b6103ec60048036038101906103e79190612f06565b610cc1565b005b3480156103fa57600080fd5b50610403611063565b005b34801561041157600080fd5b5061042c60048036038101906104279190612cf0565b611128565b005b34801561043a57600080fd5b50610443611148565b60405161045091906139af565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612ec5565b61114e565b005b34801561048e57600080fd5b506104976111e4565b6040516104a491906139af565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612f06565b6111ea565b6040516104e191906136ab565b60405180910390f35b3480156104f657600080fd5b506104ff61129c565b60405161050c919061372d565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612f06565b61132a565b005b34801561054a57600080fd5b5061056560048036038101906105609190612c8b565b6113b0565b60405161057291906139af565b60405180910390f35b34801561058757600080fd5b50610590611468565b005b34801561059e57600080fd5b506105b960048036038101906105b49190612f06565b6114f0565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612c8b565b611576565b6040516105ef91906139af565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612e32565b61158e565b005b34801561062d57600080fd5b50610636611751565b60405161064391906136ab565b60405180910390f35b34801561065857600080fd5b5061066161177b565b60405161066e919061372d565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612dba565b61180d565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190612d3f565b611823565b005b3480156106d557600080fd5b506106de611885565b005b3480156106ec57600080fd5b5061070760048036038101906107029190612f06565b61192d565b005b34801561071557600080fd5b50610730600480360381019061072b9190612f06565b6119b3565b60405161073d919061372d565b60405180910390f35b34801561075257600080fd5b5061075b611a5a565b60405161076891906139af565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612f06565b611a60565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190612cb4565b611ae6565b6040516107ce9190613712565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612c8b565b611b7a565b005b34801561080c57600080fd5b50610815611c72565b60405161082291906139af565b60405180910390f35b34801561083757600080fd5b50610840611c78565b60405161084d91906139af565b60405180910390f35b34801561086257600080fd5b5061086b611c7e565b60405161087891906139af565b60405180910390f35b60076020528060005260406000206000915054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097c575061097b82611c84565b5b9050919050565b60606000805461099290613c95565b80601f01602080910402602001604051908101604052809291908181526020018280546109be90613c95565b8015610a0b5780601f106109e057610100808354040283529160200191610a0b565b820191906000526020600020905b8154815290600101906020018083116109ee57829003601f168201915b5050505050905090565b6000610a2082611cee565b610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a56906138ef565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa5826111ea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061396f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b35611d5a565b73ffffffffffffffffffffffffffffffffffffffff161480610b645750610b6381610b5e611d5a565b611ae6565b5b610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a9061386f565b60405180910390fd5b610bad8383611d62565b505050565b60006001600e54610bc39190613bab565b905090565b610bd0611d5a565b73ffffffffffffffffffffffffffffffffffffffff16610bee611751565b73ffffffffffffffffffffffffffffffffffffffff1614610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b9061390f565b60405180910390fd5b8060098190555050565b610c5f610c59611d5a565b82611e1b565b610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c959061398f565b60405180910390fd5b610ca9838383611ef9565b505050565b600f60009054906101000a900460ff1681565b600f60009054906101000a900460ff16610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d079061382f565b60405180910390fd5b6001600b54610d1f9190613aca565b81600e54610d2d9190613aca565b1115610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d65906137af565b60405180910390fd5b600c54811115610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa9061380f565b60405180910390fd5b600d5481600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e019190613aca565b1115610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e399061380f565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f7c5780600a54610ea29190613b51565b3414610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061380f565b60405180910390fd5b60005b81811015610f7657610f0e33600e6000815480929190610f0590613cc7565b91905055612155565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f5e90613cc7565b91905055508080610f6e90613cc7565b915050610ee6565b50611060565b80600954610f8a9190613b51565b3414610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc29061380f565b60405180910390fd5b60005b8181101561105e57610ff633600e6000815480929190610fed90613cc7565b91905055612155565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061104690613cc7565b9190505550808061105690613cc7565b915050610fce565b505b50565b61106b611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611089611751565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d69061390f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611125573d6000803e3d6000fd5b50565b61114383838360405180602001604052806000815250611823565b505050565b600d5481565b611156611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611174611751565b73ffffffffffffffffffffffffffffffffffffffff16146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c19061390f565b60405180910390fd5b80601090805190602001906111e0929190612a19565b5050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906138af565b60405180910390fd5b80915050919050565b601080546112a990613c95565b80601f01602080910402602001604051908101604052809291908181526020018280546112d590613c95565b80156113225780601f106112f757610100808354040283529160200191611322565b820191906000526020600020905b81548152906001019060200180831161130557829003601f168201915b505050505081565b611332611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611350611751565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d9061390f565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611421576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114189061388f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611470611d5a565b73ffffffffffffffffffffffffffffffffffffffff1661148e611751565b73ffffffffffffffffffffffffffffffffffffffff16146114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db9061390f565b60405180910390fd5b6114ee6000612173565b565b6114f8611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611516611751565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061390f565b60405180910390fd5b80600a8190555050565b60086020528060005260406000206000915090505481565b611596611d5a565b73ffffffffffffffffffffffffffffffffffffffff166115b4611751565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116019061390f565b60405180910390fd5b60005b815181101561174d5760076000838381518110611653577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600760008484815181106116e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061174590613cc7565b91505061160d565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461178a90613c95565b80601f01602080910402602001604051908101604052809291908181526020018280546117b690613c95565b80156118035780601f106117d857610100808354040283529160200191611803565b820191906000526020600020905b8154815290600101906020018083116117e657829003601f168201915b5050505050905090565b61181f611818611d5a565b8383612239565b5050565b61183461182e611d5a565b83611e1b565b611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a9061398f565b60405180910390fd5b61187f848484846123a6565b50505050565b61188d611d5a565b73ffffffffffffffffffffffffffffffffffffffff166118ab611751565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f89061390f565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611935611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611953611751565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061390f565b60405180910390fd5b80600c8190555050565b60606119be82611cee565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061394f565b60405180910390fd5b6000611a07612402565b90506000815111611a275760405180602001604052806000815250611a52565b80611a3184612494565b604051602001611a42929190613687565b6040516020818303038152906040525b915050919050565b600b5481565b611a68611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611a86611751565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad39061390f565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b82611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611ba0611751565b73ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed9061390f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d9061376f565b60405180910390fd5b611c6f81612173565b50565b60095481565b600c5481565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd5836111ea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e2682611cee565b611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c9061384f565b60405180910390fd5b6000611e70836111ea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611edf57508373ffffffffffffffffffffffffffffffffffffffff16611ec784610a15565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ef05750611eef8185611ae6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f19826111ea565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f669061392f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906137cf565b60405180910390fd5b611fea838383612641565b611ff5600082611d62565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120459190613bab565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209c9190613aca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61216f828260405180602001604052806000815250612646565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f906137ef565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123999190613712565b60405180910390a3505050565b6123b1848484611ef9565b6123bd848484846126a1565b6123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f39061374f565b60405180910390fd5b50505050565b60606010805461241190613c95565b80601f016020809104026020016040519081016040528092919081815260200182805461243d90613c95565b801561248a5780601f1061245f5761010080835404028352916020019161248a565b820191906000526020600020905b81548152906001019060200180831161246d57829003601f168201915b5050505050905090565b606060008214156124dc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263c565b600082905060005b6000821461250e5780806124f790613cc7565b915050600a826125079190613b20565b91506124e4565b60008167ffffffffffffffff811115612550577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125825781602001600182028036833780820191505090505b5090505b600085146126355760018261259b9190613bab565b9150600a856125aa9190613d10565b60306125b69190613aca565b60f81b8183815181106125f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262e9190613b20565b9450612586565b8093505050505b919050565b505050565b6126508383612838565b61265d60008484846126a1565b61269c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126939061374f565b60405180910390fd5b505050565b60006126c28473ffffffffffffffffffffffffffffffffffffffff16612a06565b1561282b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126eb611d5a565b8786866040518563ffffffff1660e01b815260040161270d94939291906136c6565b602060405180830381600087803b15801561272757600080fd5b505af192505050801561275857506040513d601f19601f820116820180604052508101906127559190612e9c565b60015b6127db573d8060008114612788576040519150601f19603f3d011682016040523d82523d6000602084013e61278d565b606091505b506000815114156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca9061374f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612830565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f906138cf565b60405180910390fd5b6128b181611cee565b156128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e89061378f565b60405180910390fd5b6128fd60008383612641565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294d9190613aca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a2590613c95565b90600052602060002090601f016020900481019282612a475760008555612a8e565b82601f10612a6057805160ff1916838001178555612a8e565b82800160010185558215612a8e579182015b82811115612a8d578251825591602001919060010190612a72565b5b509050612a9b9190612a9f565b5090565b5b80821115612ab8576000816000905550600101612aa0565b5090565b6000612acf612aca846139fb565b6139ca565b90508083825260208201905082856020860282011115612aee57600080fd5b60005b85811015612b1e5781612b048882612ba4565b845260208401935060208301925050600181019050612af1565b5050509392505050565b6000612b3b612b3684613a27565b6139ca565b905082815260208101848484011115612b5357600080fd5b612b5e848285613c53565b509392505050565b6000612b79612b7484613a57565b6139ca565b905082815260208101848484011115612b9157600080fd5b612b9c848285613c53565b509392505050565b600081359050612bb381613e0e565b92915050565b600082601f830112612bca57600080fd5b8135612bda848260208601612abc565b91505092915050565b600081359050612bf281613e25565b92915050565b600081359050612c0781613e3c565b92915050565b600081519050612c1c81613e3c565b92915050565b600082601f830112612c3357600080fd5b8135612c43848260208601612b28565b91505092915050565b600082601f830112612c5d57600080fd5b8135612c6d848260208601612b66565b91505092915050565b600081359050612c8581613e53565b92915050565b600060208284031215612c9d57600080fd5b6000612cab84828501612ba4565b91505092915050565b60008060408385031215612cc757600080fd5b6000612cd585828601612ba4565b9250506020612ce685828601612ba4565b9150509250929050565b600080600060608486031215612d0557600080fd5b6000612d1386828701612ba4565b9350506020612d2486828701612ba4565b9250506040612d3586828701612c76565b9150509250925092565b60008060008060808587031215612d5557600080fd5b6000612d6387828801612ba4565b9450506020612d7487828801612ba4565b9350506040612d8587828801612c76565b925050606085013567ffffffffffffffff811115612da257600080fd5b612dae87828801612c22565b91505092959194509250565b60008060408385031215612dcd57600080fd5b6000612ddb85828601612ba4565b9250506020612dec85828601612be3565b9150509250929050565b60008060408385031215612e0957600080fd5b6000612e1785828601612ba4565b9250506020612e2885828601612c76565b9150509250929050565b600060208284031215612e4457600080fd5b600082013567ffffffffffffffff811115612e5e57600080fd5b612e6a84828501612bb9565b91505092915050565b600060208284031215612e8557600080fd5b6000612e9384828501612bf8565b91505092915050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c0d565b91505092915050565b600060208284031215612ed757600080fd5b600082013567ffffffffffffffff811115612ef157600080fd5b612efd84828501612c4c565b91505092915050565b600060208284031215612f1857600080fd5b6000612f2684828501612c76565b91505092915050565b612f3881613bdf565b82525050565b612f4781613bf1565b82525050565b6000612f5882613a87565b612f628185613a9d565b9350612f72818560208601613c62565b612f7b81613dfd565b840191505092915050565b6000612f9182613a92565b612f9b8185613aae565b9350612fab818560208601613c62565b612fb481613dfd565b840191505092915050565b6000612fca82613a92565b612fd48185613abf565b9350612fe4818560208601613c62565b80840191505092915050565b6000612ffd603283613aae565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613063602683613aae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130c9601c83613aae565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613109601a83613aae565b91507f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c210000000000006000830152602082019050919050565b6000613149602483613aae565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131af601983613aae565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131ef601183613aae565b91507f496e636f727265637420616d6f756e74210000000000000000000000000000006000830152602082019050919050565b600061322f601083613aae565b91507f53616c65206e6f742061637469766521000000000000000000000000000000006000830152602082019050919050565b600061326f602c83613aae565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132d5603883613aae565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061333b602a83613aae565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a1602983613aae565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613407602083613aae565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613447602c83613aae565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134ad602083613aae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006134ed602983613aae565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613553602f83613aae565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006135b9602183613aae565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061361f603183613aae565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b61368181613c49565b82525050565b60006136938285612fbf565b915061369f8284612fbf565b91508190509392505050565b60006020820190506136c06000830184612f2f565b92915050565b60006080820190506136db6000830187612f2f565b6136e86020830186612f2f565b6136f56040830185613678565b81810360608301526137078184612f4d565b905095945050505050565b60006020820190506137276000830184612f3e565b92915050565b600060208201905081810360008301526137478184612f86565b905092915050565b6000602082019050818103600083015261376881612ff0565b9050919050565b6000602082019050818103600083015261378881613056565b9050919050565b600060208201905081810360008301526137a8816130bc565b9050919050565b600060208201905081810360008301526137c8816130fc565b9050919050565b600060208201905081810360008301526137e88161313c565b9050919050565b60006020820190508181036000830152613808816131a2565b9050919050565b60006020820190508181036000830152613828816131e2565b9050919050565b6000602082019050818103600083015261384881613222565b9050919050565b6000602082019050818103600083015261386881613262565b9050919050565b60006020820190508181036000830152613888816132c8565b9050919050565b600060208201905081810360008301526138a88161332e565b9050919050565b600060208201905081810360008301526138c881613394565b9050919050565b600060208201905081810360008301526138e8816133fa565b9050919050565b600060208201905081810360008301526139088161343a565b9050919050565b60006020820190508181036000830152613928816134a0565b9050919050565b60006020820190508181036000830152613948816134e0565b9050919050565b6000602082019050818103600083015261396881613546565b9050919050565b60006020820190508181036000830152613988816135ac565b9050919050565b600060208201905081810360008301526139a881613612565b9050919050565b60006020820190506139c46000830184613678565b92915050565b6000604051905081810181811067ffffffffffffffff821117156139f1576139f0613dce565b5b8060405250919050565b600067ffffffffffffffff821115613a1657613a15613dce565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a4257613a41613dce565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613a7257613a71613dce565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ad582613c49565b9150613ae083613c49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b1557613b14613d41565b5b828201905092915050565b6000613b2b82613c49565b9150613b3683613c49565b925082613b4657613b45613d70565b5b828204905092915050565b6000613b5c82613c49565b9150613b6783613c49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ba057613b9f613d41565b5b828202905092915050565b6000613bb682613c49565b9150613bc183613c49565b925082821015613bd457613bd3613d41565b5b828203905092915050565b6000613bea82613c29565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c80578082015181840152602081019050613c65565b83811115613c8f576000848401525b50505050565b60006002820490506001821680613cad57607f821691505b60208210811415613cc157613cc0613d9f565b5b50919050565b6000613cd282613c49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0557613d04613d41565b5b600182019050919050565b6000613d1b82613c49565b9150613d2683613c49565b925082613d3657613d35613d70565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e1781613bdf565b8114613e2257600080fd5b50565b613e2e81613bf1565b8114613e3957600080fd5b50565b613e4581613bfd565b8114613e5057600080fd5b50565b613e5c81613c49565b8114613e6757600080fd5b5056fea26469706673582212201228900668b045e91055a6e3bbda10a400514e639c45bedf542c6acd4cee309e64736f6c63430008000033

Deployed Bytecode Sourcemap

36442:2639:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36519:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23663:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24608:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26167:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25690:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37922:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37088:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26917:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36799:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38212:866;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38033:109;;;;;;;;;;;;;:::i;:::-;;27327:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36736:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36974:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36767:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24302:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36836:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37292:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24032:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4651:103;;;;;;;;;;;;;:::i;:::-;;37185:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36571:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37391:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4000:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24777:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26460:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27583:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37809:105;;;;;;;;;;;;;:::i;:::-;;37619:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24952:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36681:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37710:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26686:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4909:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36620:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36709:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36648:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36519:45;;;;;;;;;;;;;;;;;;;;;;:::o;23663:305::-;23765:4;23817:25;23802:40;;;:11;:40;;;;:105;;;;23874:33;23859:48;;;:11;:48;;;;23802:105;:158;;;;23924:36;23948:11;23924:23;:36::i;:::-;23802:158;23782:178;;23663:305;;;:::o;24608:100::-;24662:13;24695:5;24688:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24608:100;:::o;26167:221::-;26243:7;26271:16;26279:7;26271;:16::i;:::-;26263:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26356:15;:24;26372:7;26356:24;;;;;;;;;;;;;;;;;;;;;26349:31;;26167:221;;;:::o;25690:411::-;25771:13;25787:23;25802:7;25787:14;:23::i;:::-;25771:39;;25835:5;25829:11;;:2;:11;;;;25821:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25929:5;25913:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25938:37;25955:5;25962:12;:10;:12::i;:::-;25938:16;:37::i;:::-;25913:62;25891:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26072:21;26081:2;26085:7;26072:8;:21::i;:::-;25690:411;;;:::o;37922:103::-;37982:4;38016:1;38006:7;;:11;;;;:::i;:::-;37999:18;;37922:103;:::o;37088:89::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37164:5:::1;37152:9;:17;;;;37088:89:::0;:::o;26917:339::-;27112:41;27131:12;:10;:12::i;:::-;27145:7;27112:18;:41::i;:::-;27104:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27220:28;27230:4;27236:2;27240:7;27220:9;:28::i;:::-;26917:339;;;:::o;36799:28::-;;;;;;;;;;;;;:::o;38212:866::-;38281:16;;;;;;;;;;;38273:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;38369:1;38357:9;;:13;;;;:::i;:::-;38347:6;38337:7;;:16;;;;:::i;:::-;:33;;38329:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;38430:8;;38420:6;:18;;38412:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;38511:12;;38501:6;38479:7;:19;38487:10;38479:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;38471:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;38559:12;:24;38572:10;38559:24;;;;;;;;;;;;;;;;;;;;;;;;;38556:515;;;38637:6;38620:14;;:23;;;;:::i;:::-;38607:9;:36;38599:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38684:6;38680:137;38698:6;38694:1;:10;38680:137;;;38729:32;38739:10;38751:7;;:9;;;;;;;;;:::i;:::-;;;;;38729;:32::i;:::-;38780:7;:19;38788:10;38780:19;;;;;;;;;;;;;;;;:21;;;;;;;;;:::i;:::-;;;;;;38706:3;;;;;:::i;:::-;;;;38680:137;;;;38556:515;;;38880:6;38868:9;;:18;;;;:::i;:::-;38855:9;:31;38847:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38927:6;38923:137;38941:6;38937:1;:10;38923:137;;;38972:32;38982:10;38994:7;;:9;;;;;;;;;:::i;:::-;;;;;38972;:32::i;:::-;39023:7;:19;39031:10;39023:19;;;;;;;;;;;;;;;;:21;;;;;;;;;:::i;:::-;;;;;;38949:3;;;;;:::i;:::-;;;;38923:137;;;;38556:515;38212:866;:::o;38033:109::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38091:10:::1;38083:28;;:51;38112:21;38083:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38033:109::o:0;27327:185::-;27465:39;27482:4;27488:2;27492:7;27465:39;;;;;;;;;;;;:16;:39::i;:::-;27327:185;;;:::o;36736:24::-;;;;:::o;36974:106::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37061:11:::1;37051:7;:21;;;;;;;;;;;;:::i;:::-;;36974:106:::0;:::o;36767:23::-;;;;:::o;24302:239::-;24374:7;24394:13;24410:7;:16;24418:7;24410:16;;;;;;;;;;;;;;;;;;;;;24394:32;;24462:1;24445:19;;:5;:19;;;;24437:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24528:5;24521:12;;;24302:239;;;:::o;36836:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37292:91::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37369:6:::1;37357:9;:18;;;;37292:91:::0;:::o;24032:208::-;24104:7;24149:1;24132:19;;:5;:19;;;;24124:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24216:9;:16;24226:5;24216:16;;;;;;;;;;;;;;;;24209:23;;24032:208;;;:::o;4651:103::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4716:30:::1;4743:1;4716:18;:30::i;:::-;4651:103::o:0;37185:99::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37271:5:::1;37254:14;:22;;;;37185:99:::0;:::o;36571:40::-;;;;;;;;;;;;;;;;;:::o;37391:220::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37479:6:::1;37475:129;37493:11;:18;37489:1;:22;37475:129;;;37564:12;:28;37577:11;37589:1;37577:14;;;;;;;;;;;;;;;;;;;;;;37564:28;;;;;;;;;;;;;;;;;;;;;;;;;37563:29;37532:12;:28;37545:11;37557:1;37545:14;;;;;;;;;;;;;;;;;;;;;;37532:28;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37513:3;;;;;:::i;:::-;;;;37475:129;;;;37391:220:::0;:::o;4000:87::-;4046:7;4073:6;;;;;;;;;;;4066:13;;4000:87;:::o;24777:104::-;24833:13;24866:7;24859:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24777:104;:::o;26460:155::-;26555:52;26574:12;:10;:12::i;:::-;26588:8;26598;26555:18;:52::i;:::-;26460:155;;:::o;27583:328::-;27758:41;27777:12;:10;:12::i;:::-;27791:7;27758:18;:41::i;:::-;27750:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27864:39;27878:4;27884:2;27888:7;27897:5;27864:13;:39::i;:::-;27583:328;;;;:::o;37809:105::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37890:16:::1;;;;;;;;;;;37889:17;37870:16;;:36;;;;;;;;;;;;;;;;;;37809:105::o:0;37619:83::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37691:3:::1;37680:8;:14;;;;37619:83:::0;:::o;24952:334::-;25025:13;25059:16;25067:7;25059;:16::i;:::-;25051:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25140:21;25164:10;:8;:10::i;:::-;25140:34;;25216:1;25198:7;25192:21;:25;:86;;;;;;;;;;;;;;;;;25244:7;25253:18;:7;:16;:18::i;:::-;25227:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25192:86;25185:93;;;24952:334;;;:::o;36681:21::-;;;;:::o;37710:91::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37790:3:::1;37775:12;:18;;;;37710:91:::0;:::o;26686:164::-;26783:4;26807:18;:25;26826:5;26807:25;;;;;;;;;;;;;;;:35;26833:8;26807:35;;;;;;;;;;;;;;;;;;;;;;;;;26800:42;;26686:164;;;;:::o;4909:201::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5018:1:::1;4998:22;;:8;:22;;;;4990:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5074:28;5093:8;5074:18;:28::i;:::-;4909:201:::0;:::o;36620:21::-;;;;:::o;36709:20::-;;;;:::o;36648:26::-;;;;:::o;16432:157::-;16517:4;16556:25;16541:40;;;:11;:40;;;;16534:47;;16432:157;;;:::o;29421:127::-;29486:4;29538:1;29510:30;;:7;:16;29518:7;29510:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29503:37;;29421:127;;;:::o;2724:98::-;2777:7;2804:10;2797:17;;2724:98;:::o;33403:174::-;33505:2;33478:15;:24;33494:7;33478:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33561:7;33557:2;33523:46;;33532:23;33547:7;33532:14;:23::i;:::-;33523:46;;;;;;;;;;;;33403:174;;:::o;29715:348::-;29808:4;29833:16;29841:7;29833;:16::i;:::-;29825:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29909:13;29925:23;29940:7;29925:14;:23::i;:::-;29909:39;;29978:5;29967:16;;:7;:16;;;:51;;;;30011:7;29987:31;;:20;29999:7;29987:11;:20::i;:::-;:31;;;29967:51;:87;;;;30022:32;30039:5;30046:7;30022:16;:32::i;:::-;29967:87;29959:96;;;29715:348;;;;:::o;32707:578::-;32866:4;32839:31;;:23;32854:7;32839:14;:23::i;:::-;:31;;;32831:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32949:1;32935:16;;:2;:16;;;;32927:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33005:39;33026:4;33032:2;33036:7;33005:20;:39::i;:::-;33109:29;33126:1;33130:7;33109:8;:29::i;:::-;33170:1;33151:9;:15;33161:4;33151:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33199:1;33182:9;:13;33192:2;33182:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33230:2;33211:7;:16;33219:7;33211:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33269:7;33265:2;33250:27;;33259:4;33250:27;;;;;;;;;;;;32707:578;;;:::o;30405:110::-;30481:26;30491:2;30495:7;30481:26;;;;;;;;;;;;:9;:26::i;:::-;30405:110;;:::o;5270:191::-;5344:16;5363:6;;;;;;;;;;;5344:25;;5389:8;5380:6;;:17;;;;;;;;;;;;;;;;;;5444:8;5413:40;;5434:8;5413:40;;;;;;;;;;;;5270:191;;:::o;33719:315::-;33874:8;33865:17;;:5;:17;;;;33857:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;33961:8;33923:18;:25;33942:5;33923:25;;;;;;;;;;;;;;;:35;33949:8;33923:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34007:8;33985:41;;34000:5;33985:41;;;34017:8;33985:41;;;;;;:::i;:::-;;;;;;;;33719:315;;;:::o;28793:::-;28950:28;28960:4;28966:2;28970:7;28950:9;:28::i;:::-;28997:48;29020:4;29026:2;29030:7;29039:5;28997:22;:48::i;:::-;28989:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28793:315;;;;:::o;36866:100::-;36918:13;36951:7;36944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36866:100;:::o;288:721::-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:76;695:1;687:4;:9;680:76;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:76;;;766:19;798:6;788:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;766:39;;816:154;832:1;823:5;:10;816:154;;860:1;850:11;;;;;:::i;:::-;;;927:2;919:5;:10;;;;:::i;:::-;906:2;:24;;;;:::i;:::-;893:39;;876:6;883;876:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;956:2;947:11;;;;;:::i;:::-;;;816:154;;;994:6;980:21;;;;;288:721;;;;:::o;35970:126::-;;;;:::o;30742:321::-;30872:18;30878:2;30882:7;30872:5;:18::i;:::-;30923:54;30954:1;30958:2;30962:7;30971:5;30923:22;:54::i;:::-;30901:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30742:321;;;:::o;34599:799::-;34754:4;34775:15;:2;:13;;;:15::i;:::-;34771:620;;;34827:2;34811:36;;;34848:12;:10;:12::i;:::-;34862:4;34868:7;34877:5;34811:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34807:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35070:1;35053:6;:13;:18;35049:272;;;35096:60;;;;;;;;;;:::i;:::-;;;;;;;;35049:272;35271:6;35265:13;35256:6;35252:2;35248:15;35241:38;34807:529;34944:41;;;34934:51;;;:6;:51;;;;34927:58;;;;;34771:620;35375:4;35368:11;;34599:799;;;;;;;:::o;31399:382::-;31493:1;31479:16;;:2;:16;;;;31471:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31552:16;31560:7;31552;:16::i;:::-;31551:17;31543:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31614:45;31643:1;31647:2;31651:7;31614:20;:45::i;:::-;31689:1;31672:9;:13;31682:2;31672:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31720:2;31701:7;:16;31709:7;31701:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31765:7;31761:2;31740:33;;31757:1;31740:33;;;;;;;;;;;;31399:382;;:::o;6288:387::-;6348:4;6556:12;6623:7;6611:20;6603:28;;6666:1;6659:4;:8;6652:15;;;6288:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:401::-;;;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;5213:1;5238:53;5283:7;5274:6;5263:9;5259:22;5238:53;:::i;:::-;5228:63;;5184:117;5340:2;5366:50;5408:7;5399:6;5388:9;5384:22;5366:50;:::i;:::-;5356:60;;5311:115;5112:321;;;;;:::o;5439:407::-;;;5564:2;5552:9;5543:7;5539:23;5535:32;5532:2;;;5580:1;5577;5570:12;5532:2;5623:1;5648:53;5693:7;5684:6;5673:9;5669:22;5648:53;:::i;:::-;5638:63;;5594:117;5750:2;5776:53;5821:7;5812:6;5801:9;5797:22;5776:53;:::i;:::-;5766:63;;5721:118;5522:324;;;;;:::o;5852:405::-;;5985:2;5973:9;5964:7;5960:23;5956:32;5953:2;;;6001:1;5998;5991:12;5953:2;6072:1;6061:9;6057:17;6044:31;6102:18;6094:6;6091:30;6088:2;;;6134:1;6131;6124:12;6088:2;6162:78;6232:7;6223:6;6212:9;6208:22;6162:78;:::i;:::-;6152:88;;6015:235;5943:314;;;;:::o;6263:260::-;;6370:2;6358:9;6349:7;6345:23;6341:32;6338:2;;;6386:1;6383;6376:12;6338:2;6429:1;6454:52;6498:7;6489:6;6478:9;6474:22;6454:52;:::i;:::-;6444:62;;6400:116;6328:195;;;;:::o;6529:282::-;;6647:2;6635:9;6626:7;6622:23;6618:32;6615:2;;;6663:1;6660;6653:12;6615:2;6706:1;6731:63;6786:7;6777:6;6766:9;6762:22;6731:63;:::i;:::-;6721:73;;6677:127;6605:206;;;;:::o;6817:375::-;;6935:2;6923:9;6914:7;6910:23;6906:32;6903:2;;;6951:1;6948;6941:12;6903:2;7022:1;7011:9;7007:17;6994:31;7052:18;7044:6;7041:30;7038:2;;;7084:1;7081;7074:12;7038:2;7112:63;7167:7;7158:6;7147:9;7143:22;7112:63;:::i;:::-;7102:73;;6965:220;6893:299;;;;:::o;7198:262::-;;7306:2;7294:9;7285:7;7281:23;7277:32;7274:2;;;7322:1;7319;7312:12;7274:2;7365:1;7390:53;7435:7;7426:6;7415:9;7411:22;7390:53;:::i;:::-;7380:63;;7336:117;7264:196;;;;:::o;7466:118::-;7553:24;7571:5;7553:24;:::i;:::-;7548:3;7541:37;7531:53;;:::o;7590:109::-;7671:21;7686:5;7671:21;:::i;:::-;7666:3;7659:34;7649:50;;:::o;7705:360::-;;7819:38;7851:5;7819:38;:::i;:::-;7873:70;7936:6;7931:3;7873:70;:::i;:::-;7866:77;;7952:52;7997:6;7992:3;7985:4;7978:5;7974:16;7952:52;:::i;:::-;8029:29;8051:6;8029:29;:::i;:::-;8024:3;8020:39;8013:46;;7795:270;;;;;:::o;8071:364::-;;8187:39;8220:5;8187:39;:::i;:::-;8242:71;8306:6;8301:3;8242:71;:::i;:::-;8235:78;;8322:52;8367:6;8362:3;8355:4;8348:5;8344:16;8322:52;:::i;:::-;8399:29;8421:6;8399:29;:::i;:::-;8394:3;8390:39;8383:46;;8163:272;;;;;:::o;8441:377::-;;8575:39;8608:5;8575:39;:::i;:::-;8630:89;8712:6;8707:3;8630:89;:::i;:::-;8623:96;;8728:52;8773:6;8768:3;8761:4;8754:5;8750:16;8728:52;:::i;:::-;8805:6;8800:3;8796:16;8789:23;;8551:267;;;;;:::o;8824:382::-;;8987:67;9051:2;9046:3;8987:67;:::i;:::-;8980:74;;9084:34;9080:1;9075:3;9071:11;9064:55;9150:20;9145:2;9140:3;9136:12;9129:42;9197:2;9192:3;9188:12;9181:19;;8970:236;;;:::o;9212:370::-;;9375:67;9439:2;9434:3;9375:67;:::i;:::-;9368:74;;9472:34;9468:1;9463:3;9459:11;9452:55;9538:8;9533:2;9528:3;9524:12;9517:30;9573:2;9568:3;9564:12;9557:19;;9358:224;;;:::o;9588:326::-;;9751:67;9815:2;9810:3;9751:67;:::i;:::-;9744:74;;9848:30;9844:1;9839:3;9835:11;9828:51;9905:2;9900:3;9896:12;9889:19;;9734:180;;;:::o;9920:324::-;;10083:67;10147:2;10142:3;10083:67;:::i;:::-;10076:74;;10180:28;10176:1;10171:3;10167:11;10160:49;10235:2;10230:3;10226:12;10219:19;;10066:178;;;:::o;10250:368::-;;10413:67;10477:2;10472:3;10413:67;:::i;:::-;10406:74;;10510:34;10506:1;10501:3;10497:11;10490:55;10576:6;10571:2;10566:3;10562:12;10555:28;10609:2;10604:3;10600:12;10593:19;;10396:222;;;:::o;10624:323::-;;10787:67;10851:2;10846:3;10787:67;:::i;:::-;10780:74;;10884:27;10880:1;10875:3;10871:11;10864:48;10938:2;10933:3;10929:12;10922:19;;10770:177;;;:::o;10953:315::-;;11116:67;11180:2;11175:3;11116:67;:::i;:::-;11109:74;;11213:19;11209:1;11204:3;11200:11;11193:40;11259:2;11254:3;11250:12;11243:19;;11099:169;;;:::o;11274:314::-;;11437:67;11501:2;11496:3;11437:67;:::i;:::-;11430:74;;11534:18;11530:1;11525:3;11521:11;11514:39;11579:2;11574:3;11570:12;11563:19;;11420:168;;;:::o;11594:376::-;;11757:67;11821:2;11816:3;11757:67;:::i;:::-;11750:74;;11854:34;11850:1;11845:3;11841:11;11834:55;11920:14;11915:2;11910:3;11906:12;11899:36;11961:2;11956:3;11952:12;11945:19;;11740:230;;;:::o;11976:388::-;;12139:67;12203:2;12198:3;12139:67;:::i;:::-;12132:74;;12236:34;12232:1;12227:3;12223:11;12216:55;12302:26;12297:2;12292:3;12288:12;12281:48;12355:2;12350:3;12346:12;12339:19;;12122:242;;;:::o;12370:374::-;;12533:67;12597:2;12592:3;12533:67;:::i;:::-;12526:74;;12630:34;12626:1;12621:3;12617:11;12610:55;12696:12;12691:2;12686:3;12682:12;12675:34;12735:2;12730:3;12726:12;12719:19;;12516:228;;;:::o;12750:373::-;;12913:67;12977:2;12972:3;12913:67;:::i;:::-;12906:74;;13010:34;13006:1;13001:3;12997:11;12990:55;13076:11;13071:2;13066:3;13062:12;13055:33;13114:2;13109:3;13105:12;13098:19;;12896:227;;;:::o;13129:330::-;;13292:67;13356:2;13351:3;13292:67;:::i;:::-;13285:74;;13389:34;13385:1;13380:3;13376:11;13369:55;13450:2;13445:3;13441:12;13434:19;;13275:184;;;:::o;13465:376::-;;13628:67;13692:2;13687:3;13628:67;:::i;:::-;13621:74;;13725:34;13721:1;13716:3;13712:11;13705:55;13791:14;13786:2;13781:3;13777:12;13770:36;13832:2;13827:3;13823:12;13816:19;;13611:230;;;:::o;13847:330::-;;14010:67;14074:2;14069:3;14010:67;:::i;:::-;14003:74;;14107:34;14103:1;14098:3;14094:11;14087:55;14168:2;14163:3;14159:12;14152:19;;13993:184;;;:::o;14183:373::-;;14346:67;14410:2;14405:3;14346:67;:::i;:::-;14339:74;;14443:34;14439:1;14434:3;14430:11;14423:55;14509:11;14504:2;14499:3;14495:12;14488:33;14547:2;14542:3;14538:12;14531:19;;14329:227;;;:::o;14562:379::-;;14725:67;14789:2;14784:3;14725:67;:::i;:::-;14718:74;;14822:34;14818:1;14813:3;14809:11;14802:55;14888:17;14883:2;14878:3;14874:12;14867:39;14932:2;14927:3;14923:12;14916:19;;14708:233;;;:::o;14947:365::-;;15110:67;15174:2;15169:3;15110:67;:::i;:::-;15103:74;;15207:34;15203:1;15198:3;15194:11;15187:55;15273:3;15268:2;15263:3;15259:12;15252:25;15303:2;15298:3;15294:12;15287:19;;15093:219;;;:::o;15318:381::-;;15481:67;15545:2;15540:3;15481:67;:::i;:::-;15474:74;;15578:34;15574:1;15569:3;15565:11;15558:55;15644:19;15639:2;15634:3;15630:12;15623:41;15690:2;15685:3;15681:12;15674:19;;15464:235;;;:::o;15705:118::-;15792:24;15810:5;15792:24;:::i;:::-;15787:3;15780:37;15770:53;;:::o;15829:435::-;;16031:95;16122:3;16113:6;16031:95;:::i;:::-;16024:102;;16143:95;16234:3;16225:6;16143:95;:::i;:::-;16136:102;;16255:3;16248:10;;16013:251;;;;;:::o;16270:222::-;;16401:2;16390:9;16386:18;16378:26;;16414:71;16482:1;16471:9;16467:17;16458:6;16414:71;:::i;:::-;16368:124;;;;:::o;16498:640::-;;16731:3;16720:9;16716:19;16708:27;;16745:71;16813:1;16802:9;16798:17;16789:6;16745:71;:::i;:::-;16826:72;16894:2;16883:9;16879:18;16870:6;16826:72;:::i;:::-;16908;16976:2;16965:9;16961:18;16952:6;16908:72;:::i;:::-;17027:9;17021:4;17017:20;17012:2;17001:9;16997:18;16990:48;17055:76;17126:4;17117:6;17055:76;:::i;:::-;17047:84;;16698:440;;;;;;;:::o;17144:210::-;;17269:2;17258:9;17254:18;17246:26;;17282:65;17344:1;17333:9;17329:17;17320:6;17282:65;:::i;:::-;17236:118;;;;:::o;17360:313::-;;17511:2;17500:9;17496:18;17488:26;;17560:9;17554:4;17550:20;17546:1;17535:9;17531:17;17524:47;17588:78;17661:4;17652:6;17588:78;:::i;:::-;17580:86;;17478:195;;;;:::o;17679:419::-;;17883:2;17872:9;17868:18;17860:26;;17932:9;17926:4;17922:20;17918:1;17907:9;17903:17;17896:47;17960:131;18086:4;17960:131;:::i;:::-;17952:139;;17850:248;;;:::o;18104:419::-;;18308:2;18297:9;18293:18;18285:26;;18357:9;18351:4;18347:20;18343:1;18332:9;18328:17;18321:47;18385:131;18511:4;18385:131;:::i;:::-;18377:139;;18275:248;;;:::o;18529:419::-;;18733:2;18722:9;18718:18;18710:26;;18782:9;18776:4;18772:20;18768:1;18757:9;18753:17;18746:47;18810:131;18936:4;18810:131;:::i;:::-;18802:139;;18700:248;;;:::o;18954:419::-;;19158:2;19147:9;19143:18;19135:26;;19207:9;19201:4;19197:20;19193:1;19182:9;19178:17;19171:47;19235:131;19361:4;19235:131;:::i;:::-;19227:139;;19125:248;;;:::o;19379:419::-;;19583:2;19572:9;19568:18;19560:26;;19632:9;19626:4;19622:20;19618:1;19607:9;19603:17;19596:47;19660:131;19786:4;19660:131;:::i;:::-;19652:139;;19550:248;;;:::o;19804:419::-;;20008:2;19997:9;19993:18;19985:26;;20057:9;20051:4;20047:20;20043:1;20032:9;20028:17;20021:47;20085:131;20211:4;20085:131;:::i;:::-;20077:139;;19975:248;;;:::o;20229:419::-;;20433:2;20422:9;20418:18;20410:26;;20482:9;20476:4;20472:20;20468:1;20457:9;20453:17;20446:47;20510:131;20636:4;20510:131;:::i;:::-;20502:139;;20400:248;;;:::o;20654:419::-;;20858:2;20847:9;20843:18;20835:26;;20907:9;20901:4;20897:20;20893:1;20882:9;20878:17;20871:47;20935:131;21061:4;20935:131;:::i;:::-;20927:139;;20825:248;;;:::o;21079:419::-;;21283:2;21272:9;21268:18;21260:26;;21332:9;21326:4;21322:20;21318:1;21307:9;21303:17;21296:47;21360:131;21486:4;21360:131;:::i;:::-;21352:139;;21250:248;;;:::o;21504:419::-;;21708:2;21697:9;21693:18;21685:26;;21757:9;21751:4;21747:20;21743:1;21732:9;21728:17;21721:47;21785:131;21911:4;21785:131;:::i;:::-;21777:139;;21675:248;;;:::o;21929:419::-;;22133:2;22122:9;22118:18;22110:26;;22182:9;22176:4;22172:20;22168:1;22157:9;22153:17;22146:47;22210:131;22336:4;22210:131;:::i;:::-;22202:139;;22100:248;;;:::o;22354:419::-;;22558:2;22547:9;22543:18;22535:26;;22607:9;22601:4;22597:20;22593:1;22582:9;22578:17;22571:47;22635:131;22761:4;22635:131;:::i;:::-;22627:139;;22525:248;;;:::o;22779:419::-;;22983:2;22972:9;22968:18;22960:26;;23032:9;23026:4;23022:20;23018:1;23007:9;23003:17;22996:47;23060:131;23186:4;23060:131;:::i;:::-;23052:139;;22950:248;;;:::o;23204:419::-;;23408:2;23397:9;23393:18;23385:26;;23457:9;23451:4;23447:20;23443:1;23432:9;23428:17;23421:47;23485:131;23611:4;23485:131;:::i;:::-;23477:139;;23375:248;;;:::o;23629:419::-;;23833:2;23822:9;23818:18;23810:26;;23882:9;23876:4;23872:20;23868:1;23857:9;23853:17;23846:47;23910:131;24036:4;23910:131;:::i;:::-;23902:139;;23800:248;;;:::o;24054:419::-;;24258:2;24247:9;24243:18;24235:26;;24307:9;24301:4;24297:20;24293:1;24282:9;24278:17;24271:47;24335:131;24461:4;24335:131;:::i;:::-;24327:139;;24225:248;;;:::o;24479:419::-;;24683:2;24672:9;24668:18;24660:26;;24732:9;24726:4;24722:20;24718:1;24707:9;24703:17;24696:47;24760:131;24886:4;24760:131;:::i;:::-;24752:139;;24650:248;;;:::o;24904:419::-;;25108:2;25097:9;25093:18;25085:26;;25157:9;25151:4;25147:20;25143:1;25132:9;25128:17;25121:47;25185:131;25311:4;25185:131;:::i;:::-;25177:139;;25075:248;;;:::o;25329:419::-;;25533:2;25522:9;25518:18;25510:26;;25582:9;25576:4;25572:20;25568:1;25557:9;25553:17;25546:47;25610:131;25736:4;25610:131;:::i;:::-;25602:139;;25500:248;;;:::o;25754:222::-;;25885:2;25874:9;25870:18;25862:26;;25898:71;25966:1;25955:9;25951:17;25942:6;25898:71;:::i;:::-;25852:124;;;;:::o;25982:283::-;;26048:2;26042:9;26032:19;;26090:4;26082:6;26078:17;26197:6;26185:10;26182:22;26161:18;26149:10;26146:34;26143:62;26140:2;;;26208:18;;:::i;:::-;26140:2;26248:10;26244:2;26237:22;26022:243;;;;:::o;26271:311::-;;26438:18;26430:6;26427:30;26424:2;;;26460:18;;:::i;:::-;26424:2;26510:4;26502:6;26498:17;26490:25;;26570:4;26564;26560:15;26552:23;;26353:229;;;:::o;26588:331::-;;26739:18;26731:6;26728:30;26725:2;;;26761:18;;:::i;:::-;26725:2;26846:4;26842:9;26835:4;26827:6;26823:17;26819:33;26811:41;;26907:4;26901;26897:15;26889:23;;26654:265;;;:::o;26925:332::-;;27077:18;27069:6;27066:30;27063:2;;;27099:18;;:::i;:::-;27063:2;27184:4;27180:9;27173:4;27165:6;27161:17;27157:33;27149:41;;27245:4;27239;27235:15;27227:23;;26992:265;;;:::o;27263:98::-;;27348:5;27342:12;27332:22;;27321:40;;;:::o;27367:99::-;;27453:5;27447:12;27437:22;;27426:40;;;:::o;27472:168::-;;27589:6;27584:3;27577:19;27629:4;27624:3;27620:14;27605:29;;27567:73;;;;:::o;27646:169::-;;27764:6;27759:3;27752:19;27804:4;27799:3;27795:14;27780:29;;27742:73;;;;:::o;27821:148::-;;27960:3;27945:18;;27935:34;;;;:::o;27975:305::-;;28034:20;28052:1;28034:20;:::i;:::-;28029:25;;28068:20;28086:1;28068:20;:::i;:::-;28063:25;;28222:1;28154:66;28150:74;28147:1;28144:81;28141:2;;;28228:18;;:::i;:::-;28141:2;28272:1;28269;28265:9;28258:16;;28019:261;;;;:::o;28286:185::-;;28343:20;28361:1;28343:20;:::i;:::-;28338:25;;28377:20;28395:1;28377:20;:::i;:::-;28372:25;;28416:1;28406:2;;28421:18;;:::i;:::-;28406:2;28463:1;28460;28456:9;28451:14;;28328:143;;;;:::o;28477:348::-;;28540:20;28558:1;28540:20;:::i;:::-;28535:25;;28574:20;28592:1;28574:20;:::i;:::-;28569:25;;28762:1;28694:66;28690:74;28687:1;28684:81;28679:1;28672:9;28665:17;28661:105;28658:2;;;28769:18;;:::i;:::-;28658:2;28817:1;28814;28810:9;28799:20;;28525:300;;;;:::o;28831:191::-;;28891:20;28909:1;28891:20;:::i;:::-;28886:25;;28925:20;28943:1;28925:20;:::i;:::-;28920:25;;28964:1;28961;28958:8;28955:2;;;28969:18;;:::i;:::-;28955:2;29014:1;29011;29007:9;28999:17;;28876:146;;;;:::o;29028:96::-;;29094:24;29112:5;29094:24;:::i;:::-;29083:35;;29073:51;;;:::o;29130:90::-;;29207:5;29200:13;29193:21;29182:32;;29172:48;;;:::o;29226:149::-;;29302:66;29295:5;29291:78;29280:89;;29270:105;;;:::o;29381:126::-;;29458:42;29451:5;29447:54;29436:65;;29426:81;;;:::o;29513:77::-;;29579:5;29568:16;;29558:32;;;:::o;29596:154::-;29680:6;29675:3;29670;29657:30;29742:1;29733:6;29728:3;29724:16;29717:27;29647:103;;;:::o;29756:307::-;29824:1;29834:113;29848:6;29845:1;29842:13;29834:113;;;29933:1;29928:3;29924:11;29918:18;29914:1;29909:3;29905:11;29898:39;29870:2;29867:1;29863:10;29858:15;;29834:113;;;29965:6;29962:1;29959:13;29956:2;;;30045:1;30036:6;30031:3;30027:16;30020:27;29956:2;29805:258;;;;:::o;30069:320::-;;30150:1;30144:4;30140:12;30130:22;;30197:1;30191:4;30187:12;30218:18;30208:2;;30274:4;30266:6;30262:17;30252:27;;30208:2;30336;30328:6;30325:14;30305:18;30302:38;30299:2;;;30355:18;;:::i;:::-;30299:2;30120:269;;;;:::o;30395:233::-;;30457:24;30475:5;30457:24;:::i;:::-;30448:33;;30503:66;30496:5;30493:77;30490:2;;;30573:18;;:::i;:::-;30490:2;30620:1;30613:5;30609:13;30602:20;;30438:190;;;:::o;30634:176::-;;30683:20;30701:1;30683:20;:::i;:::-;30678:25;;30717:20;30735:1;30717:20;:::i;:::-;30712:25;;30756:1;30746:2;;30761:18;;:::i;:::-;30746:2;30802:1;30799;30795:9;30790:14;;30668:142;;;;:::o;30816:180::-;30864:77;30861:1;30854:88;30961:4;30958:1;30951:15;30985:4;30982:1;30975:15;31002:180;31050:77;31047:1;31040:88;31147:4;31144:1;31137:15;31171:4;31168:1;31161:15;31188:180;31236:77;31233:1;31226:88;31333:4;31330:1;31323:15;31357:4;31354:1;31347:15;31374:180;31422:77;31419:1;31412:88;31519:4;31516:1;31509:15;31543:4;31540:1;31533:15;31560:102;;31652:2;31648:7;31643:2;31636:5;31632:14;31628:28;31618:38;;31608:54;;;:::o;31668:122::-;31741:24;31759:5;31741:24;:::i;:::-;31734:5;31731:35;31721:2;;31780:1;31777;31770:12;31721:2;31711:79;:::o;31796:116::-;31866:21;31881:5;31866:21;:::i;:::-;31859:5;31856:32;31846:2;;31902:1;31899;31892:12;31846:2;31836:76;:::o;31918:120::-;31990:23;32007:5;31990:23;:::i;:::-;31983:5;31980:34;31970:2;;32028:1;32025;32018:12;31970:2;31960:78;:::o;32044:122::-;32117:24;32135:5;32117:24;:::i;:::-;32110:5;32107:35;32097:2;;32156:1;32153;32146:12;32097:2;32087:79;:::o

Swarm Source

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