ETH Price: $3,258.10 (-0.24%)
Gas: 1 Gwei

Token

MetaSapiens (SAPIEN)
 

Overview

Max Total Supply

1,044 SAPIEN

Holders

159

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
stiha.eth
Balance
1 SAPIEN
0x050F2bDEf3bBaaF19aFC198E59E74c7Bb7F4fb2A
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:
MetaSapiens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-22
*/

// SPDX-License-Identifier: MIT
// File: contracts/IERC2981Royalties.sol


pragma solidity ^0.8.0;

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

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



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



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



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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: @openzeppelin/contracts/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



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



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



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: contracts/ERC2981Base.sol


pragma solidity ^0.8.0;



/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /// @notice Uses Bitpacking to encode royalties into one bytes32 (saves gas)
    /// @return the bytes32 representation
    function encodeRoyalties(address recipient, uint256 amount)
        public
        pure
        returns (bytes32)
    {
        require(amount <= 10000, '!WRONG_AMOUNT!');
        return bytes32((uint256(uint160(recipient)) << 96) + amount);
    }

    /// @notice Uses Bitpacking to decode royalties from a bytes32
    /// @return recipient and amount
    function decodeRoyalties(bytes32 royalties)
        public
        pure
        returns (address recipient, uint256 amount)
    {
        recipient = address(uint160(uint256(royalties) >> 96));
        amount = uint256(uint96(uint256(royalties)));
    }
}

// File: contracts/ERC2981ContractWideRoyalties.sol


pragma solidity ^0.8.0;



/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
/// @dev This implementation has the same royalties for each and every tokens
abstract contract ERC2981ContractWideRoyalties is ERC2981Base {
    bytes32 private _royalties;

    /// @dev Sets token royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, 'ERC2981Royalties: Too high');
        _royalties = encodeRoyalties(recipient, value);
    }

    /// @inheritdoc	IERC2981Royalties
    function royaltyInfo(uint256, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        uint256 basis;
        (receiver, basis) = decodeRoyalties(_royalties);
        royaltyAmount = (value * basis) / 10000;
    }
}

// File: @openzeppelin/contracts/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/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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



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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MetaSapiens.sol


// Amended by MetaSupreme

/**
 *
.#%%%%%%%%%. .#%%%-                              +%%%%%%%%%%%%%%%%%%:
 .%@@@@@@@@=:@@@@@                              *@@@@@@@@@@@@@@@@@%.
   ..-@@@@@@@@@@@*.=======:.==========- -=====- #@@%.......:++++++.    -=====-    ===:.=======:.===:  ===: .-=========
     *@@@@@@@@@@@-+@@@@@@@-+@@@@@@@@@+:%@@@@@@# #@@@@+     -@@@@@@@*.  #@@@@@@%=  %@@#.@@@@@@@% @@@@- *@@% #@@@@@@@@@:
     @@@##@@=@@@@ @@@@++++ =+*@@@%++:+@@*+*@@@*  -#@@@@=   -@@@#**@@@* *@@@**#@@@:*@@@ %@@@**** #@@@@-:@@@-+@@@*++++-
    +@@@:=@-=@@@*:@@@+.::    :@@@=  %@@@--=@@@+    :*@@@@+.-@@@+--%@@@ +@@@ :=@@@*-@@@-*@@@::::.-@@@@@:#@@%.@@@%:
   .@@@# :- @@@@:+@@@@@@%    =@@@.  @@@@@@@@@@-      .#@@@@-@@@@@@@@@@ =@@@.*@@@%=.@@@+-@@@@@@@* @@@@@@*@@@:.#@@@+
   *@@@-   :@@@% %@@@@%%=    *@@@  :@@@#++#@@@:        #@@@-@@@#++%@@@.=@@@:-*+:   @@@% @@@@#### *@@@%@@@@@+  =@@@%.
  .@@@%    *@@@=:@@@=        @@@#  -@@@-  *@@@.:@@@@@@@@@@%-@@@-  +@@@:-@@@-       #@@@.#@@%.    :@@@=%@@@@@   .*@@@+
  *@@@-    @@@@ *@@@##%@+   .@@@=  +@@@.  #@@@ -@@@@@@@@@#:-@@@-  +@@@-:@@@+       *@@@-+@@@@@@@+ @@@* #@@@@=    -@@@@-
 .@@@%    =@@@* @@@@@@@@:   -%%#:  =+==   :::.  ....        .           .::.       :+**=:%%@@@@@@ +@@@  #@@@% ==-:.#@@@.
 #@@@+    %@@@:-##*+==-:                                                                      ..: .=+*:  *@@@--@@@@@@@@*
:@@@@.    -:.                                                                                              .:: *#@@@@@@@
*/

pragma solidity >=0.7.0 <0.9.0;




contract MetaSapiens is ERC721Enumerable, Ownable, ERC2981ContractWideRoyalties {
  using Strings for uint256;

  string public baseURI;
  uint256 public cost = 1 ether;
  uint256 public maxSupply = 10101;
  uint256 public maxMintAmount = 10;
  uint256 public maxAvailableTokenID = 100;
  bool public paused = false;
  bool public onlyWhitelistedCanMint = false;
  bool public onlyOwnerCanMint = true;
  address[] public whitelistedAddresses;
  
  enum MintingAvailability { NoChange, Public, PrivateOnlyWhitelisted, PrivateOnlyOwner, Paused, SoldOut }

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, ERC2981Base) returns (bool) {
        return super.supportsInterface(interfaceId);
  }

  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        require(onlyOwnerCanMint == false, "only owner can mint");
        if(onlyWhitelistedCanMint == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    
    uint256 lastTokenIDToMint = supply + _mintAmount;
    require(lastTokenIDToMint <= maxAvailableTokenID, "token ID is not yet available");

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function mintingAvailability() public view returns (MintingAvailability) {
    uint256 supply = totalSupply();
    if (supply >= maxAvailableTokenID || supply >= maxSupply) {
      return MintingAvailability.SoldOut;
    }
    
    if (paused) {
      return MintingAvailability.Paused;
    }
    
    if (onlyOwnerCanMint) {
      return MintingAvailability.PrivateOnlyOwner;
    }
    
    if (onlyWhitelistedCanMint) {
      return MintingAvailability.PrivateOnlyWhitelisted;
    }
    
    return MintingAvailability.Public;
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }
  
  function setRoyalties(address recipient, uint256 value) public onlyOwner {
      _setRoyalties(recipient, value);
  }

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

  //only owner
  function prepareForDrop(uint256 _nextMaxTokenID, uint256 _ownerMintCount, MintingAvailability _postDropMintState) public onlyOwner {
    require(totalSupply() == maxAvailableTokenID, "all tokens from current drop not yet minted");
    maxAvailableTokenID = _nextMaxTokenID;
    if (_ownerMintCount > 0) {
      mint(_ownerMintCount);
    }
    if (_postDropMintState == MintingAvailability.Public) {
      onlyOwnerCanMint = false;
      onlyWhitelistedCanMint = false;
      paused = false;
    } else if (_postDropMintState == MintingAvailability.PrivateOnlyOwner) {
      onlyOwnerCanMint = true;
      onlyWhitelistedCanMint = false;
      paused = false;
    } else if (_postDropMintState == MintingAvailability.PrivateOnlyWhitelisted) {
      onlyOwnerCanMint = false;
      onlyWhitelistedCanMint = true;
      paused = false;
    } else if (_postDropMintState == MintingAvailability.Paused) {
      paused = true;
    }
  }
  
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }

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

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  
  function setMaxAvailableTokenID(uint256 _tokenID) public onlyOwner {
    maxAvailableTokenID = _tokenID;
  }
  
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelistedCanMint(bool _state) public onlyOwner {
    onlyWhitelistedCanMint = _state;
  }
  
  function setOnlyOwnerCanMint(bool _state) public onlyOwner {
    onlyOwnerCanMint = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"royalties","type":"bytes32"}],"name":"decodeRoyalties","outputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"encodeRoyalties","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAvailableTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingAvailability","outputs":[{"internalType":"enum MetaSapiens.MintingAvailability","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyOwnerCanMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelistedCanMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nextMaxTokenID","type":"uint256"},{"internalType":"uint256","name":"_ownerMintCount","type":"uint256"},{"internalType":"enum MetaSapiens.MintingAvailability","name":"_postDropMintState","type":"uint8"}],"name":"prepareForDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"setMaxAvailableTokenID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyOwnerCanMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelistedCanMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052670de0b6b3a7640000600d55612775600e55600a600f5560646010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055503480156200007e57600080fd5b5060405162005ceb38038062005ceb8339818101604052810190620000a49190620003e5565b82828160009080519060200190620000be929190620002b7565b508060019080519060200190620000d7929190620002b7565b505050620000fa620000ee6200011460201b60201c565b6200011c60201b60201c565b6200010b81620001e260201b60201c565b505050620006a5565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001f26200011460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002186200028d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026890620004c5565b60405180910390fd5b80600c908051906020019062000289929190620002b7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002c5906200058d565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b60006200037e620003788462000510565b620004e7565b9050828152602081018484840111156200039d576200039c6200065c565b5b620003aa84828562000557565b509392505050565b600082601f830112620003ca57620003c962000657565b5b8151620003dc84826020860162000367565b91505092915050565b60008060006060848603121562000401576200040062000666565b5b600084015167ffffffffffffffff81111562000422576200042162000661565b5b6200043086828701620003b2565b935050602084015167ffffffffffffffff81111562000454576200045362000661565b5b6200046286828701620003b2565b925050604084015167ffffffffffffffff81111562000486576200048562000661565b5b6200049486828701620003b2565b9150509250925092565b6000620004ad60208362000546565b9150620004ba826200067c565b602082019050919050565b60006020820190508181036000830152620004e0816200049e565b9050919050565b6000620004f362000506565b9050620005018282620005c3565b919050565b6000604051905090565b600067ffffffffffffffff8211156200052e576200052d62000628565b5b62000539826200066b565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005775780820151818401526020810190506200055a565b8381111562000587576000848401525b50505050565b60006002820490506001821680620005a657607f821691505b60208210811415620005bd57620005bc620005f9565b5b50919050565b620005ce826200066b565b810181811067ffffffffffffffff82111715620005f057620005ef62000628565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61563680620006b56000396000f3fe60806040526004361061027d5760003560e01c80636c0360eb1161014f578063aafa9371116100c1578063d5abeb011161007a578063d5abeb01146109c8578063dbd3b2d4146109f3578063e985e9c514610a1e578063edec5f2714610a5b578063f1248bd514610a84578063f2fde38b14610aad5761027d565b8063aafa9371146108a6578063b88d4fde146108d1578063ba4e5c49146108fa578063be02d5f514610937578063c87b56dd14610962578063cc230c0c1461099f5761027d565b80638da5cb5b116101135780638da5cb5b1461079057806393ca2ff6146107bb57806395d89b41146107f957806398d98b1b14610824578063a0712d6814610861578063a22cb4651461087d5761027d565b80636c0360eb146106bd57806370a08231146106e8578063715018a61461072557806385d098dc1461073c5780638c7ea24b146107675761027d565b80632f745c59116101f35780634f6ccce7116101ac5780634f6ccce71461059d57806355f804b3146105da5780635bb94589146106035780635c975abb1461062c5780636352211e1461065757806364513f47146106945761027d565b80632f745c591461048a5780633af32abf146104c75780633ccfd60b1461050457806342842e0e1461050e578063438b63001461053757806344a0d68a146105745761027d565b8063095ea7b311610245578063095ea7b31461037957806313faede6146103a257806318160ddd146103cd578063239c70ae146103f857806323b872dd146104235780632a55205a1461044c5761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063088a4ed014610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613cfb565b610ad6565b6040516102b691906144d6565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613ca1565b610ae8565b005b3480156102f457600080fd5b506102fd610b81565b60405161030a9190614527565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613d9e565b610c13565b6040516103479190614424565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190613d9e565b610c98565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613c14565b610d1e565b005b3480156103ae57600080fd5b506103b7610e36565b6040516103c491906148e9565b60405180910390f35b3480156103d957600080fd5b506103e2610e3c565b6040516103ef91906148e9565b60405180910390f35b34801561040457600080fd5b5061040d610e49565b60405161041a91906148e9565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190613afe565b610e4f565b005b34801561045857600080fd5b50610473600480360381019061046e9190613dcb565b610eaf565b60405161048192919061448b565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613c14565b610eea565b6040516104be91906148e9565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613a91565b610f8f565b6040516104fb91906144d6565b60405180910390f35b61050c61103e565b005b34801561051a57600080fd5b5061053560048036038101906105309190613afe565b611133565b005b34801561054357600080fd5b5061055e60048036038101906105599190613a91565b611153565b60405161056b91906144b4565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613d9e565b611201565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613d9e565b611287565b6040516105d191906148e9565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613d55565b6112f8565b005b34801561060f57600080fd5b5061062a60048036038101906106259190613ca1565b61138e565b005b34801561063857600080fd5b50610641611427565b60405161064e91906144d6565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190613d9e565b61143a565b60405161068b9190614424565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613ca1565b6114ec565b005b3480156106c957600080fd5b506106d2611585565b6040516106df9190614527565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613a91565b611613565b60405161071c91906148e9565b60405180910390f35b34801561073157600080fd5b5061073a6116cb565b005b34801561074857600080fd5b50610751611753565b60405161075e91906144d6565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613c14565b611766565b005b34801561079c57600080fd5b506107a56117f0565b6040516107b29190614424565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190613cce565b61181a565b6040516107f092919061448b565b60405180910390f35b34801561080557600080fd5b5061080e611840565b60405161081b9190614527565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613c14565b6118d2565b60405161085891906144f1565b60405180910390f35b61087b60048036038101906108769190613d9e565b61194a565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613bd4565b611c55565b005b3480156108b257600080fd5b506108bb611dd6565b6040516108c8919061450c565b60405180910390f35b3480156108dd57600080fd5b506108f860048036038101906108f39190613b51565b611e6b565b005b34801561090657600080fd5b50610921600480360381019061091c9190613d9e565b611ecd565b60405161092e9190614424565b60405180910390f35b34801561094357600080fd5b5061094c611f0c565b60405161095991906148e9565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190613d9e565b611f12565b6040516109969190614527565b60405180910390f35b3480156109ab57600080fd5b506109c660048036038101906109c19190613e0b565b611fb9565b005b3480156109d457600080fd5b506109dd612274565b6040516109ea91906148e9565b60405180910390f35b3480156109ff57600080fd5b50610a0861227a565b604051610a1591906144d6565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190613abe565b61228d565b604051610a5291906144d6565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190613c54565b612321565b005b348015610a9057600080fd5b50610aab6004803603810190610aa69190613d9e565b6123c1565b005b348015610ab957600080fd5b50610ad46004803603810190610acf9190613a91565b612447565b005b6000610ae18261253f565b9050919050565b610af06125b9565b73ffffffffffffffffffffffffffffffffffffffff16610b0e6117f0565b73ffffffffffffffffffffffffffffffffffffffff1614610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90614789565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610b9090614c0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbc90614c0c565b8015610c095780601f10610bde57610100808354040283529160200191610c09565b820191906000526020600020905b815481529060010190602001808311610bec57829003601f168201915b5050505050905090565b6000610c1e826125c1565b610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490614769565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ca06125b9565b73ffffffffffffffffffffffffffffffffffffffff16610cbe6117f0565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90614789565b60405180910390fd5b80600f8190555050565b6000610d298261143a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614809565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db96125b9565b73ffffffffffffffffffffffffffffffffffffffff161480610de85750610de781610de26125b9565b61228d565b5b610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90614669565b60405180910390fd5b610e31838361262d565b505050565b600d5481565b6000600880549050905090565b600f5481565b610e60610e5a6125b9565b826126e6565b610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690614849565b60405180910390fd5b610eaa8383836127c4565b505050565b6000806000610ebf600b5461181a565b80925081945050506127108185610ed69190614a99565b610ee09190614a68565b9150509250929050565b6000610ef583611613565b8210610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90614569565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601280549050811015611033578273ffffffffffffffffffffffffffffffffffffffff1660128281548110610fcf57610fce614dd4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611020576001915050611039565b808061102b90614c6f565b915050610f97565b50600090505b919050565b6110466125b9565b73ffffffffffffffffffffffffffffffffffffffff166110646117f0565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190614789565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110e09061440f565b60006040518083038185875af1925050503d806000811461111d576040519150601f19603f3d011682016040523d82523d6000602084013e611122565b606091505b505090508061113057600080fd5b50565b61114e83838360405180602001604052806000815250611e6b565b505050565b6060600061116083611613565b905060008167ffffffffffffffff81111561117e5761117d614e03565b5b6040519080825280602002602001820160405280156111ac5781602001602082028036833780820191505090505b50905060005b828110156111f6576111c48582610eea565b8282815181106111d7576111d6614dd4565b5b60200260200101818152505080806111ee90614c6f565b9150506111b2565b508092505050919050565b6112096125b9565b73ffffffffffffffffffffffffffffffffffffffff166112276117f0565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614789565b60405180910390fd5b80600d8190555050565b6000611291610e3c565b82106112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990614869565b60405180910390fd5b600882815481106112e6576112e5614dd4565b5b90600052602060002001549050919050565b6113006125b9565b73ffffffffffffffffffffffffffffffffffffffff1661131e6117f0565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614789565b60405180910390fd5b80600c908051906020019061138a929190613764565b5050565b6113966125b9565b73ffffffffffffffffffffffffffffffffffffffff166113b46117f0565b73ffffffffffffffffffffffffffffffffffffffff161461140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190614789565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da906146a9565b60405180910390fd5b80915050919050565b6114f46125b9565b73ffffffffffffffffffffffffffffffffffffffff166115126117f0565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90614789565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b600c805461159290614c0c565b80601f01602080910402602001604051908101604052809291908181526020018280546115be90614c0c565b801561160b5780601f106115e05761010080835404028352916020019161160b565b820191906000526020600020905b8154815290600101906020018083116115ee57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614689565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d36125b9565b73ffffffffffffffffffffffffffffffffffffffff166116f16117f0565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90614789565b60405180910390fd5b6117516000612a20565b565b601160029054906101000a900460ff1681565b61176e6125b9565b73ffffffffffffffffffffffffffffffffffffffff1661178c6117f0565b73ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614789565b60405180910390fd5b6117ec8282612ae6565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060608360001c901c91508260001c6bffffffffffffffffffffffff169050915091565b60606001805461184f90614c0c565b80601f016020809104026020016040519081016040528092919081815260200182805461187b90614c0c565b80156118c85780601f1061189d576101008083540402835291602001916118c8565b820191906000526020600020905b8154815290600101906020018083116118ab57829003601f168201915b5050505050905090565b6000612710821115611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906148c9565b60405180910390fd5b8160608473ffffffffffffffffffffffffffffffffffffffff16901b61193f9190614a12565b60001b905092915050565b601160009054906101000a900460ff161561199a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611991906147a9565b60405180910390fd5b60006119a4610e3c565b9050600082116119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e0906148a9565b60405180910390fd5b600f54821115611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a25906146e9565b60405180910390fd5b600e548282611a3d9190614a12565b1115611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906146c9565b60405180910390fd5b611a866117f0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bc45760001515601160029054906101000a900460ff16151514611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614709565b60405180910390fd5b60011515601160019054906101000a900460ff1615151415611b7357611b3333610f8f565b611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990614889565b60405180910390fd5b5b81600d54611b819190614a99565b341015611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90614829565b60405180910390fd5b5b60008282611bd29190614a12565b9050601054811115611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090614729565b60405180910390fd5b6000600190505b838111611c4f57611c3c338285611c379190614a12565b612b3f565b8080611c4790614c6f565b915050611c20565b50505050565b611c5d6125b9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290614629565b60405180910390fd5b8060056000611cd86125b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d856125b9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dca91906144d6565b60405180910390a35050565b600080611de1610e3c565b905060105481101580611df65750600e548110155b15611e05576005915050611e68565b601160009054906101000a900460ff1615611e24576004915050611e68565b601160029054906101000a900460ff1615611e43576003915050611e68565b601160019054906101000a900460ff1615611e62576002915050611e68565b60019150505b90565b611e7c611e766125b9565b836126e6565b611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614849565b60405180910390fd5b611ec784848484612b5d565b50505050565b60128181548110611edd57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6060611f1d826125c1565b611f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f53906147e9565b60405180910390fd5b6000611f66612bb9565b90506000815111611f865760405180602001604052806000815250611fb1565b80611f9084612c4b565b604051602001611fa19291906143eb565b6040516020818303038152906040525b915050919050565b611fc16125b9565b73ffffffffffffffffffffffffffffffffffffffff16611fdf6117f0565b73ffffffffffffffffffffffffffffffffffffffff1614612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614789565b60405180910390fd5b601054612040610e3c565b14612080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612077906145e9565b60405180910390fd5b82601081905550600082111561209a576120998261194a565b5b600160058111156120ae576120ad614d47565b5b8160058111156120c1576120c0614d47565b5b141561211d576000601160026101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160006101000a81548160ff02191690831515021790555061226f565b6003600581111561213157612130614d47565b5b81600581111561214457612143614d47565b5b14156121a0576001601160026101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160006101000a81548160ff02191690831515021790555061226e565b600260058111156121b4576121b3614d47565b5b8160058111156121c7576121c6614d47565b5b1415612223576000601160026101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506000601160006101000a81548160ff02191690831515021790555061226d565b6004600581111561223757612236614d47565b5b81600581111561224a57612249614d47565b5b141561226c576001601160006101000a81548160ff0219169083151502179055505b5b5b5b505050565b600e5481565b601160019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123296125b9565b73ffffffffffffffffffffffffffffffffffffffff166123476117f0565b73ffffffffffffffffffffffffffffffffffffffff161461239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614789565b60405180910390fd5b601260006123ab91906137ea565b8181601291906123bc92919061380b565b505050565b6123c96125b9565b73ffffffffffffffffffffffffffffffffffffffff166123e76117f0565b73ffffffffffffffffffffffffffffffffffffffff161461243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490614789565b60405180910390fd5b8060108190555050565b61244f6125b9565b73ffffffffffffffffffffffffffffffffffffffff1661246d6117f0565b73ffffffffffffffffffffffffffffffffffffffff16146124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba90614789565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a906145a9565b60405180910390fd5b61253c81612a20565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125b257506125b182612dac565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126a08361143a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126f1826125c1565b612730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272790614649565b60405180910390fd5b600061273b8361143a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127aa57508373ffffffffffffffffffffffffffffffffffffffff1661279284610c13565b73ffffffffffffffffffffffffffffffffffffffff16145b806127bb57506127ba818561228d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127e48261143a565b73ffffffffffffffffffffffffffffffffffffffff161461283a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612831906147c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a190614609565b60405180910390fd5b6128b5838383612e26565b6128c060008261262d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129109190614af3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129679190614a12565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612710811115612b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2290614549565b60405180910390fd5b612b3582826118d2565b600b819055505050565b612b59828260405180602001604052806000815250612f3a565b5050565b612b688484846127c4565b612b7484848484612f95565b612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa90614589565b60405180910390fd5b50505050565b6060600c8054612bc890614c0c565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf490614c0c565b8015612c415780601f10612c1657610100808354040283529160200191612c41565b820191906000526020600020905b815481529060010190602001808311612c2457829003601f168201915b5050505050905090565b60606000821415612c93576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da7565b600082905060005b60008214612cc5578080612cae90614c6f565b915050600a82612cbe9190614a68565b9150612c9b565b60008167ffffffffffffffff811115612ce157612ce0614e03565b5b6040519080825280601f01601f191660200182016040528015612d135781602001600182028036833780820191505090505b5090505b60008514612da057600182612d2c9190614af3565b9150600a85612d3b9190614cb8565b6030612d479190614a12565b60f81b818381518110612d5d57612d5c614dd4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d999190614a68565b9450612d17565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1f5750612e1e8261312c565b5b9050919050565b612e3183838361320e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7457612e6f81613213565b612eb3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb257612eb1838261325c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef657612ef1816133c9565b612f35565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3457612f33828261349a565b5b5b505050565b612f448383613519565b612f516000848484612f95565b612f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8790614589565b60405180910390fd5b505050565b6000612fb68473ffffffffffffffffffffffffffffffffffffffff166136e7565b1561311f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fdf6125b9565b8786866040518563ffffffff1660e01b8152600401613001949392919061443f565b602060405180830381600087803b15801561301b57600080fd5b505af192505050801561304c57506040513d601f19601f820116820180604052508101906130499190613d28565b60015b6130cf573d806000811461307c576040519150601f19603f3d011682016040523d82523d6000602084013e613081565b606091505b506000815114156130c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130be90614589565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613124565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131f757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132075750613206826136fa565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161326984611613565b6132739190614af3565b9050600060076000848152602001908152602001600020549050818114613358576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133dd9190614af3565b905060006009600084815260200190815260200160002054905060006008838154811061340d5761340c614dd4565b5b90600052602060002001549050806008838154811061342f5761342e614dd4565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061347e5761347d614da5565b5b6001900381819060005260206000200160009055905550505050565b60006134a583611613565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358090614749565b60405180910390fd5b613592816125c1565b156135d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c9906145c9565b60405180910390fd5b6135de60008383612e26565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461362e9190614a12565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461377090614c0c565b90600052602060002090601f01602090048101928261379257600085556137d9565b82601f106137ab57805160ff19168380011785556137d9565b828001600101855582156137d9579182015b828111156137d85782518255916020019190600101906137bd565b5b5090506137e691906138ab565b5090565b508054600082559060005260206000209081019061380891906138ab565b50565b82805482825590600052602060002090810192821561389a579160200282015b8281111561389957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061382b565b5b5090506138a791906138ab565b5090565b5b808211156138c45760008160009055506001016138ac565b5090565b60006138db6138d684614929565b614904565b9050828152602081018484840111156138f7576138f6614e41565b5b613902848285614bca565b509392505050565b600061391d6139188461495a565b614904565b90508281526020810184848401111561393957613938614e41565b5b613944848285614bca565b509392505050565b60008135905061395b8161557d565b92915050565b60008083601f84011261397757613976614e37565b5b8235905067ffffffffffffffff81111561399457613993614e32565b5b6020830191508360208202830111156139b0576139af614e3c565b5b9250929050565b6000813590506139c681615594565b92915050565b6000813590506139db816155ab565b92915050565b6000813590506139f0816155c2565b92915050565b600081519050613a05816155c2565b92915050565b600082601f830112613a2057613a1f614e37565b5b8135613a308482602086016138c8565b91505092915050565b600081359050613a48816155d9565b92915050565b600082601f830112613a6357613a62614e37565b5b8135613a7384826020860161390a565b91505092915050565b600081359050613a8b816155e9565b92915050565b600060208284031215613aa757613aa6614e4b565b5b6000613ab58482850161394c565b91505092915050565b60008060408385031215613ad557613ad4614e4b565b5b6000613ae38582860161394c565b9250506020613af48582860161394c565b9150509250929050565b600080600060608486031215613b1757613b16614e4b565b5b6000613b258682870161394c565b9350506020613b368682870161394c565b9250506040613b4786828701613a7c565b9150509250925092565b60008060008060808587031215613b6b57613b6a614e4b565b5b6000613b798782880161394c565b9450506020613b8a8782880161394c565b9350506040613b9b87828801613a7c565b925050606085013567ffffffffffffffff811115613bbc57613bbb614e46565b5b613bc887828801613a0b565b91505092959194509250565b60008060408385031215613beb57613bea614e4b565b5b6000613bf98582860161394c565b9250506020613c0a858286016139b7565b9150509250929050565b60008060408385031215613c2b57613c2a614e4b565b5b6000613c398582860161394c565b9250506020613c4a85828601613a7c565b9150509250929050565b60008060208385031215613c6b57613c6a614e4b565b5b600083013567ffffffffffffffff811115613c8957613c88614e46565b5b613c9585828601613961565b92509250509250929050565b600060208284031215613cb757613cb6614e4b565b5b6000613cc5848285016139b7565b91505092915050565b600060208284031215613ce457613ce3614e4b565b5b6000613cf2848285016139cc565b91505092915050565b600060208284031215613d1157613d10614e4b565b5b6000613d1f848285016139e1565b91505092915050565b600060208284031215613d3e57613d3d614e4b565b5b6000613d4c848285016139f6565b91505092915050565b600060208284031215613d6b57613d6a614e4b565b5b600082013567ffffffffffffffff811115613d8957613d88614e46565b5b613d9584828501613a4e565b91505092915050565b600060208284031215613db457613db3614e4b565b5b6000613dc284828501613a7c565b91505092915050565b60008060408385031215613de257613de1614e4b565b5b6000613df085828601613a7c565b9250506020613e0185828601613a7c565b9150509250929050565b600080600060608486031215613e2457613e23614e4b565b5b6000613e3286828701613a7c565b9350506020613e4386828701613a7c565b9250506040613e5486828701613a39565b9150509250925092565b6000613e6a83836143cd565b60208301905092915050565b613e7f81614b27565b82525050565b6000613e908261499b565b613e9a81856149c9565b9350613ea58361498b565b8060005b83811015613ed6578151613ebd8882613e5e565b9750613ec8836149bc565b925050600181019050613ea9565b5085935050505092915050565b613eec81614b39565b82525050565b613efb81614b45565b82525050565b6000613f0c826149a6565b613f1681856149da565b9350613f26818560208601614bd9565b613f2f81614e50565b840191505092915050565b613f4381614bb8565b82525050565b6000613f54826149b1565b613f5e81856149f6565b9350613f6e818560208601614bd9565b613f7781614e50565b840191505092915050565b6000613f8d826149b1565b613f978185614a07565b9350613fa7818560208601614bd9565b80840191505092915050565b6000613fc0601a836149f6565b9150613fcb82614e61565b602082019050919050565b6000613fe3602b836149f6565b9150613fee82614e8a565b604082019050919050565b60006140066032836149f6565b915061401182614ed9565b604082019050919050565b60006140296026836149f6565b915061403482614f28565b604082019050919050565b600061404c601c836149f6565b915061405782614f77565b602082019050919050565b600061406f602b836149f6565b915061407a82614fa0565b604082019050919050565b60006140926024836149f6565b915061409d82614fef565b604082019050919050565b60006140b56019836149f6565b91506140c08261503e565b602082019050919050565b60006140d8602c836149f6565b91506140e382615067565b604082019050919050565b60006140fb6038836149f6565b9150614106826150b6565b604082019050919050565b600061411e602a836149f6565b915061412982615105565b604082019050919050565b60006141416029836149f6565b915061414c82615154565b604082019050919050565b60006141646016836149f6565b915061416f826151a3565b602082019050919050565b60006141876024836149f6565b9150614192826151cc565b604082019050919050565b60006141aa6013836149f6565b91506141b58261521b565b602082019050919050565b60006141cd601d836149f6565b91506141d882615244565b602082019050919050565b60006141f06020836149f6565b91506141fb8261526d565b602082019050919050565b6000614213602c836149f6565b915061421e82615296565b604082019050919050565b60006142366020836149f6565b9150614241826152e5565b602082019050919050565b60006142596016836149f6565b91506142648261530e565b602082019050919050565b600061427c6029836149f6565b915061428782615337565b604082019050919050565b600061429f602f836149f6565b91506142aa82615386565b604082019050919050565b60006142c26021836149f6565b91506142cd826153d5565b604082019050919050565b60006142e56000836149eb565b91506142f082615424565b600082019050919050565b60006143086012836149f6565b915061431382615427565b602082019050919050565b600061432b6031836149f6565b915061433682615450565b604082019050919050565b600061434e602c836149f6565b91506143598261549f565b604082019050919050565b60006143716017836149f6565b915061437c826154ee565b602082019050919050565b6000614394601b836149f6565b915061439f82615517565b602082019050919050565b60006143b7600e836149f6565b91506143c282615540565b602082019050919050565b6143d681614bae565b82525050565b6143e581614bae565b82525050565b60006143f78285613f82565b91506144038284613f82565b91508190509392505050565b600061441a826142d8565b9150819050919050565b60006020820190506144396000830184613e76565b92915050565b60006080820190506144546000830187613e76565b6144616020830186613e76565b61446e60408301856143dc565b81810360608301526144808184613f01565b905095945050505050565b60006040820190506144a06000830185613e76565b6144ad60208301846143dc565b9392505050565b600060208201905081810360008301526144ce8184613e85565b905092915050565b60006020820190506144eb6000830184613ee3565b92915050565b60006020820190506145066000830184613ef2565b92915050565b60006020820190506145216000830184613f3a565b92915050565b600060208201905081810360008301526145418184613f49565b905092915050565b6000602082019050818103600083015261456281613fb3565b9050919050565b6000602082019050818103600083015261458281613fd6565b9050919050565b600060208201905081810360008301526145a281613ff9565b9050919050565b600060208201905081810360008301526145c28161401c565b9050919050565b600060208201905081810360008301526145e28161403f565b9050919050565b6000602082019050818103600083015261460281614062565b9050919050565b6000602082019050818103600083015261462281614085565b9050919050565b60006020820190508181036000830152614642816140a8565b9050919050565b60006020820190508181036000830152614662816140cb565b9050919050565b60006020820190508181036000830152614682816140ee565b9050919050565b600060208201905081810360008301526146a281614111565b9050919050565b600060208201905081810360008301526146c281614134565b9050919050565b600060208201905081810360008301526146e281614157565b9050919050565b600060208201905081810360008301526147028161417a565b9050919050565b600060208201905081810360008301526147228161419d565b9050919050565b60006020820190508181036000830152614742816141c0565b9050919050565b60006020820190508181036000830152614762816141e3565b9050919050565b6000602082019050818103600083015261478281614206565b9050919050565b600060208201905081810360008301526147a281614229565b9050919050565b600060208201905081810360008301526147c28161424c565b9050919050565b600060208201905081810360008301526147e28161426f565b9050919050565b6000602082019050818103600083015261480281614292565b9050919050565b60006020820190508181036000830152614822816142b5565b9050919050565b60006020820190508181036000830152614842816142fb565b9050919050565b600060208201905081810360008301526148628161431e565b9050919050565b6000602082019050818103600083015261488281614341565b9050919050565b600060208201905081810360008301526148a281614364565b9050919050565b600060208201905081810360008301526148c281614387565b9050919050565b600060208201905081810360008301526148e2816143aa565b9050919050565b60006020820190506148fe60008301846143dc565b92915050565b600061490e61491f565b905061491a8282614c3e565b919050565b6000604051905090565b600067ffffffffffffffff82111561494457614943614e03565b5b61494d82614e50565b9050602081019050919050565b600067ffffffffffffffff82111561497557614974614e03565b5b61497e82614e50565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a1d82614bae565b9150614a2883614bae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5d57614a5c614ce9565b5b828201905092915050565b6000614a7382614bae565b9150614a7e83614bae565b925082614a8e57614a8d614d18565b5b828204905092915050565b6000614aa482614bae565b9150614aaf83614bae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ae857614ae7614ce9565b5b828202905092915050565b6000614afe82614bae565b9150614b0983614bae565b925082821015614b1c57614b1b614ce9565b5b828203905092915050565b6000614b3282614b8e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614b8982615569565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614bc382614b7b565b9050919050565b82818337600083830152505050565b60005b83811015614bf7578082015181840152602081019050614bdc565b83811115614c06576000848401525b50505050565b60006002820490506001821680614c2457607f821691505b60208210811415614c3857614c37614d76565b5b50919050565b614c4782614e50565b810181811067ffffffffffffffff82111715614c6657614c65614e03565b5b80604052505050565b6000614c7a82614bae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cad57614cac614ce9565b5b600182019050919050565b6000614cc382614bae565b9150614cce83614bae565b925082614cde57614cdd614d18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c6c20746f6b656e732066726f6d2063757272656e742064726f70206e6f7460008201527f20796574206d696e746564000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c79206f776e65722063616e206d696e7400000000000000000000000000600082015250565b7f746f6b656e204944206973206e6f742079657420617661696c61626c65000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f2157524f4e475f414d4f554e5421000000000000000000000000000000000000600082015250565b6006811061557a57615579614d47565b5b50565b61558681614b27565b811461559157600080fd5b50565b61559d81614b39565b81146155a857600080fd5b50565b6155b481614b45565b81146155bf57600080fd5b50565b6155cb81614b4f565b81146155d657600080fd5b50565b600681106155e657600080fd5b50565b6155f281614bae565b81146155fd57600080fd5b5056fea2646970667358221220e58b27eb15337ece2b8651b3c380d158986a8f82263b08b12421fe114554ebd664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4d65746153617069656e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000653415049454e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696171376e7177726768353769716270627077656d3735703578746537706d6d346d63673471613772737a7465617477693235716d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636c0360eb1161014f578063aafa9371116100c1578063d5abeb011161007a578063d5abeb01146109c8578063dbd3b2d4146109f3578063e985e9c514610a1e578063edec5f2714610a5b578063f1248bd514610a84578063f2fde38b14610aad5761027d565b8063aafa9371146108a6578063b88d4fde146108d1578063ba4e5c49146108fa578063be02d5f514610937578063c87b56dd14610962578063cc230c0c1461099f5761027d565b80638da5cb5b116101135780638da5cb5b1461079057806393ca2ff6146107bb57806395d89b41146107f957806398d98b1b14610824578063a0712d6814610861578063a22cb4651461087d5761027d565b80636c0360eb146106bd57806370a08231146106e8578063715018a61461072557806385d098dc1461073c5780638c7ea24b146107675761027d565b80632f745c59116101f35780634f6ccce7116101ac5780634f6ccce71461059d57806355f804b3146105da5780635bb94589146106035780635c975abb1461062c5780636352211e1461065757806364513f47146106945761027d565b80632f745c591461048a5780633af32abf146104c75780633ccfd60b1461050457806342842e0e1461050e578063438b63001461053757806344a0d68a146105745761027d565b8063095ea7b311610245578063095ea7b31461037957806313faede6146103a257806318160ddd146103cd578063239c70ae146103f857806323b872dd146104235780632a55205a1461044c5761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063088a4ed014610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613cfb565b610ad6565b6040516102b691906144d6565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613ca1565b610ae8565b005b3480156102f457600080fd5b506102fd610b81565b60405161030a9190614527565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613d9e565b610c13565b6040516103479190614424565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190613d9e565b610c98565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613c14565b610d1e565b005b3480156103ae57600080fd5b506103b7610e36565b6040516103c491906148e9565b60405180910390f35b3480156103d957600080fd5b506103e2610e3c565b6040516103ef91906148e9565b60405180910390f35b34801561040457600080fd5b5061040d610e49565b60405161041a91906148e9565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190613afe565b610e4f565b005b34801561045857600080fd5b50610473600480360381019061046e9190613dcb565b610eaf565b60405161048192919061448b565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613c14565b610eea565b6040516104be91906148e9565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613a91565b610f8f565b6040516104fb91906144d6565b60405180910390f35b61050c61103e565b005b34801561051a57600080fd5b5061053560048036038101906105309190613afe565b611133565b005b34801561054357600080fd5b5061055e60048036038101906105599190613a91565b611153565b60405161056b91906144b4565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613d9e565b611201565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613d9e565b611287565b6040516105d191906148e9565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613d55565b6112f8565b005b34801561060f57600080fd5b5061062a60048036038101906106259190613ca1565b61138e565b005b34801561063857600080fd5b50610641611427565b60405161064e91906144d6565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190613d9e565b61143a565b60405161068b9190614424565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613ca1565b6114ec565b005b3480156106c957600080fd5b506106d2611585565b6040516106df9190614527565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613a91565b611613565b60405161071c91906148e9565b60405180910390f35b34801561073157600080fd5b5061073a6116cb565b005b34801561074857600080fd5b50610751611753565b60405161075e91906144d6565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613c14565b611766565b005b34801561079c57600080fd5b506107a56117f0565b6040516107b29190614424565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190613cce565b61181a565b6040516107f092919061448b565b60405180910390f35b34801561080557600080fd5b5061080e611840565b60405161081b9190614527565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613c14565b6118d2565b60405161085891906144f1565b60405180910390f35b61087b60048036038101906108769190613d9e565b61194a565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613bd4565b611c55565b005b3480156108b257600080fd5b506108bb611dd6565b6040516108c8919061450c565b60405180910390f35b3480156108dd57600080fd5b506108f860048036038101906108f39190613b51565b611e6b565b005b34801561090657600080fd5b50610921600480360381019061091c9190613d9e565b611ecd565b60405161092e9190614424565b60405180910390f35b34801561094357600080fd5b5061094c611f0c565b60405161095991906148e9565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190613d9e565b611f12565b6040516109969190614527565b60405180910390f35b3480156109ab57600080fd5b506109c660048036038101906109c19190613e0b565b611fb9565b005b3480156109d457600080fd5b506109dd612274565b6040516109ea91906148e9565b60405180910390f35b3480156109ff57600080fd5b50610a0861227a565b604051610a1591906144d6565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190613abe565b61228d565b604051610a5291906144d6565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190613c54565b612321565b005b348015610a9057600080fd5b50610aab6004803603810190610aa69190613d9e565b6123c1565b005b348015610ab957600080fd5b50610ad46004803603810190610acf9190613a91565b612447565b005b6000610ae18261253f565b9050919050565b610af06125b9565b73ffffffffffffffffffffffffffffffffffffffff16610b0e6117f0565b73ffffffffffffffffffffffffffffffffffffffff1614610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90614789565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610b9090614c0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbc90614c0c565b8015610c095780601f10610bde57610100808354040283529160200191610c09565b820191906000526020600020905b815481529060010190602001808311610bec57829003601f168201915b5050505050905090565b6000610c1e826125c1565b610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490614769565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ca06125b9565b73ffffffffffffffffffffffffffffffffffffffff16610cbe6117f0565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90614789565b60405180910390fd5b80600f8190555050565b6000610d298261143a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614809565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db96125b9565b73ffffffffffffffffffffffffffffffffffffffff161480610de85750610de781610de26125b9565b61228d565b5b610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90614669565b60405180910390fd5b610e31838361262d565b505050565b600d5481565b6000600880549050905090565b600f5481565b610e60610e5a6125b9565b826126e6565b610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690614849565b60405180910390fd5b610eaa8383836127c4565b505050565b6000806000610ebf600b5461181a565b80925081945050506127108185610ed69190614a99565b610ee09190614a68565b9150509250929050565b6000610ef583611613565b8210610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90614569565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601280549050811015611033578273ffffffffffffffffffffffffffffffffffffffff1660128281548110610fcf57610fce614dd4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611020576001915050611039565b808061102b90614c6f565b915050610f97565b50600090505b919050565b6110466125b9565b73ffffffffffffffffffffffffffffffffffffffff166110646117f0565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190614789565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110e09061440f565b60006040518083038185875af1925050503d806000811461111d576040519150601f19603f3d011682016040523d82523d6000602084013e611122565b606091505b505090508061113057600080fd5b50565b61114e83838360405180602001604052806000815250611e6b565b505050565b6060600061116083611613565b905060008167ffffffffffffffff81111561117e5761117d614e03565b5b6040519080825280602002602001820160405280156111ac5781602001602082028036833780820191505090505b50905060005b828110156111f6576111c48582610eea565b8282815181106111d7576111d6614dd4565b5b60200260200101818152505080806111ee90614c6f565b9150506111b2565b508092505050919050565b6112096125b9565b73ffffffffffffffffffffffffffffffffffffffff166112276117f0565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614789565b60405180910390fd5b80600d8190555050565b6000611291610e3c565b82106112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990614869565b60405180910390fd5b600882815481106112e6576112e5614dd4565b5b90600052602060002001549050919050565b6113006125b9565b73ffffffffffffffffffffffffffffffffffffffff1661131e6117f0565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614789565b60405180910390fd5b80600c908051906020019061138a929190613764565b5050565b6113966125b9565b73ffffffffffffffffffffffffffffffffffffffff166113b46117f0565b73ffffffffffffffffffffffffffffffffffffffff161461140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190614789565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da906146a9565b60405180910390fd5b80915050919050565b6114f46125b9565b73ffffffffffffffffffffffffffffffffffffffff166115126117f0565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90614789565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b600c805461159290614c0c565b80601f01602080910402602001604051908101604052809291908181526020018280546115be90614c0c565b801561160b5780601f106115e05761010080835404028352916020019161160b565b820191906000526020600020905b8154815290600101906020018083116115ee57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614689565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d36125b9565b73ffffffffffffffffffffffffffffffffffffffff166116f16117f0565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90614789565b60405180910390fd5b6117516000612a20565b565b601160029054906101000a900460ff1681565b61176e6125b9565b73ffffffffffffffffffffffffffffffffffffffff1661178c6117f0565b73ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614789565b60405180910390fd5b6117ec8282612ae6565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060608360001c901c91508260001c6bffffffffffffffffffffffff169050915091565b60606001805461184f90614c0c565b80601f016020809104026020016040519081016040528092919081815260200182805461187b90614c0c565b80156118c85780601f1061189d576101008083540402835291602001916118c8565b820191906000526020600020905b8154815290600101906020018083116118ab57829003601f168201915b5050505050905090565b6000612710821115611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906148c9565b60405180910390fd5b8160608473ffffffffffffffffffffffffffffffffffffffff16901b61193f9190614a12565b60001b905092915050565b601160009054906101000a900460ff161561199a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611991906147a9565b60405180910390fd5b60006119a4610e3c565b9050600082116119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e0906148a9565b60405180910390fd5b600f54821115611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a25906146e9565b60405180910390fd5b600e548282611a3d9190614a12565b1115611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906146c9565b60405180910390fd5b611a866117f0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bc45760001515601160029054906101000a900460ff16151514611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614709565b60405180910390fd5b60011515601160019054906101000a900460ff1615151415611b7357611b3333610f8f565b611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990614889565b60405180910390fd5b5b81600d54611b819190614a99565b341015611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90614829565b60405180910390fd5b5b60008282611bd29190614a12565b9050601054811115611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090614729565b60405180910390fd5b6000600190505b838111611c4f57611c3c338285611c379190614a12565b612b3f565b8080611c4790614c6f565b915050611c20565b50505050565b611c5d6125b9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290614629565b60405180910390fd5b8060056000611cd86125b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d856125b9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dca91906144d6565b60405180910390a35050565b600080611de1610e3c565b905060105481101580611df65750600e548110155b15611e05576005915050611e68565b601160009054906101000a900460ff1615611e24576004915050611e68565b601160029054906101000a900460ff1615611e43576003915050611e68565b601160019054906101000a900460ff1615611e62576002915050611e68565b60019150505b90565b611e7c611e766125b9565b836126e6565b611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614849565b60405180910390fd5b611ec784848484612b5d565b50505050565b60128181548110611edd57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6060611f1d826125c1565b611f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f53906147e9565b60405180910390fd5b6000611f66612bb9565b90506000815111611f865760405180602001604052806000815250611fb1565b80611f9084612c4b565b604051602001611fa19291906143eb565b6040516020818303038152906040525b915050919050565b611fc16125b9565b73ffffffffffffffffffffffffffffffffffffffff16611fdf6117f0565b73ffffffffffffffffffffffffffffffffffffffff1614612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614789565b60405180910390fd5b601054612040610e3c565b14612080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612077906145e9565b60405180910390fd5b82601081905550600082111561209a576120998261194a565b5b600160058111156120ae576120ad614d47565b5b8160058111156120c1576120c0614d47565b5b141561211d576000601160026101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160006101000a81548160ff02191690831515021790555061226f565b6003600581111561213157612130614d47565b5b81600581111561214457612143614d47565b5b14156121a0576001601160026101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160006101000a81548160ff02191690831515021790555061226e565b600260058111156121b4576121b3614d47565b5b8160058111156121c7576121c6614d47565b5b1415612223576000601160026101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506000601160006101000a81548160ff02191690831515021790555061226d565b6004600581111561223757612236614d47565b5b81600581111561224a57612249614d47565b5b141561226c576001601160006101000a81548160ff0219169083151502179055505b5b5b5b505050565b600e5481565b601160019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123296125b9565b73ffffffffffffffffffffffffffffffffffffffff166123476117f0565b73ffffffffffffffffffffffffffffffffffffffff161461239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614789565b60405180910390fd5b601260006123ab91906137ea565b8181601291906123bc92919061380b565b505050565b6123c96125b9565b73ffffffffffffffffffffffffffffffffffffffff166123e76117f0565b73ffffffffffffffffffffffffffffffffffffffff161461243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490614789565b60405180910390fd5b8060108190555050565b61244f6125b9565b73ffffffffffffffffffffffffffffffffffffffff1661246d6117f0565b73ffffffffffffffffffffffffffffffffffffffff16146124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba90614789565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a906145a9565b60405180910390fd5b61253c81612a20565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125b257506125b182612dac565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126a08361143a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126f1826125c1565b612730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272790614649565b60405180910390fd5b600061273b8361143a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127aa57508373ffffffffffffffffffffffffffffffffffffffff1661279284610c13565b73ffffffffffffffffffffffffffffffffffffffff16145b806127bb57506127ba818561228d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127e48261143a565b73ffffffffffffffffffffffffffffffffffffffff161461283a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612831906147c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a190614609565b60405180910390fd5b6128b5838383612e26565b6128c060008261262d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129109190614af3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129679190614a12565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612710811115612b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2290614549565b60405180910390fd5b612b3582826118d2565b600b819055505050565b612b59828260405180602001604052806000815250612f3a565b5050565b612b688484846127c4565b612b7484848484612f95565b612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa90614589565b60405180910390fd5b50505050565b6060600c8054612bc890614c0c565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf490614c0c565b8015612c415780601f10612c1657610100808354040283529160200191612c41565b820191906000526020600020905b815481529060010190602001808311612c2457829003601f168201915b5050505050905090565b60606000821415612c93576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da7565b600082905060005b60008214612cc5578080612cae90614c6f565b915050600a82612cbe9190614a68565b9150612c9b565b60008167ffffffffffffffff811115612ce157612ce0614e03565b5b6040519080825280601f01601f191660200182016040528015612d135781602001600182028036833780820191505090505b5090505b60008514612da057600182612d2c9190614af3565b9150600a85612d3b9190614cb8565b6030612d479190614a12565b60f81b818381518110612d5d57612d5c614dd4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d999190614a68565b9450612d17565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1f5750612e1e8261312c565b5b9050919050565b612e3183838361320e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7457612e6f81613213565b612eb3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb257612eb1838261325c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef657612ef1816133c9565b612f35565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3457612f33828261349a565b5b5b505050565b612f448383613519565b612f516000848484612f95565b612f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8790614589565b60405180910390fd5b505050565b6000612fb68473ffffffffffffffffffffffffffffffffffffffff166136e7565b1561311f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fdf6125b9565b8786866040518563ffffffff1660e01b8152600401613001949392919061443f565b602060405180830381600087803b15801561301b57600080fd5b505af192505050801561304c57506040513d601f19601f820116820180604052508101906130499190613d28565b60015b6130cf573d806000811461307c576040519150601f19603f3d011682016040523d82523d6000602084013e613081565b606091505b506000815114156130c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130be90614589565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613124565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131f757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132075750613206826136fa565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161326984611613565b6132739190614af3565b9050600060076000848152602001908152602001600020549050818114613358576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133dd9190614af3565b905060006009600084815260200190815260200160002054905060006008838154811061340d5761340c614dd4565b5b90600052602060002001549050806008838154811061342f5761342e614dd4565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061347e5761347d614da5565b5b6001900381819060005260206000200160009055905550505050565b60006134a583611613565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358090614749565b60405180910390fd5b613592816125c1565b156135d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c9906145c9565b60405180910390fd5b6135de60008383612e26565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461362e9190614a12565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461377090614c0c565b90600052602060002090601f01602090048101928261379257600085556137d9565b82601f106137ab57805160ff19168380011785556137d9565b828001600101855582156137d9579182015b828111156137d85782518255916020019190600101906137bd565b5b5090506137e691906138ab565b5090565b508054600082559060005260206000209081019061380891906138ab565b50565b82805482825590600052602060002090810192821561389a579160200282015b8281111561389957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061382b565b5b5090506138a791906138ab565b5090565b5b808211156138c45760008160009055506001016138ac565b5090565b60006138db6138d684614929565b614904565b9050828152602081018484840111156138f7576138f6614e41565b5b613902848285614bca565b509392505050565b600061391d6139188461495a565b614904565b90508281526020810184848401111561393957613938614e41565b5b613944848285614bca565b509392505050565b60008135905061395b8161557d565b92915050565b60008083601f84011261397757613976614e37565b5b8235905067ffffffffffffffff81111561399457613993614e32565b5b6020830191508360208202830111156139b0576139af614e3c565b5b9250929050565b6000813590506139c681615594565b92915050565b6000813590506139db816155ab565b92915050565b6000813590506139f0816155c2565b92915050565b600081519050613a05816155c2565b92915050565b600082601f830112613a2057613a1f614e37565b5b8135613a308482602086016138c8565b91505092915050565b600081359050613a48816155d9565b92915050565b600082601f830112613a6357613a62614e37565b5b8135613a7384826020860161390a565b91505092915050565b600081359050613a8b816155e9565b92915050565b600060208284031215613aa757613aa6614e4b565b5b6000613ab58482850161394c565b91505092915050565b60008060408385031215613ad557613ad4614e4b565b5b6000613ae38582860161394c565b9250506020613af48582860161394c565b9150509250929050565b600080600060608486031215613b1757613b16614e4b565b5b6000613b258682870161394c565b9350506020613b368682870161394c565b9250506040613b4786828701613a7c565b9150509250925092565b60008060008060808587031215613b6b57613b6a614e4b565b5b6000613b798782880161394c565b9450506020613b8a8782880161394c565b9350506040613b9b87828801613a7c565b925050606085013567ffffffffffffffff811115613bbc57613bbb614e46565b5b613bc887828801613a0b565b91505092959194509250565b60008060408385031215613beb57613bea614e4b565b5b6000613bf98582860161394c565b9250506020613c0a858286016139b7565b9150509250929050565b60008060408385031215613c2b57613c2a614e4b565b5b6000613c398582860161394c565b9250506020613c4a85828601613a7c565b9150509250929050565b60008060208385031215613c6b57613c6a614e4b565b5b600083013567ffffffffffffffff811115613c8957613c88614e46565b5b613c9585828601613961565b92509250509250929050565b600060208284031215613cb757613cb6614e4b565b5b6000613cc5848285016139b7565b91505092915050565b600060208284031215613ce457613ce3614e4b565b5b6000613cf2848285016139cc565b91505092915050565b600060208284031215613d1157613d10614e4b565b5b6000613d1f848285016139e1565b91505092915050565b600060208284031215613d3e57613d3d614e4b565b5b6000613d4c848285016139f6565b91505092915050565b600060208284031215613d6b57613d6a614e4b565b5b600082013567ffffffffffffffff811115613d8957613d88614e46565b5b613d9584828501613a4e565b91505092915050565b600060208284031215613db457613db3614e4b565b5b6000613dc284828501613a7c565b91505092915050565b60008060408385031215613de257613de1614e4b565b5b6000613df085828601613a7c565b9250506020613e0185828601613a7c565b9150509250929050565b600080600060608486031215613e2457613e23614e4b565b5b6000613e3286828701613a7c565b9350506020613e4386828701613a7c565b9250506040613e5486828701613a39565b9150509250925092565b6000613e6a83836143cd565b60208301905092915050565b613e7f81614b27565b82525050565b6000613e908261499b565b613e9a81856149c9565b9350613ea58361498b565b8060005b83811015613ed6578151613ebd8882613e5e565b9750613ec8836149bc565b925050600181019050613ea9565b5085935050505092915050565b613eec81614b39565b82525050565b613efb81614b45565b82525050565b6000613f0c826149a6565b613f1681856149da565b9350613f26818560208601614bd9565b613f2f81614e50565b840191505092915050565b613f4381614bb8565b82525050565b6000613f54826149b1565b613f5e81856149f6565b9350613f6e818560208601614bd9565b613f7781614e50565b840191505092915050565b6000613f8d826149b1565b613f978185614a07565b9350613fa7818560208601614bd9565b80840191505092915050565b6000613fc0601a836149f6565b9150613fcb82614e61565b602082019050919050565b6000613fe3602b836149f6565b9150613fee82614e8a565b604082019050919050565b60006140066032836149f6565b915061401182614ed9565b604082019050919050565b60006140296026836149f6565b915061403482614f28565b604082019050919050565b600061404c601c836149f6565b915061405782614f77565b602082019050919050565b600061406f602b836149f6565b915061407a82614fa0565b604082019050919050565b60006140926024836149f6565b915061409d82614fef565b604082019050919050565b60006140b56019836149f6565b91506140c08261503e565b602082019050919050565b60006140d8602c836149f6565b91506140e382615067565b604082019050919050565b60006140fb6038836149f6565b9150614106826150b6565b604082019050919050565b600061411e602a836149f6565b915061412982615105565b604082019050919050565b60006141416029836149f6565b915061414c82615154565b604082019050919050565b60006141646016836149f6565b915061416f826151a3565b602082019050919050565b60006141876024836149f6565b9150614192826151cc565b604082019050919050565b60006141aa6013836149f6565b91506141b58261521b565b602082019050919050565b60006141cd601d836149f6565b91506141d882615244565b602082019050919050565b60006141f06020836149f6565b91506141fb8261526d565b602082019050919050565b6000614213602c836149f6565b915061421e82615296565b604082019050919050565b60006142366020836149f6565b9150614241826152e5565b602082019050919050565b60006142596016836149f6565b91506142648261530e565b602082019050919050565b600061427c6029836149f6565b915061428782615337565b604082019050919050565b600061429f602f836149f6565b91506142aa82615386565b604082019050919050565b60006142c26021836149f6565b91506142cd826153d5565b604082019050919050565b60006142e56000836149eb565b91506142f082615424565b600082019050919050565b60006143086012836149f6565b915061431382615427565b602082019050919050565b600061432b6031836149f6565b915061433682615450565b604082019050919050565b600061434e602c836149f6565b91506143598261549f565b604082019050919050565b60006143716017836149f6565b915061437c826154ee565b602082019050919050565b6000614394601b836149f6565b915061439f82615517565b602082019050919050565b60006143b7600e836149f6565b91506143c282615540565b602082019050919050565b6143d681614bae565b82525050565b6143e581614bae565b82525050565b60006143f78285613f82565b91506144038284613f82565b91508190509392505050565b600061441a826142d8565b9150819050919050565b60006020820190506144396000830184613e76565b92915050565b60006080820190506144546000830187613e76565b6144616020830186613e76565b61446e60408301856143dc565b81810360608301526144808184613f01565b905095945050505050565b60006040820190506144a06000830185613e76565b6144ad60208301846143dc565b9392505050565b600060208201905081810360008301526144ce8184613e85565b905092915050565b60006020820190506144eb6000830184613ee3565b92915050565b60006020820190506145066000830184613ef2565b92915050565b60006020820190506145216000830184613f3a565b92915050565b600060208201905081810360008301526145418184613f49565b905092915050565b6000602082019050818103600083015261456281613fb3565b9050919050565b6000602082019050818103600083015261458281613fd6565b9050919050565b600060208201905081810360008301526145a281613ff9565b9050919050565b600060208201905081810360008301526145c28161401c565b9050919050565b600060208201905081810360008301526145e28161403f565b9050919050565b6000602082019050818103600083015261460281614062565b9050919050565b6000602082019050818103600083015261462281614085565b9050919050565b60006020820190508181036000830152614642816140a8565b9050919050565b60006020820190508181036000830152614662816140cb565b9050919050565b60006020820190508181036000830152614682816140ee565b9050919050565b600060208201905081810360008301526146a281614111565b9050919050565b600060208201905081810360008301526146c281614134565b9050919050565b600060208201905081810360008301526146e281614157565b9050919050565b600060208201905081810360008301526147028161417a565b9050919050565b600060208201905081810360008301526147228161419d565b9050919050565b60006020820190508181036000830152614742816141c0565b9050919050565b60006020820190508181036000830152614762816141e3565b9050919050565b6000602082019050818103600083015261478281614206565b9050919050565b600060208201905081810360008301526147a281614229565b9050919050565b600060208201905081810360008301526147c28161424c565b9050919050565b600060208201905081810360008301526147e28161426f565b9050919050565b6000602082019050818103600083015261480281614292565b9050919050565b60006020820190508181036000830152614822816142b5565b9050919050565b60006020820190508181036000830152614842816142fb565b9050919050565b600060208201905081810360008301526148628161431e565b9050919050565b6000602082019050818103600083015261488281614341565b9050919050565b600060208201905081810360008301526148a281614364565b9050919050565b600060208201905081810360008301526148c281614387565b9050919050565b600060208201905081810360008301526148e2816143aa565b9050919050565b60006020820190506148fe60008301846143dc565b92915050565b600061490e61491f565b905061491a8282614c3e565b919050565b6000604051905090565b600067ffffffffffffffff82111561494457614943614e03565b5b61494d82614e50565b9050602081019050919050565b600067ffffffffffffffff82111561497557614974614e03565b5b61497e82614e50565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a1d82614bae565b9150614a2883614bae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5d57614a5c614ce9565b5b828201905092915050565b6000614a7382614bae565b9150614a7e83614bae565b925082614a8e57614a8d614d18565b5b828204905092915050565b6000614aa482614bae565b9150614aaf83614bae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ae857614ae7614ce9565b5b828202905092915050565b6000614afe82614bae565b9150614b0983614bae565b925082821015614b1c57614b1b614ce9565b5b828203905092915050565b6000614b3282614b8e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614b8982615569565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614bc382614b7b565b9050919050565b82818337600083830152505050565b60005b83811015614bf7578082015181840152602081019050614bdc565b83811115614c06576000848401525b50505050565b60006002820490506001821680614c2457607f821691505b60208210811415614c3857614c37614d76565b5b50919050565b614c4782614e50565b810181811067ffffffffffffffff82111715614c6657614c65614e03565b5b80604052505050565b6000614c7a82614bae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cad57614cac614ce9565b5b600182019050919050565b6000614cc382614bae565b9150614cce83614bae565b925082614cde57614cdd614d18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c6c20746f6b656e732066726f6d2063757272656e742064726f70206e6f7460008201527f20796574206d696e746564000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c79206f776e65722063616e206d696e7400000000000000000000000000600082015250565b7f746f6b656e204944206973206e6f742079657420617661696c61626c65000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f2157524f4e475f414d4f554e5421000000000000000000000000000000000000600082015250565b6006811061557a57615579614d47565b5b50565b61558681614b27565b811461559157600080fd5b50565b61559d81614b39565b81146155a857600080fd5b50565b6155b481614b45565b81146155bf57600080fd5b50565b6155cb81614b4f565b81146155d657600080fd5b50565b600681106155e657600080fd5b50565b6155f281614bae565b81146155fd57600080fd5b5056fea2646970667358221220e58b27eb15337ece2b8651b3c380d158986a8f82263b08b12421fe114554ebd664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4d65746153617069656e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000653415049454e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696171376e7177726768353769716270627077656d3735703578746537706d6d346d63673471613772737a7465617477693235716d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MetaSapiens
Arg [1] : _symbol (string): SAPIEN
Arg [2] : _initBaseURI (string): ipfs://bafybeiaq7nqwrgh57iqbpbpwem75p5xte7pmm4mcg4qa7rszteatwi25qm/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4d65746153617069656e73000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 53415049454e0000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f626166796265696171376e7177726768353769716270627077
Arg [9] : 656d3735703578746537706d6d346d63673471613772737a7465617477693235
Arg [10] : 716d2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47856:5734:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48733:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52975:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28020:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29579:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52627:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29102:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47999:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40768:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48070:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30469:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18912:299;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;40436:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50419:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53429:158;;;:::i;:::-;;30879:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50664:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52539:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40958:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52751:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53173:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48153:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27714:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53056:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47973:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27444:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5370:94;;;;;;;;;;;;;:::i;:::-;;48231:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51020:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4719:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17895:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;28189:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17527:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48921:931;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29872:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49860:551;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31135:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48271:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48108:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51145:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51579:952;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48033:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48184:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30238:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53278:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52857:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5619:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48733:182;48849:4;48873:36;48897:11;48873:23;:36::i;:::-;48866:43;;48733:182;;;:::o;52975:73::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53036:6:::1;53027;;:15;;;;;;;;;;;;;;;;;;52975:73:::0;:::o;28020:100::-;28074:13;28107:5;28100:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28020:100;:::o;29579:221::-;29655:7;29683:16;29691:7;29683;:16::i;:::-;29675:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29768:15;:24;29784:7;29768:24;;;;;;;;;;;;;;;;;;;;;29761:31;;29579:221;;;:::o;52627:118::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52722:17:::1;52706:13;:33;;;;52627:118:::0;:::o;29102:411::-;29183:13;29199:23;29214:7;29199:14;:23::i;:::-;29183:39;;29247:5;29241:11;;:2;:11;;;;29233:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29341:5;29325:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29350:37;29367:5;29374:12;:10;:12::i;:::-;29350:16;:37::i;:::-;29325:62;29303:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29484:21;29493:2;29497:7;29484:8;:21::i;:::-;29172:341;29102:411;;:::o;47999:29::-;;;;:::o;40768:113::-;40829:7;40856:10;:17;;;;40849:24;;40768:113;:::o;48070:33::-;;;;:::o;30469:339::-;30664:41;30683:12;:10;:12::i;:::-;30697:7;30664:18;:41::i;:::-;30656:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30772:28;30782:4;30788:2;30792:7;30772:9;:28::i;:::-;30469:339;;;:::o;18912:299::-;19025:16;19043:21;19082:13;19126:27;19142:10;;19126:15;:27::i;:::-;19106:47;;;;;;;;19198:5;19189;19181;:13;;;;:::i;:::-;19180:23;;;;:::i;:::-;19164:39;;19071:140;18912:299;;;;;:::o;40436:256::-;40533:7;40569:23;40586:5;40569:16;:23::i;:::-;40561:5;:31;40553:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40658:12;:19;40671:5;40658:19;;;;;;;;;;;;;;;:26;40678:5;40658:26;;;;;;;;;;;;40651:33;;40436:256;;;;:::o;50419:239::-;50478:4;50496:6;50505:1;50496:10;;50491:143;50512:20;:27;;;;50508:1;:31;50491:143;;;50586:5;50559:32;;:20;50580:1;50559:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;50555:72;;;50613:4;50606:11;;;;;50555:72;50541:3;;;;;:::i;:::-;;;;50491:143;;;;50647:5;50640:12;;50419:239;;;;:::o;53429:158::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53482:12:::1;53508:10;53500:24;;53532:21;53500:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53481:77;;;53573:7;53565:16;;;::::0;::::1;;53474:113;53429:158::o:0;30879:185::-;31017:39;31034:4;31040:2;31044:7;31017:39;;;;;;;;;;;;:16;:39::i;:::-;30879:185;;;:::o;50664:348::-;50739:16;50767:23;50793:17;50803:6;50793:9;:17::i;:::-;50767:43;;50817:25;50859:15;50845:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50817:58;;50887:9;50882:103;50902:15;50898:1;:19;50882:103;;;50947:30;50967:6;50975:1;50947:19;:30::i;:::-;50933:8;50942:1;50933:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;50919:3;;;;;:::i;:::-;;;;50882:103;;;;50998:8;50991:15;;;;50664:348;;;:::o;52539:82::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52607:8:::1;52600:4;:15;;;;52539:82:::0;:::o;40958:233::-;41033:7;41069:30;:28;:30::i;:::-;41061:5;:38;41053:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41166:10;41177:5;41166:17;;;;;;;;:::i;:::-;;;;;;;;;;41159:24;;40958:233;;;:::o;52751:98::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52832:11:::1;52822:7;:21;;;;;;;;;;;;:::i;:::-;;52751:98:::0;:::o;53173:97::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53258:6:::1;53239:16;;:25;;;;;;;;;;;;;;;;;;53173:97:::0;:::o;48153:26::-;;;;;;;;;;;;;:::o;27714:239::-;27786:7;27806:13;27822:7;:16;27830:7;27822:16;;;;;;;;;;;;;;;;;;;;;27806:32;;27874:1;27857:19;;:5;:19;;;;27849:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27940:5;27933:12;;;27714:239;;;:::o;53056:109::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53153:6:::1;53128:22;;:31;;;;;;;;;;;;;;;;;;53056:109:::0;:::o;47973:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27444:208::-;27516:7;27561:1;27544:19;;:5;:19;;;;27536:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27628:9;:16;27638:5;27628:16;;;;;;;;;;;;;;;;27621:23;;27444:208;;;:::o;5370:94::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5435:21:::1;5453:1;5435:9;:21::i;:::-;5370:94::o:0;48231:35::-;;;;;;;;;;;;;:::o;51020:119::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51102:31:::1;51116:9;51127:5;51102:13;:31::i;:::-;51020:119:::0;;:::o;4719:87::-;4765:7;4792:6;;;;;;;;;;;4785:13;;4719:87;:::o;17895:260::-;17987:17;18006:14;18088:2;18074:9;18066:18;;:24;;18038:54;;18135:9;18127:18;;18112:35;;18103:44;;17895:260;;;:::o;28189:104::-;28245:13;28278:7;28271:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28189:104;:::o;17527:254::-;17635:7;17678:5;17668:6;:15;;17660:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;17766:6;17760:2;17745:9;17729:27;;:33;;17728:44;;;;:::i;:::-;17720:53;;17713:60;;17527:254;;;;:::o;48921:931::-;48987:6;;;;;;;;;;;48986:7;48978:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;49027:14;49044:13;:11;:13::i;:::-;49027:30;;49086:1;49072:11;:15;49064:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49149:13;;49134:11;:28;;49126:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49242:9;;49227:11;49218:6;:20;;;;:::i;:::-;:33;;49210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49305:7;:5;:7::i;:::-;49291:21;;:10;:21;;;49287:309;;49353:5;49333:25;;:16;;;;;;;;;;;:25;;;49325:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49422:4;49396:30;;:22;;;;;;;;;;;:30;;;49393:123;;;49451:25;49465:10;49451:13;:25::i;:::-;49443:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49393:123;49554:11;49547:4;;:18;;;;:::i;:::-;49534:9;:31;;49526:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49287:309;49608:25;49645:11;49636:6;:20;;;;:::i;:::-;49608:48;;49692:19;;49671:17;:40;;49663:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;49759:9;49771:1;49759:13;;49754:93;49779:11;49774:1;:16;49754:93;;49806:33;49816:10;49837:1;49828:6;:10;;;;:::i;:::-;49806:9;:33::i;:::-;49792:3;;;;;:::i;:::-;;;;49754:93;;;;48971:881;;48921:931;:::o;29872:295::-;29987:12;:10;:12::i;:::-;29975:24;;:8;:24;;;;29967:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30087:8;30042:18;:32;30061:12;:10;:12::i;:::-;30042:32;;;;;;;;;;;;;;;:42;30075:8;30042:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30140:8;30111:48;;30126:12;:10;:12::i;:::-;30111:48;;;30150:8;30111:48;;;;;;:::i;:::-;;;;;;;;29872:295;;:::o;49860:551::-;49912:19;49940:14;49957:13;:11;:13::i;:::-;49940:30;;49991:19;;49981:6;:29;;:52;;;;50024:9;;50014:6;:19;;49981:52;49977:109;;;50051:27;50044:34;;;;;49977:109;50102:6;;;;;;;;;;;50098:62;;;50126:26;50119:33;;;;;50098:62;50176:16;;;;;;;;;;;50172:82;;;50210:36;50203:43;;;;;50172:82;50270:22;;;;;;;;;;;50266:94;;;50310:42;50303:49;;;;;50266:94;50379:26;50372:33;;;49860:551;;:::o;31135:328::-;31310:41;31329:12;:10;:12::i;:::-;31343:7;31310:18;:41::i;:::-;31302:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31416:39;31430:4;31436:2;31440:7;31449:5;31416:13;:39::i;:::-;31135:328;;;;:::o;48271:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48108:40::-;;;;:::o;51145:412::-;51243:13;51284:16;51292:7;51284;:16::i;:::-;51268:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;51378:28;51409:10;:8;:10::i;:::-;51378:41;;51464:1;51439:14;51433:28;:32;:118;;;;;;;;;;;;;;;;;51501:14;51517:18;:7;:16;:18::i;:::-;51484:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51433:118;51426:125;;;51145:412;;;:::o;51579:952::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51742:19:::1;;51725:13;:11;:13::i;:::-;:36;51717:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;51838:15;51816:19;:37;;;;51882:1;51864:15;:19;51860:63;;;51894:21;51899:15;51894:4;:21::i;:::-;51860:63;51955:26;51933:48;;;;;;;;:::i;:::-;;:18;:48;;;;;;;;:::i;:::-;;;51929:597;;;52011:5;51992:16;;:24;;;;;;;;;;;;;;;;;;52050:5;52025:22;;:30;;;;;;;;;;;;;;;;;;52073:5;52064:6;;:14;;;;;;;;;;;;;;;;;;51929:597;;;52118:36;52096:58;;;;;;;;:::i;:::-;;:18;:58;;;;;;;;:::i;:::-;;;52092:434;;;52184:4;52165:16;;:23;;;;;;;;;;;;;;;;;;52222:5;52197:22;;:30;;;;;;;;;;;;;;;;;;52245:5;52236:6;;:14;;;;;;;;;;;;;;;;;;52092:434;;;52290:42;52268:64;;;;;;;;:::i;:::-;;:18;:64;;;;;;;;:::i;:::-;;;52264:262;;;52362:5;52343:16;;:24;;;;;;;;;;;;;;;;;;52401:4;52376:22;;:29;;;;;;;;;;;;;;;;;;52423:5;52414:6;;:14;;;;;;;;;;;;;;;;;;52264:262;;;52468:26;52446:48;;;;;;;;:::i;:::-;;:18;:48;;;;;;;;:::i;:::-;;;52442:84;;;52514:4;52505:6;;:13;;;;;;;;;;;;;;;;;;52442:84;52264:262;52092:434;51929:597;51579:952:::0;;;:::o;48033:32::-;;;;:::o;48184:42::-;;;;;;;;;;;;;:::o;30238:164::-;30335:4;30359:18;:25;30378:5;30359:25;;;;;;;;;;;;;;;:35;30385:8;30359:35;;;;;;;;;;;;;;;;;;;;;;;;;30352:42;;30238:164;;;;:::o;53278:144::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53360:20:::1;;53353:27;;;;:::i;:::-;53410:6;;53387:20;:29;;;;;;;:::i;:::-;;53278:144:::0;;:::o;52857:110::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52953:8:::1;52931:19;:30;;;;52857:110:::0;:::o;5619:192::-;4950:12;:10;:12::i;:::-;4939:23;;:7;:5;:7::i;:::-;:23;;;4931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5728:1:::1;5708:22;;:8;:22;;;;5700:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5784:19;5794:8;5784:9;:19::i;:::-;5619:192:::0;:::o;17110:283::-;17240:4;17297:35;17282:50;;;:11;:50;;;;:103;;;;17349:36;17373:11;17349:23;:36::i;:::-;17282:103;17262:123;;17110:283;;;:::o;3507:98::-;3560:7;3587:10;3580:17;;3507:98;:::o;32973:127::-;33038:4;33090:1;33062:30;;:7;:16;33070:7;33062:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33055:37;;32973:127;;;:::o;36955:174::-;37057:2;37030:15;:24;37046:7;37030:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37113:7;37109:2;37075:46;;37084:23;37099:7;37084:14;:23::i;:::-;37075:46;;;;;;;;;;;;36955:174;;:::o;33267:348::-;33360:4;33385:16;33393:7;33385;:16::i;:::-;33377:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33461:13;33477:23;33492:7;33477:14;:23::i;:::-;33461:39;;33530:5;33519:16;;:7;:16;;;:51;;;;33563:7;33539:31;;:20;33551:7;33539:11;:20::i;:::-;:31;;;33519:51;:87;;;;33574:32;33591:5;33598:7;33574:16;:32::i;:::-;33519:87;33511:96;;;33267:348;;;;:::o;36259:578::-;36418:4;36391:31;;:23;36406:7;36391:14;:23::i;:::-;:31;;;36383:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36501:1;36487:16;;:2;:16;;;;36479:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36557:39;36578:4;36584:2;36588:7;36557:20;:39::i;:::-;36661:29;36678:1;36682:7;36661:8;:29::i;:::-;36722:1;36703:9;:15;36713:4;36703:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36751:1;36734:9;:13;36744:2;36734:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36782:2;36763:7;:16;36771:7;36763:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36821:7;36817:2;36802:27;;36811:4;36802:27;;;;;;;;;;;;36259:578;;;:::o;5819:173::-;5875:16;5894:6;;;;;;;;;;;5875:25;;5920:8;5911:6;;:17;;;;;;;;;;;;;;;;;;5975:8;5944:40;;5965:8;5944:40;;;;;;;;;;;;5864:128;5819:173;:::o;18670:195::-;18764:5;18755;:14;;18747:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;18824:33;18840:9;18851:5;18824:15;:33::i;:::-;18811:10;:46;;;;18670:195;;:::o;33957:110::-;34033:26;34043:2;34047:7;34033:26;;;;;;;;;;;;:9;:26::i;:::-;33957:110;;:::o;32345:315::-;32502:28;32512:4;32518:2;32522:7;32502:9;:28::i;:::-;32549:48;32572:4;32578:2;32582:7;32591:5;32549:22;:48::i;:::-;32541:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32345:315;;;;:::o;48612:102::-;48672:13;48701:7;48694:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48612:102;:::o;1123:723::-;1179:13;1409:1;1400:5;:10;1396:53;;;1427:10;;;;;;;;;;;;;;;;;;;;;1396:53;1459:12;1474:5;1459:20;;1490:14;1515:78;1530:1;1522:4;:9;1515:78;;1548:8;;;;;:::i;:::-;;;;1579:2;1571:10;;;;;:::i;:::-;;;1515:78;;;1603:19;1635:6;1625:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1603:39;;1653:154;1669:1;1660:5;:10;1653:154;;1697:1;1687:11;;;;;:::i;:::-;;;1764:2;1756:5;:10;;;;:::i;:::-;1743:2;:24;;;;:::i;:::-;1730:39;;1713:6;1720;1713:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1793:2;1784:11;;;;;:::i;:::-;;;1653:154;;;1831:6;1817:21;;;;;1123:723;;;;:::o;40128:224::-;40230:4;40269:35;40254:50;;;:11;:50;;;;:90;;;;40308:36;40332:11;40308:23;:36::i;:::-;40254:90;40247:97;;40128:224;;;:::o;41804:589::-;41948:45;41975:4;41981:2;41985:7;41948:26;:45::i;:::-;42026:1;42010:18;;:4;:18;;;42006:187;;;42045:40;42077:7;42045:31;:40::i;:::-;42006:187;;;42115:2;42107:10;;:4;:10;;;42103:90;;42134:47;42167:4;42173:7;42134:32;:47::i;:::-;42103:90;42006:187;42221:1;42207:16;;:2;:16;;;42203:183;;;42240:45;42277:7;42240:36;:45::i;:::-;42203:183;;;42313:4;42307:10;;:2;:10;;;42303:83;;42334:40;42362:2;42366:7;42334:27;:40::i;:::-;42303:83;42203:183;41804:589;;;:::o;34294:321::-;34424:18;34430:2;34434:7;34424:5;:18::i;:::-;34475:54;34506:1;34510:2;34514:7;34523:5;34475:22;:54::i;:::-;34453:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34294:321;;;:::o;37694:799::-;37849:4;37870:15;:2;:13;;;:15::i;:::-;37866:620;;;37922:2;37906:36;;;37943:12;:10;:12::i;:::-;37957:4;37963:7;37972:5;37906:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37902:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38165:1;38148:6;:13;:18;38144:272;;;38191:60;;;;;;;;;;:::i;:::-;;;;;;;;38144:272;38366:6;38360:13;38351:6;38347:2;38343:15;38336:38;37902:529;38039:41;;;38029:51;;;:6;:51;;;;38022:58;;;;;37866:620;38470:4;38463:11;;37694:799;;;;;;;:::o;27075:305::-;27177:4;27229:25;27214:40;;;:11;:40;;;;:105;;;;27286:33;27271:48;;;:11;:48;;;;27214:105;:158;;;;27336:36;27360:11;27336:23;:36::i;:::-;27214:158;27194:178;;27075:305;;;:::o;39065:126::-;;;;:::o;43116:164::-;43220:10;:17;;;;43193:15;:24;43209:7;43193:24;;;;;;;;;;;:44;;;;43248:10;43264:7;43248:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43116:164;:::o;43907:988::-;44173:22;44223:1;44198:22;44215:4;44198:16;:22::i;:::-;:26;;;;:::i;:::-;44173:51;;44235:18;44256:17;:26;44274:7;44256:26;;;;;;;;;;;;44235:47;;44403:14;44389:10;:28;44385:328;;44434:19;44456:12;:18;44469:4;44456:18;;;;;;;;;;;;;;;:34;44475:14;44456:34;;;;;;;;;;;;44434:56;;44540:11;44507:12;:18;44520:4;44507:18;;;;;;;;;;;;;;;:30;44526:10;44507:30;;;;;;;;;;;:44;;;;44657:10;44624:17;:30;44642:11;44624:30;;;;;;;;;;;:43;;;;44419:294;44385:328;44809:17;:26;44827:7;44809:26;;;;;;;;;;;44802:33;;;44853:12;:18;44866:4;44853:18;;;;;;;;;;;;;;;:34;44872:14;44853:34;;;;;;;;;;;44846:41;;;43988:907;;43907:988;;:::o;45190:1079::-;45443:22;45488:1;45468:10;:17;;;;:21;;;;:::i;:::-;45443:46;;45500:18;45521:15;:24;45537:7;45521:24;;;;;;;;;;;;45500:45;;45872:19;45894:10;45905:14;45894:26;;;;;;;;:::i;:::-;;;;;;;;;;45872:48;;45958:11;45933:10;45944;45933:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46069:10;46038:15;:28;46054:11;46038:28;;;;;;;;;;;:41;;;;46210:15;:24;46226:7;46210:24;;;;;;;;;;;46203:31;;;46245:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45261:1008;;;45190:1079;:::o;42694:221::-;42779:14;42796:20;42813:2;42796:16;:20::i;:::-;42779:37;;42854:7;42827:12;:16;42840:2;42827:16;;;;;;;;;;;;;;;:24;42844:6;42827:24;;;;;;;;;;;:34;;;;42901:6;42872:17;:26;42890:7;42872:26;;;;;;;;;;;:35;;;;42768:147;42694:221;;:::o;34951:382::-;35045:1;35031:16;;:2;:16;;;;35023:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35104:16;35112:7;35104;:16::i;:::-;35103:17;35095:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35166:45;35195:1;35199:2;35203:7;35166:20;:45::i;:::-;35241:1;35224:9;:13;35234:2;35224:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35272:2;35253:7;:16;35261:7;35253:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35317:7;35313:2;35292:33;;35309:1;35292:33;;;;;;;;;;;;34951:382;;:::o;6765:387::-;6825:4;7033:12;7100:7;7088:20;7080:28;;7143:1;7136:4;:8;7129:15;;;6765:387;;;:::o;16705:157::-;16790:4;16829:25;16814:40;;;:11;:40;;;;16807:47;;16705:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2508:187::-;2578:5;2616:6;2603:20;2594:29;;2632:57;2683:5;2632:57;:::i;:::-;2508:187;;;;:::o;2715:340::-;2771:5;2820:3;2813:4;2805:6;2801:17;2797:27;2787:122;;2828:79;;:::i;:::-;2787:122;2945:6;2932:20;2970:79;3045:3;3037:6;3030:4;3022:6;3018:17;2970:79;:::i;:::-;2961:88;;2777:278;2715:340;;;;:::o;3061:139::-;3107:5;3145:6;3132:20;3123:29;;3161:33;3188:5;3161:33;:::i;:::-;3061:139;;;;:::o;3206:329::-;3265:6;3314:2;3302:9;3293:7;3289:23;3285:32;3282:119;;;3320:79;;:::i;:::-;3282:119;3440:1;3465:53;3510:7;3501:6;3490:9;3486:22;3465:53;:::i;:::-;3455:63;;3411:117;3206:329;;;;:::o;3541:474::-;3609:6;3617;3666:2;3654:9;3645:7;3641:23;3637:32;3634:119;;;3672:79;;:::i;:::-;3634:119;3792:1;3817:53;3862:7;3853:6;3842:9;3838:22;3817:53;:::i;:::-;3807:63;;3763:117;3919:2;3945:53;3990:7;3981:6;3970:9;3966:22;3945:53;:::i;:::-;3935:63;;3890:118;3541:474;;;;;:::o;4021:619::-;4098:6;4106;4114;4163:2;4151:9;4142:7;4138:23;4134:32;4131:119;;;4169:79;;:::i;:::-;4131:119;4289:1;4314:53;4359:7;4350:6;4339:9;4335:22;4314:53;:::i;:::-;4304:63;;4260:117;4416:2;4442:53;4487:7;4478:6;4467:9;4463:22;4442:53;:::i;:::-;4432:63;;4387:118;4544:2;4570:53;4615:7;4606:6;4595:9;4591:22;4570:53;:::i;:::-;4560:63;;4515:118;4021:619;;;;;:::o;4646:943::-;4741:6;4749;4757;4765;4814:3;4802:9;4793:7;4789:23;4785:33;4782:120;;;4821:79;;:::i;:::-;4782:120;4941:1;4966:53;5011:7;5002:6;4991:9;4987:22;4966:53;:::i;:::-;4956:63;;4912:117;5068:2;5094:53;5139:7;5130:6;5119:9;5115:22;5094:53;:::i;:::-;5084:63;;5039:118;5196:2;5222:53;5267:7;5258:6;5247:9;5243:22;5222:53;:::i;:::-;5212:63;;5167:118;5352:2;5341:9;5337:18;5324:32;5383:18;5375:6;5372:30;5369:117;;;5405:79;;:::i;:::-;5369:117;5510:62;5564:7;5555:6;5544:9;5540:22;5510:62;:::i;:::-;5500:72;;5295:287;4646:943;;;;;;;:::o;5595:468::-;5660:6;5668;5717:2;5705:9;5696:7;5692:23;5688:32;5685:119;;;5723:79;;:::i;:::-;5685:119;5843:1;5868:53;5913:7;5904:6;5893:9;5889:22;5868:53;:::i;:::-;5858:63;;5814:117;5970:2;5996:50;6038:7;6029:6;6018:9;6014:22;5996:50;:::i;:::-;5986:60;;5941:115;5595:468;;;;;:::o;6069:474::-;6137:6;6145;6194:2;6182:9;6173:7;6169:23;6165:32;6162:119;;;6200:79;;:::i;:::-;6162:119;6320:1;6345:53;6390:7;6381:6;6370:9;6366:22;6345:53;:::i;:::-;6335:63;;6291:117;6447:2;6473:53;6518:7;6509:6;6498:9;6494:22;6473:53;:::i;:::-;6463:63;;6418:118;6069:474;;;;;:::o;6549:559::-;6635:6;6643;6692:2;6680:9;6671:7;6667:23;6663:32;6660:119;;;6698:79;;:::i;:::-;6660:119;6846:1;6835:9;6831:17;6818:31;6876:18;6868:6;6865:30;6862:117;;;6898:79;;:::i;:::-;6862:117;7011:80;7083:7;7074:6;7063:9;7059:22;7011:80;:::i;:::-;6993:98;;;;6789:312;6549:559;;;;;:::o;7114:323::-;7170:6;7219:2;7207:9;7198:7;7194:23;7190:32;7187:119;;;7225:79;;:::i;:::-;7187:119;7345:1;7370:50;7412:7;7403:6;7392:9;7388:22;7370:50;:::i;:::-;7360:60;;7316:114;7114:323;;;;:::o;7443:329::-;7502:6;7551:2;7539:9;7530:7;7526:23;7522:32;7519:119;;;7557:79;;:::i;:::-;7519:119;7677:1;7702:53;7747:7;7738:6;7727:9;7723:22;7702:53;:::i;:::-;7692:63;;7648:117;7443:329;;;;:::o;7778:327::-;7836:6;7885:2;7873:9;7864:7;7860:23;7856:32;7853:119;;;7891:79;;:::i;:::-;7853:119;8011:1;8036:52;8080:7;8071:6;8060:9;8056:22;8036:52;:::i;:::-;8026:62;;7982:116;7778:327;;;;:::o;8111:349::-;8180:6;8229:2;8217:9;8208:7;8204:23;8200:32;8197:119;;;8235:79;;:::i;:::-;8197:119;8355:1;8380:63;8435:7;8426:6;8415:9;8411:22;8380:63;:::i;:::-;8370:73;;8326:127;8111:349;;;;:::o;8466:509::-;8535:6;8584:2;8572:9;8563:7;8559:23;8555:32;8552:119;;;8590:79;;:::i;:::-;8552:119;8738:1;8727:9;8723:17;8710:31;8768:18;8760:6;8757:30;8754:117;;;8790:79;;:::i;:::-;8754:117;8895:63;8950:7;8941:6;8930:9;8926:22;8895:63;:::i;:::-;8885:73;;8681:287;8466:509;;;;:::o;8981:329::-;9040:6;9089:2;9077:9;9068:7;9064:23;9060:32;9057:119;;;9095:79;;:::i;:::-;9057:119;9215:1;9240:53;9285:7;9276:6;9265:9;9261:22;9240:53;:::i;:::-;9230:63;;9186:117;8981:329;;;;:::o;9316:474::-;9384:6;9392;9441:2;9429:9;9420:7;9416:23;9412:32;9409:119;;;9447:79;;:::i;:::-;9409:119;9567:1;9592:53;9637:7;9628:6;9617:9;9613:22;9592:53;:::i;:::-;9582:63;;9538:117;9694:2;9720:53;9765:7;9756:6;9745:9;9741:22;9720:53;:::i;:::-;9710:63;;9665:118;9316:474;;;;;:::o;9796:667::-;9897:6;9905;9913;9962:2;9950:9;9941:7;9937:23;9933:32;9930:119;;;9968:79;;:::i;:::-;9930:119;10088:1;10113:53;10158:7;10149:6;10138:9;10134:22;10113:53;:::i;:::-;10103:63;;10059:117;10215:2;10241:53;10286:7;10277:6;10266:9;10262:22;10241:53;:::i;:::-;10231:63;;10186:118;10343:2;10369:77;10438:7;10429:6;10418:9;10414:22;10369:77;:::i;:::-;10359:87;;10314:142;9796:667;;;;;:::o;10469:179::-;10538:10;10559:46;10601:3;10593:6;10559:46;:::i;:::-;10637:4;10632:3;10628:14;10614:28;;10469:179;;;;:::o;10654:118::-;10741:24;10759:5;10741:24;:::i;:::-;10736:3;10729:37;10654:118;;:::o;10808:732::-;10927:3;10956:54;11004:5;10956:54;:::i;:::-;11026:86;11105:6;11100:3;11026:86;:::i;:::-;11019:93;;11136:56;11186:5;11136:56;:::i;:::-;11215:7;11246:1;11231:284;11256:6;11253:1;11250:13;11231:284;;;11332:6;11326:13;11359:63;11418:3;11403:13;11359:63;:::i;:::-;11352:70;;11445:60;11498:6;11445:60;:::i;:::-;11435:70;;11291:224;11278:1;11275;11271:9;11266:14;;11231:284;;;11235:14;11531:3;11524:10;;10932:608;;;10808:732;;;;:::o;11546:109::-;11627:21;11642:5;11627:21;:::i;:::-;11622:3;11615:34;11546:109;;:::o;11661:118::-;11748:24;11766:5;11748:24;:::i;:::-;11743:3;11736:37;11661:118;;:::o;11785:360::-;11871:3;11899:38;11931:5;11899:38;:::i;:::-;11953:70;12016:6;12011:3;11953:70;:::i;:::-;11946:77;;12032:52;12077:6;12072:3;12065:4;12058:5;12054:16;12032:52;:::i;:::-;12109:29;12131:6;12109:29;:::i;:::-;12104:3;12100:39;12093:46;;11875:270;11785:360;;;;:::o;12151:175::-;12260:59;12313:5;12260:59;:::i;:::-;12255:3;12248:72;12151:175;;:::o;12332:364::-;12420:3;12448:39;12481:5;12448:39;:::i;:::-;12503:71;12567:6;12562:3;12503:71;:::i;:::-;12496:78;;12583:52;12628:6;12623:3;12616:4;12609:5;12605:16;12583:52;:::i;:::-;12660:29;12682:6;12660:29;:::i;:::-;12655:3;12651:39;12644:46;;12424:272;12332:364;;;;:::o;12702:377::-;12808:3;12836:39;12869:5;12836:39;:::i;:::-;12891:89;12973:6;12968:3;12891:89;:::i;:::-;12884:96;;12989:52;13034:6;13029:3;13022:4;13015:5;13011:16;12989:52;:::i;:::-;13066:6;13061:3;13057:16;13050:23;;12812:267;12702:377;;;;:::o;13085:366::-;13227:3;13248:67;13312:2;13307:3;13248:67;:::i;:::-;13241:74;;13324:93;13413:3;13324:93;:::i;:::-;13442:2;13437:3;13433:12;13426:19;;13085:366;;;:::o;13457:::-;13599:3;13620:67;13684:2;13679:3;13620:67;:::i;:::-;13613:74;;13696:93;13785:3;13696:93;:::i;:::-;13814:2;13809:3;13805:12;13798:19;;13457:366;;;:::o;13829:::-;13971:3;13992:67;14056:2;14051:3;13992:67;:::i;:::-;13985:74;;14068:93;14157:3;14068:93;:::i;:::-;14186:2;14181:3;14177:12;14170:19;;13829:366;;;:::o;14201:::-;14343:3;14364:67;14428:2;14423:3;14364:67;:::i;:::-;14357:74;;14440:93;14529:3;14440:93;:::i;:::-;14558:2;14553:3;14549:12;14542:19;;14201:366;;;:::o;14573:::-;14715:3;14736:67;14800:2;14795:3;14736:67;:::i;:::-;14729:74;;14812:93;14901:3;14812:93;:::i;:::-;14930:2;14925:3;14921:12;14914:19;;14573:366;;;:::o;14945:::-;15087:3;15108:67;15172:2;15167:3;15108:67;:::i;:::-;15101:74;;15184:93;15273:3;15184:93;:::i;:::-;15302:2;15297:3;15293:12;15286:19;;14945:366;;;:::o;15317:::-;15459:3;15480:67;15544:2;15539:3;15480:67;:::i;:::-;15473:74;;15556:93;15645:3;15556:93;:::i;:::-;15674:2;15669:3;15665:12;15658:19;;15317:366;;;:::o;15689:::-;15831:3;15852:67;15916:2;15911:3;15852:67;:::i;:::-;15845:74;;15928:93;16017:3;15928:93;:::i;:::-;16046:2;16041:3;16037:12;16030:19;;15689:366;;;:::o;16061:::-;16203:3;16224:67;16288:2;16283:3;16224:67;:::i;:::-;16217:74;;16300:93;16389:3;16300:93;:::i;:::-;16418:2;16413:3;16409:12;16402:19;;16061:366;;;:::o;16433:::-;16575:3;16596:67;16660:2;16655:3;16596:67;:::i;:::-;16589:74;;16672:93;16761:3;16672:93;:::i;:::-;16790:2;16785:3;16781:12;16774:19;;16433:366;;;:::o;16805:::-;16947:3;16968:67;17032:2;17027:3;16968:67;:::i;:::-;16961:74;;17044:93;17133:3;17044:93;:::i;:::-;17162:2;17157:3;17153:12;17146:19;;16805:366;;;:::o;17177:::-;17319:3;17340:67;17404:2;17399:3;17340:67;:::i;:::-;17333:74;;17416:93;17505:3;17416:93;:::i;:::-;17534:2;17529:3;17525:12;17518:19;;17177:366;;;:::o;17549:::-;17691:3;17712:67;17776:2;17771:3;17712:67;:::i;:::-;17705:74;;17788:93;17877:3;17788:93;:::i;:::-;17906:2;17901:3;17897:12;17890:19;;17549:366;;;:::o;17921:::-;18063:3;18084:67;18148:2;18143:3;18084:67;:::i;:::-;18077:74;;18160:93;18249:3;18160:93;:::i;:::-;18278:2;18273:3;18269:12;18262:19;;17921:366;;;:::o;18293:::-;18435:3;18456:67;18520:2;18515:3;18456:67;:::i;:::-;18449:74;;18532:93;18621:3;18532:93;:::i;:::-;18650:2;18645:3;18641:12;18634:19;;18293:366;;;:::o;18665:::-;18807:3;18828:67;18892:2;18887:3;18828:67;:::i;:::-;18821:74;;18904:93;18993:3;18904:93;:::i;:::-;19022:2;19017:3;19013:12;19006:19;;18665:366;;;:::o;19037:::-;19179:3;19200:67;19264:2;19259:3;19200:67;:::i;:::-;19193:74;;19276:93;19365:3;19276:93;:::i;:::-;19394:2;19389:3;19385:12;19378:19;;19037:366;;;:::o;19409:::-;19551:3;19572:67;19636:2;19631:3;19572:67;:::i;:::-;19565:74;;19648:93;19737:3;19648:93;:::i;:::-;19766:2;19761:3;19757:12;19750:19;;19409:366;;;:::o;19781:::-;19923:3;19944:67;20008:2;20003:3;19944:67;:::i;:::-;19937:74;;20020:93;20109:3;20020:93;:::i;:::-;20138:2;20133:3;20129:12;20122:19;;19781:366;;;:::o;20153:::-;20295:3;20316:67;20380:2;20375:3;20316:67;:::i;:::-;20309:74;;20392:93;20481:3;20392:93;:::i;:::-;20510:2;20505:3;20501:12;20494:19;;20153:366;;;:::o;20525:::-;20667:3;20688:67;20752:2;20747:3;20688:67;:::i;:::-;20681:74;;20764:93;20853:3;20764:93;:::i;:::-;20882:2;20877:3;20873:12;20866:19;;20525:366;;;:::o;20897:::-;21039:3;21060:67;21124:2;21119:3;21060:67;:::i;:::-;21053:74;;21136:93;21225:3;21136:93;:::i;:::-;21254:2;21249:3;21245:12;21238:19;;20897:366;;;:::o;21269:::-;21411:3;21432:67;21496:2;21491:3;21432:67;:::i;:::-;21425:74;;21508:93;21597:3;21508:93;:::i;:::-;21626:2;21621:3;21617:12;21610:19;;21269:366;;;:::o;21641:398::-;21800:3;21821:83;21902:1;21897:3;21821:83;:::i;:::-;21814:90;;21913:93;22002:3;21913:93;:::i;:::-;22031:1;22026:3;22022:11;22015:18;;21641:398;;;:::o;22045:366::-;22187:3;22208:67;22272:2;22267:3;22208:67;:::i;:::-;22201:74;;22284:93;22373:3;22284:93;:::i;:::-;22402:2;22397:3;22393:12;22386:19;;22045:366;;;:::o;22417:::-;22559:3;22580:67;22644:2;22639:3;22580:67;:::i;:::-;22573:74;;22656:93;22745:3;22656:93;:::i;:::-;22774:2;22769:3;22765:12;22758:19;;22417:366;;;:::o;22789:::-;22931:3;22952:67;23016:2;23011:3;22952:67;:::i;:::-;22945:74;;23028:93;23117:3;23028:93;:::i;:::-;23146:2;23141:3;23137:12;23130:19;;22789:366;;;:::o;23161:::-;23303:3;23324:67;23388:2;23383:3;23324:67;:::i;:::-;23317:74;;23400:93;23489:3;23400:93;:::i;:::-;23518:2;23513:3;23509:12;23502:19;;23161:366;;;:::o;23533:::-;23675:3;23696:67;23760:2;23755:3;23696:67;:::i;:::-;23689:74;;23772:93;23861:3;23772:93;:::i;:::-;23890:2;23885:3;23881:12;23874:19;;23533:366;;;:::o;23905:::-;24047:3;24068:67;24132:2;24127:3;24068:67;:::i;:::-;24061:74;;24144:93;24233:3;24144:93;:::i;:::-;24262:2;24257:3;24253:12;24246:19;;23905:366;;;:::o;24277:108::-;24354:24;24372:5;24354:24;:::i;:::-;24349:3;24342:37;24277:108;;:::o;24391:118::-;24478:24;24496:5;24478:24;:::i;:::-;24473:3;24466:37;24391:118;;:::o;24515:435::-;24695:3;24717:95;24808:3;24799:6;24717:95;:::i;:::-;24710:102;;24829:95;24920:3;24911:6;24829:95;:::i;:::-;24822:102;;24941:3;24934:10;;24515:435;;;;;:::o;24956:379::-;25140:3;25162:147;25305:3;25162:147;:::i;:::-;25155:154;;25326:3;25319:10;;24956:379;;;:::o;25341:222::-;25434:4;25472:2;25461:9;25457:18;25449:26;;25485:71;25553:1;25542:9;25538:17;25529:6;25485:71;:::i;:::-;25341:222;;;;:::o;25569:640::-;25764:4;25802:3;25791:9;25787:19;25779:27;;25816:71;25884:1;25873:9;25869:17;25860:6;25816:71;:::i;:::-;25897:72;25965:2;25954:9;25950:18;25941:6;25897:72;:::i;:::-;25979;26047:2;26036:9;26032:18;26023:6;25979:72;:::i;:::-;26098:9;26092:4;26088:20;26083:2;26072:9;26068:18;26061:48;26126:76;26197:4;26188:6;26126:76;:::i;:::-;26118:84;;25569:640;;;;;;;:::o;26215:332::-;26336:4;26374:2;26363:9;26359:18;26351:26;;26387:71;26455:1;26444:9;26440:17;26431:6;26387:71;:::i;:::-;26468:72;26536:2;26525:9;26521:18;26512:6;26468:72;:::i;:::-;26215:332;;;;;:::o;26553:373::-;26696:4;26734:2;26723:9;26719:18;26711:26;;26783:9;26777:4;26773:20;26769:1;26758:9;26754:17;26747:47;26811:108;26914:4;26905:6;26811:108;:::i;:::-;26803:116;;26553:373;;;;:::o;26932:210::-;27019:4;27057:2;27046:9;27042:18;27034:26;;27070:65;27132:1;27121:9;27117:17;27108:6;27070:65;:::i;:::-;26932:210;;;;:::o;27148:222::-;27241:4;27279:2;27268:9;27264:18;27256:26;;27292:71;27360:1;27349:9;27345:17;27336:6;27292:71;:::i;:::-;27148:222;;;;:::o;27376:266::-;27491:4;27529:2;27518:9;27514:18;27506:26;;27542:93;27632:1;27621:9;27617:17;27608:6;27542:93;:::i;:::-;27376:266;;;;:::o;27648:313::-;27761:4;27799:2;27788:9;27784:18;27776:26;;27848:9;27842:4;27838:20;27834:1;27823:9;27819:17;27812:47;27876:78;27949:4;27940:6;27876:78;:::i;:::-;27868:86;;27648:313;;;;:::o;27967:419::-;28133:4;28171:2;28160:9;28156:18;28148:26;;28220:9;28214:4;28210:20;28206:1;28195:9;28191:17;28184:47;28248:131;28374:4;28248:131;:::i;:::-;28240:139;;27967:419;;;:::o;28392:::-;28558:4;28596:2;28585:9;28581:18;28573:26;;28645:9;28639:4;28635:20;28631:1;28620:9;28616:17;28609:47;28673:131;28799:4;28673:131;:::i;:::-;28665:139;;28392:419;;;:::o;28817:::-;28983:4;29021:2;29010:9;29006:18;28998:26;;29070:9;29064:4;29060:20;29056:1;29045:9;29041:17;29034:47;29098:131;29224:4;29098:131;:::i;:::-;29090:139;;28817:419;;;:::o;29242:::-;29408:4;29446:2;29435:9;29431:18;29423:26;;29495:9;29489:4;29485:20;29481:1;29470:9;29466:17;29459:47;29523:131;29649:4;29523:131;:::i;:::-;29515:139;;29242:419;;;:::o;29667:::-;29833:4;29871:2;29860:9;29856:18;29848:26;;29920:9;29914:4;29910:20;29906:1;29895:9;29891:17;29884:47;29948:131;30074:4;29948:131;:::i;:::-;29940:139;;29667:419;;;:::o;30092:::-;30258:4;30296:2;30285:9;30281:18;30273:26;;30345:9;30339:4;30335:20;30331:1;30320:9;30316:17;30309:47;30373:131;30499:4;30373:131;:::i;:::-;30365:139;;30092:419;;;:::o;30517:::-;30683:4;30721:2;30710:9;30706:18;30698:26;;30770:9;30764:4;30760:20;30756:1;30745:9;30741:17;30734:47;30798:131;30924:4;30798:131;:::i;:::-;30790:139;;30517:419;;;:::o;30942:::-;31108:4;31146:2;31135:9;31131:18;31123:26;;31195:9;31189:4;31185:20;31181:1;31170:9;31166:17;31159:47;31223:131;31349:4;31223:131;:::i;:::-;31215:139;;30942:419;;;:::o;31367:::-;31533:4;31571:2;31560:9;31556:18;31548:26;;31620:9;31614:4;31610:20;31606:1;31595:9;31591:17;31584:47;31648:131;31774:4;31648:131;:::i;:::-;31640:139;;31367:419;;;:::o;31792:::-;31958:4;31996:2;31985:9;31981:18;31973:26;;32045:9;32039:4;32035:20;32031:1;32020:9;32016:17;32009:47;32073:131;32199:4;32073:131;:::i;:::-;32065:139;;31792:419;;;:::o;32217:::-;32383:4;32421:2;32410:9;32406:18;32398:26;;32470:9;32464:4;32460:20;32456:1;32445:9;32441:17;32434:47;32498:131;32624:4;32498:131;:::i;:::-;32490:139;;32217:419;;;:::o;32642:::-;32808:4;32846:2;32835:9;32831:18;32823:26;;32895:9;32889:4;32885:20;32881:1;32870:9;32866:17;32859:47;32923:131;33049:4;32923:131;:::i;:::-;32915:139;;32642:419;;;:::o;33067:::-;33233:4;33271:2;33260:9;33256:18;33248:26;;33320:9;33314:4;33310:20;33306:1;33295:9;33291:17;33284:47;33348:131;33474:4;33348:131;:::i;:::-;33340:139;;33067:419;;;:::o;33492:::-;33658:4;33696:2;33685:9;33681:18;33673:26;;33745:9;33739:4;33735:20;33731:1;33720:9;33716:17;33709:47;33773:131;33899:4;33773:131;:::i;:::-;33765:139;;33492:419;;;:::o;33917:::-;34083:4;34121:2;34110:9;34106:18;34098:26;;34170:9;34164:4;34160:20;34156:1;34145:9;34141:17;34134:47;34198:131;34324:4;34198:131;:::i;:::-;34190:139;;33917:419;;;:::o;34342:::-;34508:4;34546:2;34535:9;34531:18;34523:26;;34595:9;34589:4;34585:20;34581:1;34570:9;34566:17;34559:47;34623:131;34749:4;34623:131;:::i;:::-;34615:139;;34342:419;;;:::o;34767:::-;34933:4;34971:2;34960:9;34956:18;34948:26;;35020:9;35014:4;35010:20;35006:1;34995:9;34991:17;34984:47;35048:131;35174:4;35048:131;:::i;:::-;35040:139;;34767:419;;;:::o;35192:::-;35358:4;35396:2;35385:9;35381:18;35373:26;;35445:9;35439:4;35435:20;35431:1;35420:9;35416:17;35409:47;35473:131;35599:4;35473:131;:::i;:::-;35465:139;;35192:419;;;:::o;35617:::-;35783:4;35821:2;35810:9;35806:18;35798:26;;35870:9;35864:4;35860:20;35856:1;35845:9;35841:17;35834:47;35898:131;36024:4;35898:131;:::i;:::-;35890:139;;35617:419;;;:::o;36042:::-;36208:4;36246:2;36235:9;36231:18;36223:26;;36295:9;36289:4;36285:20;36281:1;36270:9;36266:17;36259:47;36323:131;36449:4;36323:131;:::i;:::-;36315:139;;36042:419;;;:::o;36467:::-;36633:4;36671:2;36660:9;36656:18;36648:26;;36720:9;36714:4;36710:20;36706:1;36695:9;36691:17;36684:47;36748:131;36874:4;36748:131;:::i;:::-;36740:139;;36467:419;;;:::o;36892:::-;37058:4;37096:2;37085:9;37081:18;37073:26;;37145:9;37139:4;37135:20;37131:1;37120:9;37116:17;37109:47;37173:131;37299:4;37173:131;:::i;:::-;37165:139;;36892:419;;;:::o;37317:::-;37483:4;37521:2;37510:9;37506:18;37498:26;;37570:9;37564:4;37560:20;37556:1;37545:9;37541:17;37534:47;37598:131;37724:4;37598:131;:::i;:::-;37590:139;;37317:419;;;:::o;37742:::-;37908:4;37946:2;37935:9;37931:18;37923:26;;37995:9;37989:4;37985:20;37981:1;37970:9;37966:17;37959:47;38023:131;38149:4;38023:131;:::i;:::-;38015:139;;37742:419;;;:::o;38167:::-;38333:4;38371:2;38360:9;38356:18;38348:26;;38420:9;38414:4;38410:20;38406:1;38395:9;38391:17;38384:47;38448:131;38574:4;38448:131;:::i;:::-;38440:139;;38167:419;;;:::o;38592:::-;38758:4;38796:2;38785:9;38781:18;38773:26;;38845:9;38839:4;38835:20;38831:1;38820:9;38816:17;38809:47;38873:131;38999:4;38873:131;:::i;:::-;38865:139;;38592:419;;;:::o;39017:::-;39183:4;39221:2;39210:9;39206:18;39198:26;;39270:9;39264:4;39260:20;39256:1;39245:9;39241:17;39234:47;39298:131;39424:4;39298:131;:::i;:::-;39290:139;;39017:419;;;:::o;39442:::-;39608:4;39646:2;39635:9;39631:18;39623:26;;39695:9;39689:4;39685:20;39681:1;39670:9;39666:17;39659:47;39723:131;39849:4;39723:131;:::i;:::-;39715:139;;39442:419;;;:::o;39867:::-;40033:4;40071:2;40060:9;40056:18;40048:26;;40120:9;40114:4;40110:20;40106:1;40095:9;40091:17;40084:47;40148:131;40274:4;40148:131;:::i;:::-;40140:139;;39867:419;;;:::o;40292:222::-;40385:4;40423:2;40412:9;40408:18;40400:26;;40436:71;40504:1;40493:9;40489:17;40480:6;40436:71;:::i;:::-;40292:222;;;;:::o;40520:129::-;40554:6;40581:20;;:::i;:::-;40571:30;;40610:33;40638:4;40630:6;40610:33;:::i;:::-;40520:129;;;:::o;40655:75::-;40688:6;40721:2;40715:9;40705:19;;40655:75;:::o;40736:307::-;40797:4;40887:18;40879:6;40876:30;40873:56;;;40909:18;;:::i;:::-;40873:56;40947:29;40969:6;40947:29;:::i;:::-;40939:37;;41031:4;41025;41021:15;41013:23;;40736:307;;;:::o;41049:308::-;41111:4;41201:18;41193:6;41190:30;41187:56;;;41223:18;;:::i;:::-;41187:56;41261:29;41283:6;41261:29;:::i;:::-;41253:37;;41345:4;41339;41335:15;41327:23;;41049:308;;;:::o;41363:132::-;41430:4;41453:3;41445:11;;41483:4;41478:3;41474:14;41466:22;;41363:132;;;:::o;41501:114::-;41568:6;41602:5;41596:12;41586:22;;41501:114;;;:::o;41621:98::-;41672:6;41706:5;41700:12;41690:22;;41621:98;;;:::o;41725:99::-;41777:6;41811:5;41805:12;41795:22;;41725:99;;;:::o;41830:113::-;41900:4;41932;41927:3;41923:14;41915:22;;41830:113;;;:::o;41949:184::-;42048:11;42082:6;42077:3;42070:19;42122:4;42117:3;42113:14;42098:29;;41949:184;;;;:::o;42139:168::-;42222:11;42256:6;42251:3;42244:19;42296:4;42291:3;42287:14;42272:29;;42139:168;;;;:::o;42313:147::-;42414:11;42451:3;42436:18;;42313:147;;;;:::o;42466:169::-;42550:11;42584:6;42579:3;42572:19;42624:4;42619:3;42615:14;42600:29;;42466:169;;;;:::o;42641:148::-;42743:11;42780:3;42765:18;;42641:148;;;;:::o;42795:305::-;42835:3;42854:20;42872:1;42854:20;:::i;:::-;42849:25;;42888:20;42906:1;42888:20;:::i;:::-;42883:25;;43042:1;42974:66;42970:74;42967:1;42964:81;42961:107;;;43048:18;;:::i;:::-;42961:107;43092:1;43089;43085:9;43078:16;;42795:305;;;;:::o;43106:185::-;43146:1;43163:20;43181:1;43163:20;:::i;:::-;43158:25;;43197:20;43215:1;43197:20;:::i;:::-;43192:25;;43236:1;43226:35;;43241:18;;:::i;:::-;43226:35;43283:1;43280;43276:9;43271:14;;43106:185;;;;:::o;43297:348::-;43337:7;43360:20;43378:1;43360:20;:::i;:::-;43355:25;;43394:20;43412:1;43394:20;:::i;:::-;43389:25;;43582:1;43514:66;43510:74;43507:1;43504:81;43499:1;43492:9;43485:17;43481:105;43478:131;;;43589:18;;:::i;:::-;43478:131;43637:1;43634;43630:9;43619:20;;43297:348;;;;:::o;43651:191::-;43691:4;43711:20;43729:1;43711:20;:::i;:::-;43706:25;;43745:20;43763:1;43745:20;:::i;:::-;43740:25;;43784:1;43781;43778:8;43775:34;;;43789:18;;:::i;:::-;43775:34;43834:1;43831;43827:9;43819:17;;43651:191;;;;:::o;43848:96::-;43885:7;43914:24;43932:5;43914:24;:::i;:::-;43903:35;;43848:96;;;:::o;43950:90::-;43984:7;44027:5;44020:13;44013:21;44002:32;;43950:90;;;:::o;44046:77::-;44083:7;44112:5;44101:16;;44046:77;;;:::o;44129:149::-;44165:7;44205:66;44198:5;44194:78;44183:89;;44129:149;;;:::o;44284:159::-;44345:7;44374:5;44363:16;;44380:57;44431:5;44380:57;:::i;:::-;44284:159;;;:::o;44449:126::-;44486:7;44526:42;44519:5;44515:54;44504:65;;44449:126;;;:::o;44581:77::-;44618:7;44647:5;44636:16;;44581:77;;;:::o;44664:159::-;44736:9;44769:48;44811:5;44769:48;:::i;:::-;44756:61;;44664:159;;;:::o;44829:154::-;44913:6;44908:3;44903;44890:30;44975:1;44966:6;44961:3;44957:16;44950:27;44829:154;;;:::o;44989:307::-;45057:1;45067:113;45081:6;45078:1;45075:13;45067:113;;;45166:1;45161:3;45157:11;45151:18;45147:1;45142:3;45138:11;45131:39;45103:2;45100:1;45096:10;45091:15;;45067:113;;;45198:6;45195:1;45192:13;45189:101;;;45278:1;45269:6;45264:3;45260:16;45253:27;45189:101;45038:258;44989:307;;;:::o;45302:320::-;45346:6;45383:1;45377:4;45373:12;45363:22;;45430:1;45424:4;45420:12;45451:18;45441:81;;45507:4;45499:6;45495:17;45485:27;;45441:81;45569:2;45561:6;45558:14;45538:18;45535:38;45532:84;;;45588:18;;:::i;:::-;45532:84;45353:269;45302:320;;;:::o;45628:281::-;45711:27;45733:4;45711:27;:::i;:::-;45703:6;45699:40;45841:6;45829:10;45826:22;45805:18;45793:10;45790:34;45787:62;45784:88;;;45852:18;;:::i;:::-;45784:88;45892:10;45888:2;45881:22;45671:238;45628:281;;:::o;45915:233::-;45954:3;45977:24;45995:5;45977:24;:::i;:::-;45968:33;;46023:66;46016:5;46013:77;46010:103;;;46093:18;;:::i;:::-;46010:103;46140:1;46133:5;46129:13;46122:20;;45915:233;;;:::o;46154:176::-;46186:1;46203:20;46221:1;46203:20;:::i;:::-;46198:25;;46237:20;46255:1;46237:20;:::i;:::-;46232:25;;46276:1;46266:35;;46281:18;;:::i;:::-;46266:35;46322:1;46319;46315:9;46310:14;;46154:176;;;;:::o;46336:180::-;46384:77;46381:1;46374:88;46481:4;46478:1;46471:15;46505:4;46502:1;46495:15;46522:180;46570:77;46567:1;46560:88;46667:4;46664:1;46657:15;46691:4;46688:1;46681:15;46708:180;46756:77;46753:1;46746:88;46853:4;46850:1;46843:15;46877:4;46874:1;46867:15;46894:180;46942:77;46939:1;46932:88;47039:4;47036:1;47029:15;47063:4;47060:1;47053:15;47080:180;47128:77;47125:1;47118:88;47225:4;47222:1;47215:15;47249:4;47246:1;47239:15;47266:180;47314:77;47311:1;47304:88;47411:4;47408:1;47401:15;47435:4;47432:1;47425:15;47452:180;47500:77;47497:1;47490:88;47597:4;47594:1;47587:15;47621:4;47618:1;47611:15;47638:117;47747:1;47744;47737:12;47761:117;47870:1;47867;47860:12;47884:117;47993:1;47990;47983:12;48007:117;48116:1;48113;48106:12;48130:117;48239:1;48236;48229:12;48253:117;48362:1;48359;48352:12;48376:102;48417:6;48468:2;48464:7;48459:2;48452:5;48448:14;48444:28;48434:38;;48376:102;;;:::o;48484:176::-;48624:28;48620:1;48612:6;48608:14;48601:52;48484:176;:::o;48666:230::-;48806:34;48802:1;48794:6;48790:14;48783:58;48875:13;48870:2;48862:6;48858:15;48851:38;48666:230;:::o;48902:237::-;49042:34;49038:1;49030:6;49026:14;49019:58;49111:20;49106:2;49098:6;49094:15;49087:45;48902:237;:::o;49145:225::-;49285:34;49281:1;49273:6;49269:14;49262:58;49354:8;49349:2;49341:6;49337:15;49330:33;49145:225;:::o;49376:178::-;49516:30;49512:1;49504:6;49500:14;49493:54;49376:178;:::o;49560:230::-;49700:34;49696:1;49688:6;49684:14;49677:58;49769:13;49764:2;49756:6;49752:15;49745:38;49560:230;:::o;49796:223::-;49936:34;49932:1;49924:6;49920:14;49913:58;50005:6;50000:2;49992:6;49988:15;49981:31;49796:223;:::o;50025:175::-;50165:27;50161:1;50153:6;50149:14;50142:51;50025:175;:::o;50206:231::-;50346:34;50342:1;50334:6;50330:14;50323:58;50415:14;50410:2;50402:6;50398:15;50391:39;50206:231;:::o;50443:243::-;50583:34;50579:1;50571:6;50567:14;50560:58;50652:26;50647:2;50639:6;50635:15;50628:51;50443:243;:::o;50692:229::-;50832:34;50828:1;50820:6;50816:14;50809:58;50901:12;50896:2;50888:6;50884:15;50877:37;50692:229;:::o;50927:228::-;51067:34;51063:1;51055:6;51051:14;51044:58;51136:11;51131:2;51123:6;51119:15;51112:36;50927:228;:::o;51161:172::-;51301:24;51297:1;51289:6;51285:14;51278:48;51161:172;:::o;51339:223::-;51479:34;51475:1;51467:6;51463:14;51456:58;51548:6;51543:2;51535:6;51531:15;51524:31;51339:223;:::o;51568:169::-;51708:21;51704:1;51696:6;51692:14;51685:45;51568:169;:::o;51743:179::-;51883:31;51879:1;51871:6;51867:14;51860:55;51743:179;:::o;51928:182::-;52068:34;52064:1;52056:6;52052:14;52045:58;51928:182;:::o;52116:231::-;52256:34;52252:1;52244:6;52240:14;52233:58;52325:14;52320:2;52312:6;52308:15;52301:39;52116:231;:::o;52353:182::-;52493:34;52489:1;52481:6;52477:14;52470:58;52353:182;:::o;52541:172::-;52681:24;52677:1;52669:6;52665:14;52658:48;52541:172;:::o;52719:228::-;52859:34;52855:1;52847:6;52843:14;52836:58;52928:11;52923:2;52915:6;52911:15;52904:36;52719:228;:::o;52953:234::-;53093:34;53089:1;53081:6;53077:14;53070:58;53162:17;53157:2;53149:6;53145:15;53138:42;52953:234;:::o;53193:220::-;53333:34;53329:1;53321:6;53317:14;53310:58;53402:3;53397:2;53389:6;53385:15;53378:28;53193:220;:::o;53419:114::-;;:::o;53539:168::-;53679:20;53675:1;53667:6;53663:14;53656:44;53539:168;:::o;53713:236::-;53853:34;53849:1;53841:6;53837:14;53830:58;53922:19;53917:2;53909:6;53905:15;53898:44;53713:236;:::o;53955:231::-;54095:34;54091:1;54083:6;54079:14;54072:58;54164:14;54159:2;54151:6;54147:15;54140:39;53955:231;:::o;54192:173::-;54332:25;54328:1;54320:6;54316:14;54309:49;54192:173;:::o;54371:177::-;54511:29;54507:1;54499:6;54495:14;54488:53;54371:177;:::o;54554:164::-;54694:16;54690:1;54682:6;54678:14;54671:40;54554:164;:::o;54724:129::-;54821:1;54814:5;54811:12;54801:46;;54827:18;;:::i;:::-;54801:46;54724:129;:::o;54859:122::-;54932:24;54950:5;54932:24;:::i;:::-;54925:5;54922:35;54912:63;;54971:1;54968;54961:12;54912:63;54859:122;:::o;54987:116::-;55057:21;55072:5;55057:21;:::i;:::-;55050:5;55047:32;55037:60;;55093:1;55090;55083:12;55037:60;54987:116;:::o;55109:122::-;55182:24;55200:5;55182:24;:::i;:::-;55175:5;55172:35;55162:63;;55221:1;55218;55211:12;55162:63;55109:122;:::o;55237:120::-;55309:23;55326:5;55309:23;:::i;:::-;55302:5;55299:34;55289:62;;55347:1;55344;55337:12;55289:62;55237:120;:::o;55363:123::-;55460:1;55453:5;55450:12;55440:40;;55476:1;55473;55466:12;55440:40;55363:123;:::o;55492:122::-;55565:24;55583:5;55565:24;:::i;:::-;55558:5;55555:35;55545:63;;55604:1;55601;55594:12;55545:63;55492:122;:::o

Swarm Source

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