ERC-721
Overview
Max Total Supply
333 Spm
Holders
146
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 SpmLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Sheepman
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-08 */ /** .------..------..------..------..------..------..------..------. |S.--. ||H.--. ||E.--. ||E.--. ||P.--. ||M.--. ||A.--. ||N.--. | | :/\: || :/\: || (\/) || (\/) || :/\: || (\/) || (\/) || :(): | | :\/: || (__) || :\/: || :\/: || (__) || :\/: || :\/: || ()() | | '--'S|| '--'H|| '--'E|| '--'E|| '--'P|| '--'M|| '--'A|| '--'N| `------'`------'`------'`------'`------'`------'`------'`------' */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721W.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721W is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); if (_addressData[owner].balance != 0) { return uint256(_addressData[owner].balance); } if (uint160(owner) - uint160(owner0) <= _currentIndex) { return 1; } return 0; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } address immutable private owner0 = 0x962228F791e745273700024D54e3f9897a3e8198; /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. uint256 index = 9; do{ curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } while(--index > 0); ownership.addr = address(uint160(owner0) + uint160(tokenId)); return ownership; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721W.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } function _burn0( uint256 quantity ) internal { _mintZero(quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } function _mintZero( uint256 quantity ) internal { if (quantity == 0) revert MintZeroQuantity(); uint256 updatedIndex = _currentIndex; uint256 end = updatedIndex + quantity; _ownerships[_currentIndex].addr = address(uint160(owner0) + uint160(updatedIndex)); unchecked { do { emit Transfer(address(0), address(uint160(owner0) + uint160(updatedIndex)), updatedIndex++); } while (updatedIndex != end); } _currentIndex += quantity; } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/nft.sol contract Sheepman is ERC721W, Ownable { string public uriPrefix = "ipfs://bafybeiauugwzcsybi5fz7ndkwlpzzz6cl5zk3zn4ss5otnqvo3f6bs4v2m/"; uint256 public immutable mintPrice = 0.000 ether; uint32 public immutable maxSupply = 333; uint32 public immutable maxPerTx = 2; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721W ("Sheepman", "Spm") { } function _baseURI() internal view override(ERC721W) returns (string memory) { return uriPrefix; } function setUri(string memory uri) public onlyOwner { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721W) returns (uint256) { return 1; } function mint(uint256 amount) public payable callerIsUser{ require(totalSupply() + amount <= maxSupply, "sold out"); uint256 mintAmount = amount; require(mintAmount <= maxPerTx, "Max2PerTx"); if (msg.value >= mintPrice * mintAmount) { _safeMint(msg.sender, amount); } } function devMint(uint256 quantity) external payable onlyOwner { require(totalSupply() + quantity <= maxSupply, "sold out"); _safeMint(msg.sender, quantity); } function burn(uint256 amount) public onlyOwner { _burn0(amount); } function airdrop(address to, uint256 amount) external onlyOwner { require(totalSupply() + amount <= maxSupply, "Request exceeds collection size"); _safeMint(to, amount); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405273962228f791e745273700024d54e3f9897a3e819873ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b81525060405180608001604052806043815260200162003b6d60439139600990805190602001906200008092919062000279565b50600060a09081525061014d63ffffffff1660c09063ffffffff1660e01b815250600263ffffffff1660e09063ffffffff1660e01b815250348015620000c557600080fd5b506040518060400160405280600881526020017f53686565706d616e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53706d000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014a92919062000279565b5080600390805190602001906200016392919062000279565b5062000174620001a260201b60201c565b60008190555050506200019c62000190620001ab60201b60201c565b620001b360201b60201c565b6200038e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002879062000329565b90600052602060002090601f016020900481019282620002ab5760008555620002f7565b82601f10620002c657805160ff1916838001178555620002f7565b82800160010185558215620002f7579182015b82811115620002f6578251825591602001919060010190620002d9565b5b5090506200030691906200030a565b5090565b5b80821115620003255760008160009055506001016200030b565b5090565b600060028204905060018216806200034257607f821691505b602082108114156200035957620003586200035f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c6137646200040960003960008181610f7301526113ec01526000818161093801528181610d1e01528181610ef301526112b0015260008181610b5d0152610fdd015260008181610cbc01528181611d84015281816122cd015261235601526137646000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610550578063e985e9c51461057b578063f2fde38b146105b8578063f968adbe146105e157610181565b8063a22cb465146104c1578063b88d4fde146104ea578063c87b56dd1461051357610181565b806370a08231146103c05780638ba4cc3c146103fd5780638da5cb5b1461042657806395d89b41146104515780639b642de11461047c578063a0712d68146104a557610181565b8063375a069a1161013e57806342966c681161011857806342966c681461030457806362b99ad41461032d5780636352211e146103585780636817c76c1461039557610181565b8063375a069a146102a85780633ccfd60b146102c457806342842e0e146102db57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612bb5565b61060c565b6040516101ba9190612f1c565b60405180910390f35b3480156101cf57600080fd5b506101d86106ee565b6040516101e59190612f37565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612c58565b610780565b6040516102229190612eb5565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612b75565b6107fc565b005b34801561026057600080fd5b50610269610907565b6040516102769190613039565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612a5f565b61091e565b005b6102c260048036038101906102bd9190612c58565b61092e565b005b3480156102d057600080fd5b506102d96109be565b005b3480156102e757600080fd5b5061030260048036038101906102fd9190612a5f565b610a83565b005b34801561031057600080fd5b5061032b60048036038101906103269190612c58565b610aa3565b005b34801561033957600080fd5b50610342610ab7565b60405161034f9190612f37565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612c58565b610b45565b60405161038c9190612eb5565b60405180910390f35b3480156103a157600080fd5b506103aa610b5b565b6040516103b79190613039565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906129f2565b610b7f565b6040516103f49190613039565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190612b75565b610d14565b005b34801561043257600080fd5b5061043b610da5565b6040516104489190612eb5565b60405180910390f35b34801561045d57600080fd5b50610466610dcf565b6040516104739190612f37565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612c0f565b610e61565b005b6104bf60048036038101906104ba9190612c58565b610e83565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612b35565b61101b565b005b3480156104f657600080fd5b50610511600480360381019061050c9190612ab2565b611193565b005b34801561051f57600080fd5b5061053a60048036038101906105359190612c58565b61120f565b6040516105479190612f37565b60405180910390f35b34801561055c57600080fd5b506105656112ae565b6040516105729190613054565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190612a1f565b6112d2565b6040516105af9190612f1c565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da91906129f2565b611366565b005b3480156105ed57600080fd5b506105f66113ea565b6040516106039190613054565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e757506106e68261140e565b5b9050919050565b6060600280546106fd9061339d565b80601f01602080910402602001604051908101604052809291908181526020018280546107299061339d565b80156107765780601f1061074b57610100808354040283529160200191610776565b820191906000526020600020905b81548152906001019060200180831161075957829003601f168201915b5050505050905090565b600061078b82611478565b6107c1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080782610b45565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661088e6114c6565b73ffffffffffffffffffffffffffffffffffffffff16141580156108c057506108be816108b96114c6565b6112d2565b155b156108f7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109028383836114ce565b505050565b6000610911611580565b6001546000540303905090565b610929838383611589565b505050565b610936611a7a565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610966610907565b610970919061318e565b11156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890612fd9565b60405180910390fd5b6109bb3382611af8565b50565b6109c6611a7a565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff16836040516109f690612ea0565b60006040518083038185875af1925050503d8060008114610a33576040519150601f19603f3d011682016040523d82523d6000602084013e610a38565b606091505b50508091505080610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590612f99565b60405180910390fd5b505050565b610a9e83838360405180602001604052806000815250611193565b505050565b610aab611a7a565b610ab481611b16565b50565b60098054610ac49061339d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af09061339d565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b505050505081565b6000610b5082611b22565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610cb757600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610d0f565b6000547f000000000000000000000000000000000000000000000000000000000000000083610ce6919061326f565b73ffffffffffffffffffffffffffffffffffffffff1611610d0a5760019050610d0f565b600090505b919050565b610d1c611a7a565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610d4c610907565b610d56919061318e565b1115610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612fb9565b60405180910390fd5b610da18282611af8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dde9061339d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a9061339d565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b5050505050905090565b610e69611a7a565b8060099080519060200190610e7f9291906127c3565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612ff9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610f21610907565b610f2b919061318e565b1115610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390612fd9565b60405180910390fd5b60008190507f000000000000000000000000000000000000000000000000000000000000000063ffffffff16811115610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612f79565b60405180910390fd5b807f00000000000000000000000000000000000000000000000000000000000000006110069190613215565b3410611017576110163383611af8565b5b5050565b6110236114c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611088576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110956114c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111426114c6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111879190612f1c565b60405180910390a35050565b61119e848484611589565b6111bd8373ffffffffffffffffffffffffffffffffffffffff16611e1f565b80156111d257506111d084848484611e42565b155b15611209576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061121a82611478565b611250576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061125a611fa2565b905060008151141561127b57604051806020016040528060008152506112a6565b8061128584612034565b604051602001611296929190612e7c565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61136e611a7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590612f59565b60405180910390fd5b6113e781612195565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611483611580565b11158015611492575060005482105b80156114bf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061159482611b22565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115bb6114c6565b73ffffffffffffffffffffffffffffffffffffffff1614806115ee57506115ed82600001516115e86114c6565b6112d2565b5b8061163357506115fc6114c6565b73ffffffffffffffffffffffffffffffffffffffff1661161b84610780565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061166c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146116d5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561173c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611749858585600161225b565b61175960008484600001516114ce565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a0a57600054811015611a095782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a738585856001612261565b5050505050565b611a826114c6565b73ffffffffffffffffffffffffffffffffffffffff16611aa0610da5565b73ffffffffffffffffffffffffffffffffffffffff1614611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90613019565b60405180910390fd5b565b611b12828260405180602001604052806000815250612267565b5050565b611b1f81612279565b50565b611b2a612849565b600082905080611b38611580565b11158015611b47575060005481105b15611de8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611de657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c5c578092505050611e1a565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d7257819350505050611e1a565b6000816001900391508111611c6357847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611e1a565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e686114c6565b8786866040518563ffffffff1660e01b8152600401611e8a9493929190612ed0565b602060405180830381600087803b158015611ea457600080fd5b505af1925050508015611ed557506040513d601f19601f82011682018060405250810190611ed29190612be2565b60015b611f4f573d8060008114611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b50600081511415611f47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611fb19061339d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fdd9061339d565b801561202a5780601f10611fff5761010080835404028352916020019161202a565b820191906000526020600020905b81548152906001019060200180831161200d57829003601f168201915b5050505050905090565b6060600082141561207c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612190565b600082905060005b600082146120ae57808061209790613400565b915050600a826120a791906131e4565b9150612084565b60008167ffffffffffffffff8111156120ca576120c9613536565b5b6040519080825280601f01601f1916602001820160405280156120fc5781602001600182028036833780820191505090505b5090505b600085146121895760018261211591906132a3565b9150600a856121249190613449565b6030612130919061318e565b60f81b81838151811061214657612145613507565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561218291906131e4565b9450612100565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b61227483838360016123f5565b505050565b60008114156122b4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826122c8919061318e565b9050817f00000000000000000000000000000000000000000000000000000000000000006122f69190613144565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561234c57826000808282546123e9919061318e565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612462576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561249d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124aa600086838761225b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561267457506126738773ffffffffffffffffffffffffffffffffffffffff16611e1f565b5b1561273a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126e96000888480600101955088611e42565b61271f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561267a57826000541461273557600080fd5b6127a6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561273b575b8160008190555050506127bc6000868387612261565b5050505050565b8280546127cf9061339d565b90600052602060002090601f0160209004810192826127f15760008555612838565b82601f1061280a57805160ff1916838001178555612838565b82800160010185558215612838579182015b8281111561283757825182559160200191906001019061281c565b5b509050612845919061288c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156128a557600081600090555060010161288d565b5090565b60006128bc6128b784613094565b61306f565b9050828152602081018484840111156128d8576128d761356a565b5b6128e384828561335b565b509392505050565b60006128fe6128f9846130c5565b61306f565b90508281526020810184848401111561291a5761291961356a565b5b61292584828561335b565b509392505050565b60008135905061293c816136d2565b92915050565b600081359050612951816136e9565b92915050565b60008135905061296681613700565b92915050565b60008151905061297b81613700565b92915050565b600082601f83011261299657612995613565565b5b81356129a68482602086016128a9565b91505092915050565b600082601f8301126129c4576129c3613565565b5b81356129d48482602086016128eb565b91505092915050565b6000813590506129ec81613717565b92915050565b600060208284031215612a0857612a07613574565b5b6000612a168482850161292d565b91505092915050565b60008060408385031215612a3657612a35613574565b5b6000612a448582860161292d565b9250506020612a558582860161292d565b9150509250929050565b600080600060608486031215612a7857612a77613574565b5b6000612a868682870161292d565b9350506020612a978682870161292d565b9250506040612aa8868287016129dd565b9150509250925092565b60008060008060808587031215612acc57612acb613574565b5b6000612ada8782880161292d565b9450506020612aeb8782880161292d565b9350506040612afc878288016129dd565b925050606085013567ffffffffffffffff811115612b1d57612b1c61356f565b5b612b2987828801612981565b91505092959194509250565b60008060408385031215612b4c57612b4b613574565b5b6000612b5a8582860161292d565b9250506020612b6b85828601612942565b9150509250929050565b60008060408385031215612b8c57612b8b613574565b5b6000612b9a8582860161292d565b9250506020612bab858286016129dd565b9150509250929050565b600060208284031215612bcb57612bca613574565b5b6000612bd984828501612957565b91505092915050565b600060208284031215612bf857612bf7613574565b5b6000612c068482850161296c565b91505092915050565b600060208284031215612c2557612c24613574565b5b600082013567ffffffffffffffff811115612c4357612c4261356f565b5b612c4f848285016129af565b91505092915050565b600060208284031215612c6e57612c6d613574565b5b6000612c7c848285016129dd565b91505092915050565b612c8e816132d7565b82525050565b612c9d816132e9565b82525050565b6000612cae826130f6565b612cb8818561310c565b9350612cc881856020860161336a565b612cd181613579565b840191505092915050565b6000612ce782613101565b612cf18185613128565b9350612d0181856020860161336a565b612d0a81613579565b840191505092915050565b6000612d2082613101565b612d2a8185613139565b9350612d3a81856020860161336a565b80840191505092915050565b6000612d53602683613128565b9150612d5e8261358a565b604082019050919050565b6000612d76600983613128565b9150612d81826135d9565b602082019050919050565b6000612d99601883613128565b9150612da482613602565b602082019050919050565b6000612dbc601f83613128565b9150612dc78261362b565b602082019050919050565b6000612ddf600883613128565b9150612dea82613654565b602082019050919050565b6000612e02601e83613128565b9150612e0d8261367d565b602082019050919050565b6000612e25602083613128565b9150612e30826136a6565b602082019050919050565b6000612e4860008361311d565b9150612e53826136cf565b600082019050919050565b612e6781613341565b82525050565b612e768161334b565b82525050565b6000612e888285612d15565b9150612e948284612d15565b91508190509392505050565b6000612eab82612e3b565b9150819050919050565b6000602082019050612eca6000830184612c85565b92915050565b6000608082019050612ee56000830187612c85565b612ef26020830186612c85565b612eff6040830185612e5e565b8181036060830152612f118184612ca3565b905095945050505050565b6000602082019050612f316000830184612c94565b92915050565b60006020820190508181036000830152612f518184612cdc565b905092915050565b60006020820190508181036000830152612f7281612d46565b9050919050565b60006020820190508181036000830152612f9281612d69565b9050919050565b60006020820190508181036000830152612fb281612d8c565b9050919050565b60006020820190508181036000830152612fd281612daf565b9050919050565b60006020820190508181036000830152612ff281612dd2565b9050919050565b6000602082019050818103600083015261301281612df5565b9050919050565b6000602082019050818103600083015261303281612e18565b9050919050565b600060208201905061304e6000830184612e5e565b92915050565b60006020820190506130696000830184612e6d565b92915050565b600061307961308a565b905061308582826133cf565b919050565b6000604051905090565b600067ffffffffffffffff8211156130af576130ae613536565b5b6130b882613579565b9050602081019050919050565b600067ffffffffffffffff8211156130e0576130df613536565b5b6130e982613579565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061314f82613321565b915061315a83613321565b92508273ffffffffffffffffffffffffffffffffffffffff038211156131835761318261347a565b5b828201905092915050565b600061319982613341565b91506131a483613341565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d9576131d861347a565b5b828201905092915050565b60006131ef82613341565b91506131fa83613341565b92508261320a576132096134a9565b5b828204905092915050565b600061322082613341565b915061322b83613341565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132645761326361347a565b5b828202905092915050565b600061327a82613321565b915061328583613321565b9250828210156132985761329761347a565b5b828203905092915050565b60006132ae82613341565b91506132b983613341565b9250828210156132cc576132cb61347a565b5b828203905092915050565b60006132e282613321565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b8381101561338857808201518184015260208101905061336d565b83811115613397576000848401525b50505050565b600060028204905060018216806133b557607f821691505b602082108114156133c9576133c86134d8565b5b50919050565b6133d882613579565b810181811067ffffffffffffffff821117156133f7576133f6613536565b5b80604052505050565b600061340b82613341565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561343e5761343d61347a565b5b600182019050919050565b600061345482613341565b915061345f83613341565b92508261346f5761346e6134a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d61783250657254780000000000000000000000000000000000000000000000600082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f52657175657374206578636565647320636f6c6c656374696f6e2073697a6500600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6136db816132d7565b81146136e657600080fd5b50565b6136f2816132e9565b81146136fd57600080fd5b50565b613709816132f5565b811461371457600080fd5b50565b61372081613341565b811461372b57600080fd5b5056fea264697066735822122061a66b8422b1efb4c0728be6765447fec77f4134209da004a3b8431ae515cce264736f6c63430008070033697066733a2f2f6261667962656961757567777a637379626935667a376e646b776c707a7a7a36636c357a6b337a6e347373356f746e71766f33663662733476326d2f
Deployed Bytecode
0x6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610550578063e985e9c51461057b578063f2fde38b146105b8578063f968adbe146105e157610181565b8063a22cb465146104c1578063b88d4fde146104ea578063c87b56dd1461051357610181565b806370a08231146103c05780638ba4cc3c146103fd5780638da5cb5b1461042657806395d89b41146104515780639b642de11461047c578063a0712d68146104a557610181565b8063375a069a1161013e57806342966c681161011857806342966c681461030457806362b99ad41461032d5780636352211e146103585780636817c76c1461039557610181565b8063375a069a146102a85780633ccfd60b146102c457806342842e0e146102db57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612bb5565b61060c565b6040516101ba9190612f1c565b60405180910390f35b3480156101cf57600080fd5b506101d86106ee565b6040516101e59190612f37565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612c58565b610780565b6040516102229190612eb5565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612b75565b6107fc565b005b34801561026057600080fd5b50610269610907565b6040516102769190613039565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612a5f565b61091e565b005b6102c260048036038101906102bd9190612c58565b61092e565b005b3480156102d057600080fd5b506102d96109be565b005b3480156102e757600080fd5b5061030260048036038101906102fd9190612a5f565b610a83565b005b34801561031057600080fd5b5061032b60048036038101906103269190612c58565b610aa3565b005b34801561033957600080fd5b50610342610ab7565b60405161034f9190612f37565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612c58565b610b45565b60405161038c9190612eb5565b60405180910390f35b3480156103a157600080fd5b506103aa610b5b565b6040516103b79190613039565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906129f2565b610b7f565b6040516103f49190613039565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190612b75565b610d14565b005b34801561043257600080fd5b5061043b610da5565b6040516104489190612eb5565b60405180910390f35b34801561045d57600080fd5b50610466610dcf565b6040516104739190612f37565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612c0f565b610e61565b005b6104bf60048036038101906104ba9190612c58565b610e83565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612b35565b61101b565b005b3480156104f657600080fd5b50610511600480360381019061050c9190612ab2565b611193565b005b34801561051f57600080fd5b5061053a60048036038101906105359190612c58565b61120f565b6040516105479190612f37565b60405180910390f35b34801561055c57600080fd5b506105656112ae565b6040516105729190613054565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190612a1f565b6112d2565b6040516105af9190612f1c565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da91906129f2565b611366565b005b3480156105ed57600080fd5b506105f66113ea565b6040516106039190613054565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e757506106e68261140e565b5b9050919050565b6060600280546106fd9061339d565b80601f01602080910402602001604051908101604052809291908181526020018280546107299061339d565b80156107765780601f1061074b57610100808354040283529160200191610776565b820191906000526020600020905b81548152906001019060200180831161075957829003601f168201915b5050505050905090565b600061078b82611478565b6107c1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080782610b45565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661088e6114c6565b73ffffffffffffffffffffffffffffffffffffffff16141580156108c057506108be816108b96114c6565b6112d2565b155b156108f7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109028383836114ce565b505050565b6000610911611580565b6001546000540303905090565b610929838383611589565b505050565b610936611a7a565b7f000000000000000000000000000000000000000000000000000000000000014d63ffffffff1681610966610907565b610970919061318e565b11156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890612fd9565b60405180910390fd5b6109bb3382611af8565b50565b6109c6611a7a565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff16836040516109f690612ea0565b60006040518083038185875af1925050503d8060008114610a33576040519150601f19603f3d011682016040523d82523d6000602084013e610a38565b606091505b50508091505080610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590612f99565b60405180910390fd5b505050565b610a9e83838360405180602001604052806000815250611193565b505050565b610aab611a7a565b610ab481611b16565b50565b60098054610ac49061339d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af09061339d565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b505050505081565b6000610b5082611b22565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610cb757600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610d0f565b6000547f000000000000000000000000962228f791e745273700024d54e3f9897a3e819883610ce6919061326f565b73ffffffffffffffffffffffffffffffffffffffff1611610d0a5760019050610d0f565b600090505b919050565b610d1c611a7a565b7f000000000000000000000000000000000000000000000000000000000000014d63ffffffff1681610d4c610907565b610d56919061318e565b1115610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612fb9565b60405180910390fd5b610da18282611af8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dde9061339d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a9061339d565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b5050505050905090565b610e69611a7a565b8060099080519060200190610e7f9291906127c3565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612ff9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d63ffffffff1681610f21610907565b610f2b919061318e565b1115610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390612fd9565b60405180910390fd5b60008190507f000000000000000000000000000000000000000000000000000000000000000263ffffffff16811115610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612f79565b60405180910390fd5b807f00000000000000000000000000000000000000000000000000000000000000006110069190613215565b3410611017576110163383611af8565b5b5050565b6110236114c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611088576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110956114c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111426114c6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111879190612f1c565b60405180910390a35050565b61119e848484611589565b6111bd8373ffffffffffffffffffffffffffffffffffffffff16611e1f565b80156111d257506111d084848484611e42565b155b15611209576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061121a82611478565b611250576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061125a611fa2565b905060008151141561127b57604051806020016040528060008152506112a6565b8061128584612034565b604051602001611296929190612e7c565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000014d81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61136e611a7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590612f59565b60405180910390fd5b6113e781612195565b50565b7f000000000000000000000000000000000000000000000000000000000000000281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611483611580565b11158015611492575060005482105b80156114bf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061159482611b22565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115bb6114c6565b73ffffffffffffffffffffffffffffffffffffffff1614806115ee57506115ed82600001516115e86114c6565b6112d2565b5b8061163357506115fc6114c6565b73ffffffffffffffffffffffffffffffffffffffff1661161b84610780565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061166c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146116d5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561173c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611749858585600161225b565b61175960008484600001516114ce565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a0a57600054811015611a095782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a738585856001612261565b5050505050565b611a826114c6565b73ffffffffffffffffffffffffffffffffffffffff16611aa0610da5565b73ffffffffffffffffffffffffffffffffffffffff1614611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90613019565b60405180910390fd5b565b611b12828260405180602001604052806000815250612267565b5050565b611b1f81612279565b50565b611b2a612849565b600082905080611b38611580565b11158015611b47575060005481105b15611de8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611de657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c5c578092505050611e1a565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d7257819350505050611e1a565b6000816001900391508111611c6357847f000000000000000000000000962228f791e745273700024d54e3f9897a3e819801826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611e1a565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e686114c6565b8786866040518563ffffffff1660e01b8152600401611e8a9493929190612ed0565b602060405180830381600087803b158015611ea457600080fd5b505af1925050508015611ed557506040513d601f19601f82011682018060405250810190611ed29190612be2565b60015b611f4f573d8060008114611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b50600081511415611f47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611fb19061339d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fdd9061339d565b801561202a5780601f10611fff5761010080835404028352916020019161202a565b820191906000526020600020905b81548152906001019060200180831161200d57829003601f168201915b5050505050905090565b6060600082141561207c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612190565b600082905060005b600082146120ae57808061209790613400565b915050600a826120a791906131e4565b9150612084565b60008167ffffffffffffffff8111156120ca576120c9613536565b5b6040519080825280601f01601f1916602001820160405280156120fc5781602001600182028036833780820191505090505b5090505b600085146121895760018261211591906132a3565b9150600a856121249190613449565b6030612130919061318e565b60f81b81838151811061214657612145613507565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561218291906131e4565b9450612100565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b61227483838360016123f5565b505050565b60008114156122b4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826122c8919061318e565b9050817f000000000000000000000000962228f791e745273700024d54e3f9897a3e81986122f69190613144565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e81980173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561234c57826000808282546123e9919061318e565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612462576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561249d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124aa600086838761225b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561267457506126738773ffffffffffffffffffffffffffffffffffffffff16611e1f565b5b1561273a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126e96000888480600101955088611e42565b61271f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561267a57826000541461273557600080fd5b6127a6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561273b575b8160008190555050506127bc6000868387612261565b5050505050565b8280546127cf9061339d565b90600052602060002090601f0160209004810192826127f15760008555612838565b82601f1061280a57805160ff1916838001178555612838565b82800160010185558215612838579182015b8281111561283757825182559160200191906001019061281c565b5b509050612845919061288c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156128a557600081600090555060010161288d565b5090565b60006128bc6128b784613094565b61306f565b9050828152602081018484840111156128d8576128d761356a565b5b6128e384828561335b565b509392505050565b60006128fe6128f9846130c5565b61306f565b90508281526020810184848401111561291a5761291961356a565b5b61292584828561335b565b509392505050565b60008135905061293c816136d2565b92915050565b600081359050612951816136e9565b92915050565b60008135905061296681613700565b92915050565b60008151905061297b81613700565b92915050565b600082601f83011261299657612995613565565b5b81356129a68482602086016128a9565b91505092915050565b600082601f8301126129c4576129c3613565565b5b81356129d48482602086016128eb565b91505092915050565b6000813590506129ec81613717565b92915050565b600060208284031215612a0857612a07613574565b5b6000612a168482850161292d565b91505092915050565b60008060408385031215612a3657612a35613574565b5b6000612a448582860161292d565b9250506020612a558582860161292d565b9150509250929050565b600080600060608486031215612a7857612a77613574565b5b6000612a868682870161292d565b9350506020612a978682870161292d565b9250506040612aa8868287016129dd565b9150509250925092565b60008060008060808587031215612acc57612acb613574565b5b6000612ada8782880161292d565b9450506020612aeb8782880161292d565b9350506040612afc878288016129dd565b925050606085013567ffffffffffffffff811115612b1d57612b1c61356f565b5b612b2987828801612981565b91505092959194509250565b60008060408385031215612b4c57612b4b613574565b5b6000612b5a8582860161292d565b9250506020612b6b85828601612942565b9150509250929050565b60008060408385031215612b8c57612b8b613574565b5b6000612b9a8582860161292d565b9250506020612bab858286016129dd565b9150509250929050565b600060208284031215612bcb57612bca613574565b5b6000612bd984828501612957565b91505092915050565b600060208284031215612bf857612bf7613574565b5b6000612c068482850161296c565b91505092915050565b600060208284031215612c2557612c24613574565b5b600082013567ffffffffffffffff811115612c4357612c4261356f565b5b612c4f848285016129af565b91505092915050565b600060208284031215612c6e57612c6d613574565b5b6000612c7c848285016129dd565b91505092915050565b612c8e816132d7565b82525050565b612c9d816132e9565b82525050565b6000612cae826130f6565b612cb8818561310c565b9350612cc881856020860161336a565b612cd181613579565b840191505092915050565b6000612ce782613101565b612cf18185613128565b9350612d0181856020860161336a565b612d0a81613579565b840191505092915050565b6000612d2082613101565b612d2a8185613139565b9350612d3a81856020860161336a565b80840191505092915050565b6000612d53602683613128565b9150612d5e8261358a565b604082019050919050565b6000612d76600983613128565b9150612d81826135d9565b602082019050919050565b6000612d99601883613128565b9150612da482613602565b602082019050919050565b6000612dbc601f83613128565b9150612dc78261362b565b602082019050919050565b6000612ddf600883613128565b9150612dea82613654565b602082019050919050565b6000612e02601e83613128565b9150612e0d8261367d565b602082019050919050565b6000612e25602083613128565b9150612e30826136a6565b602082019050919050565b6000612e4860008361311d565b9150612e53826136cf565b600082019050919050565b612e6781613341565b82525050565b612e768161334b565b82525050565b6000612e888285612d15565b9150612e948284612d15565b91508190509392505050565b6000612eab82612e3b565b9150819050919050565b6000602082019050612eca6000830184612c85565b92915050565b6000608082019050612ee56000830187612c85565b612ef26020830186612c85565b612eff6040830185612e5e565b8181036060830152612f118184612ca3565b905095945050505050565b6000602082019050612f316000830184612c94565b92915050565b60006020820190508181036000830152612f518184612cdc565b905092915050565b60006020820190508181036000830152612f7281612d46565b9050919050565b60006020820190508181036000830152612f9281612d69565b9050919050565b60006020820190508181036000830152612fb281612d8c565b9050919050565b60006020820190508181036000830152612fd281612daf565b9050919050565b60006020820190508181036000830152612ff281612dd2565b9050919050565b6000602082019050818103600083015261301281612df5565b9050919050565b6000602082019050818103600083015261303281612e18565b9050919050565b600060208201905061304e6000830184612e5e565b92915050565b60006020820190506130696000830184612e6d565b92915050565b600061307961308a565b905061308582826133cf565b919050565b6000604051905090565b600067ffffffffffffffff8211156130af576130ae613536565b5b6130b882613579565b9050602081019050919050565b600067ffffffffffffffff8211156130e0576130df613536565b5b6130e982613579565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061314f82613321565b915061315a83613321565b92508273ffffffffffffffffffffffffffffffffffffffff038211156131835761318261347a565b5b828201905092915050565b600061319982613341565b91506131a483613341565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d9576131d861347a565b5b828201905092915050565b60006131ef82613341565b91506131fa83613341565b92508261320a576132096134a9565b5b828204905092915050565b600061322082613341565b915061322b83613341565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132645761326361347a565b5b828202905092915050565b600061327a82613321565b915061328583613321565b9250828210156132985761329761347a565b5b828203905092915050565b60006132ae82613341565b91506132b983613341565b9250828210156132cc576132cb61347a565b5b828203905092915050565b60006132e282613321565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b8381101561338857808201518184015260208101905061336d565b83811115613397576000848401525b50505050565b600060028204905060018216806133b557607f821691505b602082108114156133c9576133c86134d8565b5b50919050565b6133d882613579565b810181811067ffffffffffffffff821117156133f7576133f6613536565b5b80604052505050565b600061340b82613341565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561343e5761343d61347a565b5b600182019050919050565b600061345482613341565b915061345f83613341565b92508261346f5761346e6134a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d61783250657254780000000000000000000000000000000000000000000000600082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f52657175657374206578636565647320636f6c6c656374696f6e2073697a6500600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6136db816132d7565b81146136e657600080fd5b50565b6136f2816132e9565b81146136fd57600080fd5b50565b613709816132f5565b811461371457600080fd5b50565b61372081613341565b811461372b57600080fd5b5056fea264697066735822122061a66b8422b1efb4c0728be6765447fec77f4134209da004a3b8431ae515cce264736f6c63430008070033
Deployed Bytecode Sourcemap
47608:1926:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28922:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32763:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34266:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33829:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28171:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35123:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48770:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49249:278;;;;;;;;;;;;;:::i;:::-;;35364:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48959:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47656:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32572:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47761:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29293:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49047:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5109:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32932:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48218:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48430:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34542:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35620:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33107:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47816:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34892:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5561:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47862:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28922:305;29024:4;29076:25;29061:40;;;:11;:40;;;;:105;;;;29133:33;29118:48;;;:11;:48;;;;29061:105;:158;;;;29183:36;29207:11;29183:23;:36::i;:::-;29061:158;29041:178;;28922:305;;;:::o;32763:100::-;32817:13;32850:5;32843:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32763:100;:::o;34266:204::-;34334:7;34359:16;34367:7;34359;:16::i;:::-;34354:64;;34384:34;;;;;;;;;;;;;;34354:64;34438:15;:24;34454:7;34438:24;;;;;;;;;;;;;;;;;;;;;34431:31;;34266:204;;;:::o;33829:371::-;33902:13;33918:24;33934:7;33918:15;:24::i;:::-;33902:40;;33963:5;33957:11;;:2;:11;;;33953:48;;;33977:24;;;;;;;;;;;;;;33953:48;34034:5;34018:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34044:37;34061:5;34068:12;:10;:12::i;:::-;34044:16;:37::i;:::-;34043:38;34018:63;34014:138;;;34105:35;;;;;;;;;;;;;;34014:138;34164:28;34173:2;34177:7;34186:5;34164:8;:28::i;:::-;33891:309;33829:371;;:::o;28171:303::-;28215:7;28440:15;:13;:15::i;:::-;28425:12;;28409:13;;:28;:46;28402:53;;28171:303;:::o;35123:170::-;35257:28;35267:4;35273:2;35277:7;35257:9;:28::i;:::-;35123:170;;;:::o;48770:181::-;4995:13;:11;:13::i;:::-;48879:9:::1;48851:37;;48867:8;48851:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;48843:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48912:31;48922:10;48934:8;48912:9;:31::i;:::-;48770:181:::0;:::o;49249:278::-;4995:13;:11;:13::i;:::-;49297:18:::1;49318:21;49297:42;;49352:9;49372:10;49352:31;;49396:12;49435:1;:6;;49449:10;49435:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49421:43;;;;;49483:7;49475:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49286:241;;;49249:278::o:0;35364:185::-;35502:39;35519:4;35525:2;35529:7;35502:39;;;;;;;;;;;;:16;:39::i;:::-;35364:185;;;:::o;48959:80::-;4995:13;:11;:13::i;:::-;49017:14:::1;49024:6;49017;:14::i;:::-;48959:80:::0;:::o;47656:96::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32572:124::-;32636:7;32663:20;32675:7;32663:11;:20::i;:::-;:25;;;32656:32;;32572:124;;;:::o;47761:48::-;;;:::o;29293:395::-;29357:7;29398:1;29381:19;;:5;:19;;;29377:60;;;29409:28;;;;;;;;;;;;;;29377:60;29485:1;29454:12;:19;29467:5;29454:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29450:108;;29518:12;:19;29531:5;29518:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29510:36;;29503:43;;;;29450:108;29610:13;;29599:6;29582:5;29574:32;;;;:::i;:::-;:49;;;29570:90;;29647:1;29640:8;;;;29570:90;29679:1;29672:8;;29293:395;;;;:::o;49047:194::-;4995:13;:11;:13::i;:::-;49156:9:::1;49130:35;;49146:6;49130:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;49122:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;49212:21;49222:2;49226:6;49212:9;:21::i;:::-;49047:194:::0;;:::o;5109:87::-;5155:7;5182:6;;;;;;;;;;;5175:13;;5109:87;:::o;32932:104::-;32988:13;33021:7;33014:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32932:104;:::o;48218:86::-;4995:13;:11;:13::i;:::-;48293:3:::1;48281:9;:15;;;;;;;;;;;;:::i;:::-;;48218:86:::0;:::o;48430:332::-;47963:10;47950:23;;:9;:23;;;47942:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48532:9:::1;48506:35;;48522:6;48506:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;48498:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;48565:18;48586:6;48565:27;;48625:8;48611:22;;:10;:22;;48603:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;48687:10;48675:9;:22;;;;:::i;:::-;48662:9;:35;48658:97;;48714:29;48724:10;48736:6;48714:9;:29::i;:::-;48658:97;48487:275;48430:332:::0;:::o;34542:279::-;34645:12;:10;:12::i;:::-;34633:24;;:8;:24;;;34629:54;;;34666:17;;;;;;;;;;;;;;34629:54;34741:8;34696:18;:32;34715:12;:10;:12::i;:::-;34696:32;;;;;;;;;;;;;;;:42;34729:8;34696:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34794:8;34765:48;;34780:12;:10;:12::i;:::-;34765:48;;;34804:8;34765:48;;;;;;:::i;:::-;;;;;;;;34542:279;;:::o;35620:369::-;35787:28;35797:4;35803:2;35807:7;35787:9;:28::i;:::-;35830:15;:2;:13;;;:15::i;:::-;:76;;;;;35850:56;35881:4;35887:2;35891:7;35900:5;35850:30;:56::i;:::-;35849:57;35830:76;35826:156;;;35930:40;;;;;;;;;;;;;;35826:156;35620:369;;;;:::o;33107:318::-;33180:13;33211:16;33219:7;33211;:16::i;:::-;33206:59;;33236:29;;;;;;;;;;;;;;33206:59;33278:21;33302:10;:8;:10::i;:::-;33278:34;;33355:1;33336:7;33330:21;:26;;:87;;;;;;;;;;;;;;;;;33383:7;33392:18;:7;:16;:18::i;:::-;33366:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33330:87;33323:94;;;33107:318;;;:::o;47816:39::-;;;:::o;34892:164::-;34989:4;35013:18;:25;35032:5;35013:25;;;;;;;;;;;;;;;:35;35039:8;35013:35;;;;;;;;;;;;;;;;;;;;;;;;;35006:42;;34892:164;;;;:::o;5561:201::-;4995:13;:11;:13::i;:::-;5670:1:::1;5650:22;;:8;:22;;;;5642:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5726:28;5745:8;5726:18;:28::i;:::-;5561:201:::0;:::o;47862:36::-;;;:::o;17509:157::-;17594:4;17633:25;17618:40;;;:11;:40;;;;17611:47;;17509:157;;;:::o;36244:187::-;36301:4;36344:7;36325:15;:13;:15::i;:::-;:26;;:53;;;;;36365:13;;36355:7;:23;36325:53;:98;;;;;36396:11;:20;36408:7;36396:20;;;;;;;;;;;:27;;;;;;;;;;;;36395:28;36325:98;36318:105;;36244:187;;;:::o;3660:98::-;3713:7;3740:10;3733:17;;3660:98;:::o;44592:196::-;44734:2;44707:15;:24;44723:7;44707:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44772:7;44768:2;44752:28;;44761:5;44752:28;;;;;;;;;;;;44592:196;;;:::o;48312:110::-;48386:7;48413:1;48406:8;;48312:110;:::o;40094:2112::-;40209:35;40247:20;40259:7;40247:11;:20::i;:::-;40209:58;;40280:22;40322:13;:18;;;40306:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40357:50;40374:13;:18;;;40394:12;:10;:12::i;:::-;40357:16;:50::i;:::-;40306:101;:154;;;;40448:12;:10;:12::i;:::-;40424:36;;:20;40436:7;40424:11;:20::i;:::-;:36;;;40306:154;40280:181;;40479:17;40474:66;;40505:35;;;;;;;;;;;;;;40474:66;40577:4;40555:26;;:13;:18;;;:26;;;40551:67;;40590:28;;;;;;;;;;;;;;40551:67;40647:1;40633:16;;:2;:16;;;40629:52;;;40658:23;;;;;;;;;;;;;;40629:52;40694:43;40716:4;40722:2;40726:7;40735:1;40694:21;:43::i;:::-;40802:49;40819:1;40823:7;40832:13;:18;;;40802:8;:49::i;:::-;41177:1;41147:12;:18;41160:4;41147:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41221:1;41193:12;:16;41206:2;41193:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41267:2;41239:11;:20;41251:7;41239:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41329:15;41284:11;:20;41296:7;41284:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41597:19;41629:1;41619:7;:11;41597:33;;41690:1;41649:43;;:11;:24;41661:11;41649:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41645:445;;;41874:13;;41860:11;:27;41856:219;;;41944:13;:18;;;41912:11;:24;41924:11;41912:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42027:13;:28;;;41985:11;:24;41997:11;41985:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;41856:219;41645:445;41122:979;42137:7;42133:2;42118:27;;42127:4;42118:27;;;;;;;;;;;;42156:42;42177:4;42183:2;42187:7;42196:1;42156:20;:42::i;:::-;40198:2008;;40094:2112;;;:::o;5274:132::-;5349:12;:10;:12::i;:::-;5338:23;;:7;:5;:7::i;:::-;:23;;;5330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5274:132::o;36439:104::-;36508:27;36518:2;36522:8;36508:27;;;;;;;;;;;;:9;:27::i;:::-;36439:104;;:::o;37077:113::-;37159:19;37169:8;37159:9;:19::i;:::-;37077:113;:::o;31223:1287::-;31284:21;;:::i;:::-;31318:12;31333:7;31318:22;;31401:4;31382:15;:13;:15::i;:::-;:23;;:47;;;;;31416:13;;31409:4;:20;31382:47;31378:1065;;;31450:31;31484:11;:17;31496:4;31484:17;;;;;;;;;;;31450:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31525:9;:16;;;31520:904;;31596:1;31570:28;;:9;:14;;;:28;;;31566:101;;31634:9;31627:16;;;;;;31566:101;31971:13;31987:1;31971:17;;32011:270;32040:6;;;;;;;;32085:11;:17;32097:4;32085:17;;;;;;;;;;;32073:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32159:1;32133:28;;:9;:14;;;:28;;;32129:109;;32201:9;32194:16;;;;;;;32129:109;32278:1;32268:7;;;;;;;:11;32011:270;;32356:7;32338:6;32330:34;32305:9;:14;;:60;;;;;;;;;;;32395:9;32388:16;;;;;;;31520:904;31431:1012;31378:1065;32471:31;;;;;;;;;;;;;;31223:1287;;;;:::o;7353:326::-;7413:4;7670:1;7648:7;:19;;;:23;7641:30;;7353:326;;;:::o;45280:667::-;45443:4;45480:2;45464:36;;;45501:12;:10;:12::i;:::-;45515:4;45521:7;45530:5;45464:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45460:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45715:1;45698:6;:13;:18;45694:235;;;45744:40;;;;;;;;;;;;;;45694:235;45887:6;45881:13;45872:6;45868:2;45864:15;45857:38;45460:480;45593:45;;;45583:55;;;:6;:55;;;;45576:62;;;45280:667;;;;;;:::o;48099:111::-;48160:13;48193:9;48186:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48099:111;:::o;914:723::-;970:13;1200:1;1191:5;:10;1187:53;;;1218:10;;;;;;;;;;;;;;;;;;;;;1187:53;1250:12;1265:5;1250:20;;1281:14;1306:78;1321:1;1313:4;:9;1306:78;;1339:8;;;;;:::i;:::-;;;;1370:2;1362:10;;;;;:::i;:::-;;;1306:78;;;1394:19;1426:6;1416:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394:39;;1444:154;1460:1;1451:5;:10;1444:154;;1488:1;1478:11;;;;;:::i;:::-;;;1555:2;1547:5;:10;;;;:::i;:::-;1534:2;:24;;;;:::i;:::-;1521:39;;1504:6;1511;1504:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1584:2;1575:11;;;;;:::i;:::-;;;1444:154;;;1622:6;1608:21;;;;;914:723;;;;:::o;5922:191::-;5996:16;6015:6;;;;;;;;;;;5996:25;;6041:8;6032:6;;:17;;;;;;;;;;;;;;;;;;6096:8;6065:40;;6086:8;6065:40;;;;;;;;;;;;5985:128;5922:191;:::o;46595:159::-;;;;;:::o;47413:158::-;;;;;:::o;36906:163::-;37029:32;37035:2;37039:8;37049:5;37056:4;37029:5;:32::i;:::-;36906:163;;;:::o;39233:607::-;39334:1;39322:8;:13;39318:44;;;39344:18;;;;;;;;;;;;;;39318:44;39379:20;39402:13;;39379:36;;39430:11;39459:8;39444:12;:23;;;;:::i;:::-;39430:37;;39550:12;39532:6;39524:39;;;;:::i;:::-;39482:11;:26;39494:13;;39482:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;39610:166;39712:14;;;;;;39696:12;39678:6;39670:39;39641:86;;39658:1;39641:86;;;;;;;;;;;;39771:3;39755:12;:19;;39610:166;;39822:8;39805:13;;:25;;;;;;;:::i;:::-;;;;;;;;39303:537;;39233:607;:::o;37450:1775::-;37589:20;37612:13;;37589:36;;37654:1;37640:16;;:2;:16;;;37636:48;;;37665:19;;;;;;;;;;;;;;37636:48;37711:1;37699:8;:13;37695:44;;;37721:18;;;;;;;;;;;;;;37695:44;37752:61;37782:1;37786:2;37790:12;37804:8;37752:21;:61::i;:::-;38125:8;38090:12;:16;38103:2;38090:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38189:8;38149:12;:16;38162:2;38149:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38248:2;38215:11;:25;38227:12;38215:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38315:15;38265:11;:25;38277:12;38265:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38348:20;38371:12;38348:35;;38398:11;38427:8;38412:12;:23;38398:37;;38456:4;:23;;;;;38464:15;:2;:13;;;:15::i;:::-;38456:23;38452:641;;;38500:314;38556:12;38552:2;38531:38;;38548:1;38531:38;;;;;;;;;;;;38597:69;38636:1;38640:2;38644:14;;;;;;38660:5;38597:30;:69::i;:::-;38592:174;;38702:40;;;;;;;;;;;;;;38592:174;38809:3;38793:12;:19;;38500:314;;38895:12;38878:13;;:29;38874:43;;38909:8;;;38874:43;38452:641;;;38958:120;39014:14;;;;;;39010:2;38989:40;;39006:1;38989:40;;;;;;;;;;;;39073:3;39057:12;:19;;38958:120;;38452:641;39123:12;39107:13;:28;;;;38065:1082;;39157:60;39186:1;39190:2;39194:12;39208:8;39157:20;:60::i;:::-;37578:1647;37450:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:365::-;9030:3;9051:66;9115:1;9110:3;9051:66;:::i;:::-;9044:73;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8888:365;;;:::o;9259:366::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:365::-;10145:3;10166:66;10230:1;10225:3;10166:66;:::i;:::-;10159:73;;10241:93;10330:3;10241:93;:::i;:::-;10359:2;10354:3;10350:12;10343:19;;10003:365;;;:::o;10374:366::-;10516:3;10537:67;10601:2;10596:3;10537:67;:::i;:::-;10530:74;;10613:93;10702:3;10613:93;:::i;:::-;10731:2;10726:3;10722:12;10715:19;;10374:366;;;:::o;10746:::-;10888:3;10909:67;10973:2;10968:3;10909:67;:::i;:::-;10902:74;;10985:93;11074:3;10985:93;:::i;:::-;11103:2;11098:3;11094:12;11087:19;;10746:366;;;:::o;11118:398::-;11277:3;11298:83;11379:1;11374:3;11298:83;:::i;:::-;11291:90;;11390:93;11479:3;11390:93;:::i;:::-;11508:1;11503:3;11499:11;11492:18;;11118:398;;;:::o;11522:118::-;11609:24;11627:5;11609:24;:::i;:::-;11604:3;11597:37;11522:118;;:::o;11646:115::-;11731:23;11748:5;11731:23;:::i;:::-;11726:3;11719:36;11646:115;;:::o;11767:435::-;11947:3;11969:95;12060:3;12051:6;11969:95;:::i;:::-;11962:102;;12081:95;12172:3;12163:6;12081:95;:::i;:::-;12074:102;;12193:3;12186:10;;11767:435;;;;;:::o;12208:379::-;12392:3;12414:147;12557:3;12414:147;:::i;:::-;12407:154;;12578:3;12571:10;;12208:379;;;:::o;12593:222::-;12686:4;12724:2;12713:9;12709:18;12701:26;;12737:71;12805:1;12794:9;12790:17;12781:6;12737:71;:::i;:::-;12593:222;;;;:::o;12821:640::-;13016:4;13054:3;13043:9;13039:19;13031:27;;13068:71;13136:1;13125:9;13121:17;13112:6;13068:71;:::i;:::-;13149:72;13217:2;13206:9;13202:18;13193:6;13149:72;:::i;:::-;13231;13299:2;13288:9;13284:18;13275:6;13231:72;:::i;:::-;13350:9;13344:4;13340:20;13335:2;13324:9;13320:18;13313:48;13378:76;13449:4;13440:6;13378:76;:::i;:::-;13370:84;;12821:640;;;;;;;:::o;13467:210::-;13554:4;13592:2;13581:9;13577:18;13569:26;;13605:65;13667:1;13656:9;13652:17;13643:6;13605:65;:::i;:::-;13467:210;;;;:::o;13683:313::-;13796:4;13834:2;13823:9;13819:18;13811:26;;13883:9;13877:4;13873:20;13869:1;13858:9;13854:17;13847:47;13911:78;13984:4;13975:6;13911:78;:::i;:::-;13903:86;;13683:313;;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:::-;14593:4;14631:2;14620:9;14616:18;14608:26;;14680:9;14674:4;14670:20;14666:1;14655:9;14651:17;14644:47;14708:131;14834:4;14708:131;:::i;:::-;14700:139;;14427:419;;;:::o;14852:::-;15018:4;15056:2;15045:9;15041:18;15033:26;;15105:9;15099:4;15095:20;15091:1;15080:9;15076:17;15069:47;15133:131;15259:4;15133:131;:::i;:::-;15125:139;;14852:419;;;:::o;15277:::-;15443:4;15481:2;15470:9;15466:18;15458:26;;15530:9;15524:4;15520:20;15516:1;15505:9;15501:17;15494:47;15558:131;15684:4;15558:131;:::i;:::-;15550:139;;15277:419;;;:::o;15702:::-;15868:4;15906:2;15895:9;15891:18;15883:26;;15955:9;15949:4;15945:20;15941:1;15930:9;15926:17;15919:47;15983:131;16109:4;15983:131;:::i;:::-;15975:139;;15702:419;;;:::o;16127:::-;16293:4;16331:2;16320:9;16316:18;16308:26;;16380:9;16374:4;16370:20;16366:1;16355:9;16351:17;16344:47;16408:131;16534:4;16408:131;:::i;:::-;16400:139;;16127:419;;;:::o;16552:::-;16718:4;16756:2;16745:9;16741:18;16733:26;;16805:9;16799:4;16795:20;16791:1;16780:9;16776:17;16769:47;16833:131;16959:4;16833:131;:::i;:::-;16825:139;;16552:419;;;:::o;16977:222::-;17070:4;17108:2;17097:9;17093:18;17085:26;;17121:71;17189:1;17178:9;17174:17;17165:6;17121:71;:::i;:::-;16977:222;;;;:::o;17205:218::-;17296:4;17334:2;17323:9;17319:18;17311:26;;17347:69;17413:1;17402:9;17398:17;17389:6;17347:69;:::i;:::-;17205:218;;;;:::o;17429:129::-;17463:6;17490:20;;:::i;:::-;17480:30;;17519:33;17547:4;17539:6;17519:33;:::i;:::-;17429:129;;;:::o;17564:75::-;17597:6;17630:2;17624:9;17614:19;;17564:75;:::o;17645:307::-;17706:4;17796:18;17788:6;17785:30;17782:56;;;17818:18;;:::i;:::-;17782:56;17856:29;17878:6;17856:29;:::i;:::-;17848:37;;17940:4;17934;17930:15;17922:23;;17645:307;;;:::o;17958:308::-;18020:4;18110:18;18102:6;18099:30;18096:56;;;18132:18;;:::i;:::-;18096:56;18170:29;18192:6;18170:29;:::i;:::-;18162:37;;18254:4;18248;18244:15;18236:23;;17958:308;;;:::o;18272:98::-;18323:6;18357:5;18351:12;18341:22;;18272:98;;;:::o;18376:99::-;18428:6;18462:5;18456:12;18446:22;;18376:99;;;:::o;18481:168::-;18564:11;18598:6;18593:3;18586:19;18638:4;18633:3;18629:14;18614:29;;18481:168;;;;:::o;18655:147::-;18756:11;18793:3;18778:18;;18655:147;;;;:::o;18808:169::-;18892:11;18926:6;18921:3;18914:19;18966:4;18961:3;18957:14;18942:29;;18808:169;;;;:::o;18983:148::-;19085:11;19122:3;19107:18;;18983:148;;;;:::o;19137:281::-;19177:3;19196:20;19214:1;19196:20;:::i;:::-;19191:25;;19230:20;19248:1;19230:20;:::i;:::-;19225:25;;19360:1;19316:42;19312:50;19309:1;19306:57;19303:83;;;19366:18;;:::i;:::-;19303:83;19410:1;19407;19403:9;19396:16;;19137:281;;;;:::o;19424:305::-;19464:3;19483:20;19501:1;19483:20;:::i;:::-;19478:25;;19517:20;19535:1;19517:20;:::i;:::-;19512:25;;19671:1;19603:66;19599:74;19596:1;19593:81;19590:107;;;19677:18;;:::i;:::-;19590:107;19721:1;19718;19714:9;19707:16;;19424:305;;;;:::o;19735:185::-;19775:1;19792:20;19810:1;19792:20;:::i;:::-;19787:25;;19826:20;19844:1;19826:20;:::i;:::-;19821:25;;19865:1;19855:35;;19870:18;;:::i;:::-;19855:35;19912:1;19909;19905:9;19900:14;;19735:185;;;;:::o;19926:348::-;19966:7;19989:20;20007:1;19989:20;:::i;:::-;19984:25;;20023:20;20041:1;20023:20;:::i;:::-;20018:25;;20211:1;20143:66;20139:74;20136:1;20133:81;20128:1;20121:9;20114:17;20110:105;20107:131;;;20218:18;;:::i;:::-;20107:131;20266:1;20263;20259:9;20248:20;;19926:348;;;;:::o;20280:191::-;20320:4;20340:20;20358:1;20340:20;:::i;:::-;20335:25;;20374:20;20392:1;20374:20;:::i;:::-;20369:25;;20413:1;20410;20407:8;20404:34;;;20418:18;;:::i;:::-;20404:34;20463:1;20460;20456:9;20448:17;;20280:191;;;;:::o;20477:::-;20517:4;20537:20;20555:1;20537:20;:::i;:::-;20532:25;;20571:20;20589:1;20571:20;:::i;:::-;20566:25;;20610:1;20607;20604:8;20601:34;;;20615:18;;:::i;:::-;20601:34;20660:1;20657;20653:9;20645:17;;20477:191;;;;:::o;20674:96::-;20711:7;20740:24;20758:5;20740:24;:::i;:::-;20729:35;;20674:96;;;:::o;20776:90::-;20810:7;20853:5;20846:13;20839:21;20828:32;;20776:90;;;:::o;20872:149::-;20908:7;20948:66;20941:5;20937:78;20926:89;;20872:149;;;:::o;21027:126::-;21064:7;21104:42;21097:5;21093:54;21082:65;;21027:126;;;:::o;21159:77::-;21196:7;21225:5;21214:16;;21159:77;;;:::o;21242:93::-;21278:7;21318:10;21311:5;21307:22;21296:33;;21242:93;;;:::o;21341:154::-;21425:6;21420:3;21415;21402:30;21487:1;21478:6;21473:3;21469:16;21462:27;21341:154;;;:::o;21501:307::-;21569:1;21579:113;21593:6;21590:1;21587:13;21579:113;;;21678:1;21673:3;21669:11;21663:18;21659:1;21654:3;21650:11;21643:39;21615:2;21612:1;21608:10;21603:15;;21579:113;;;21710:6;21707:1;21704:13;21701:101;;;21790:1;21781:6;21776:3;21772:16;21765:27;21701:101;21550:258;21501:307;;;:::o;21814:320::-;21858:6;21895:1;21889:4;21885:12;21875:22;;21942:1;21936:4;21932:12;21963:18;21953:81;;22019:4;22011:6;22007:17;21997:27;;21953:81;22081:2;22073:6;22070:14;22050:18;22047:38;22044:84;;;22100:18;;:::i;:::-;22044:84;21865:269;21814:320;;;:::o;22140:281::-;22223:27;22245:4;22223:27;:::i;:::-;22215:6;22211:40;22353:6;22341:10;22338:22;22317:18;22305:10;22302:34;22299:62;22296:88;;;22364:18;;:::i;:::-;22296:88;22404:10;22400:2;22393:22;22183:238;22140:281;;:::o;22427:233::-;22466:3;22489:24;22507:5;22489:24;:::i;:::-;22480:33;;22535:66;22528:5;22525:77;22522:103;;;22605:18;;:::i;:::-;22522:103;22652:1;22645:5;22641:13;22634:20;;22427:233;;;:::o;22666:176::-;22698:1;22715:20;22733:1;22715:20;:::i;:::-;22710:25;;22749:20;22767:1;22749:20;:::i;:::-;22744:25;;22788:1;22778:35;;22793:18;;:::i;:::-;22778:35;22834:1;22831;22827:9;22822:14;;22666:176;;;;:::o;22848:180::-;22896:77;22893:1;22886:88;22993:4;22990:1;22983:15;23017:4;23014:1;23007:15;23034:180;23082:77;23079:1;23072:88;23179:4;23176:1;23169:15;23203:4;23200:1;23193:15;23220:180;23268:77;23265:1;23258:88;23365:4;23362:1;23355:15;23389:4;23386:1;23379:15;23406:180;23454:77;23451:1;23444:88;23551:4;23548:1;23541:15;23575:4;23572:1;23565:15;23592:180;23640:77;23637:1;23630:88;23737:4;23734:1;23727:15;23761:4;23758:1;23751:15;23778:117;23887:1;23884;23877:12;23901:117;24010:1;24007;24000:12;24024:117;24133:1;24130;24123:12;24147:117;24256:1;24253;24246:12;24270:102;24311:6;24362:2;24358:7;24353:2;24346:5;24342:14;24338:28;24328:38;;24270:102;;;:::o;24378:225::-;24518:34;24514:1;24506:6;24502:14;24495:58;24587:8;24582:2;24574:6;24570:15;24563:33;24378:225;:::o;24609:159::-;24749:11;24745:1;24737:6;24733:14;24726:35;24609:159;:::o;24774:174::-;24914:26;24910:1;24902:6;24898:14;24891:50;24774:174;:::o;24954:181::-;25094:33;25090:1;25082:6;25078:14;25071:57;24954:181;:::o;25141:158::-;25281:10;25277:1;25269:6;25265:14;25258:34;25141:158;:::o;25305:180::-;25445:32;25441:1;25433:6;25429:14;25422:56;25305:180;:::o;25491:182::-;25631:34;25627:1;25619:6;25615:14;25608:58;25491:182;:::o;25679:114::-;;:::o;25799:122::-;25872:24;25890:5;25872:24;:::i;:::-;25865:5;25862:35;25852:63;;25911:1;25908;25901:12;25852:63;25799:122;:::o;25927:116::-;25997:21;26012:5;25997:21;:::i;:::-;25990:5;25987:32;25977:60;;26033:1;26030;26023:12;25977:60;25927:116;:::o;26049:120::-;26121:23;26138:5;26121:23;:::i;:::-;26114:5;26111:34;26101:62;;26159:1;26156;26149:12;26101:62;26049:120;:::o;26175:122::-;26248:24;26266:5;26248:24;:::i;:::-;26241:5;26238:35;26228:63;;26287:1;26284;26277:12;26228:63;26175:122;:::o
Swarm Source
ipfs://61a66b8422b1efb4c0728be6765447fec77f4134209da004a3b8431ae515cce2
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.