Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
26 SPYNN
Holders
7
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SPYNNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SpynnergyMetamorphosis
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-11 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/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: erc721a/contracts/ERC721A.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 ERC721A 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(); return uint256(_addressData[owner].balance); } /** * 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; } /** * 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { 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 = ERC721A.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); } /** * @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); } /** * @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/4_Spynnergy.sol pragma solidity ^0.8.13; contract SpynnergyMetamorphosis is ERC721A, Ownable { using Strings for uint256; uint256 constant MAX_TOKENS = 1111; uint256 salePrice = 0.075 ether; string _baseUri; bool isReserveState = true; modifier isNotReserveState() { require(isReserveState == false, "There is no sale active currently"); _; } constructor(string memory baseURI) ERC721A('Spynnergy: Metamorphosis', 'SPYNN') { setBaseUri(baseURI); } function _startTokenId() internal pure override returns (uint256) { return 1; } function setBaseUri(string memory baseURI) public onlyOwner { _baseUri = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseUri; } function reserve(uint256 amount) external onlyOwner { require(_totalMinted() + amount <= MAX_TOKENS, 'Minted amount will exceed max supply'); _safeMint(msg.sender, amount); } function mint(uint256 amount) external payable isNotReserveState { require(_totalMinted() + amount <= MAX_TOKENS, 'Minted amount will exceed max supply.'); require(msg.value == salePrice * amount, 'Insufficient ether provided to mint.'); _safeMint(msg.sender, amount); } function changeSalePrice(uint256 priceInWei) external onlyOwner { salePrice = priceInWei; } function getSalePrice() external view returns (uint256) { return salePrice; } function switchReserveState() external onlyOwner { isReserveState = !isReserveState; } function getReserveState() external view returns (bool) { return isReserveState; } function withdrawBalance() external onlyOwner { require(address(this).balance > 0, "Insufficient balance"); (bool success, ) = msg.sender.call{ value: address(this).balance }(""); require(success, "Ether withdrawal failed"); } function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), '.json')) : ''; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":"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":"priceInWei","type":"uint256"}],"name":"changeSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseUri","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":"switchReserveState","outputs":[],"stateMutability":"nonpayable","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":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267010a741a462780006009556001600b60006101000a81548160ff0219169083151502179055503480156200003857600080fd5b5060405162003c7b38038062003c7b83398181016040528101906200005e919062000545565b6040518060400160405280601881526020017f5370796e6e657267793a204d6574616d6f7270686f73697300000000000000008152506040518060400160405280600581526020017f5350594e4e0000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e2929190620002f8565b508060039080519060200190620000fb929190620002f8565b506200010c6200014c60201b60201c565b600081905550505062000134620001286200015560201b60201c565b6200015d60201b60201c565b62000145816200022360201b60201c565b506200067d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002336200015560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000259620002ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a990620005f7565b60405180910390fd5b80600a9080519060200190620002ca929190620002f8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003069062000648565b90600052602060002090601f0160209004810192826200032a576000855562000376565b82601f106200034557805160ff191683800117855562000376565b8280016001018555821562000376579182015b828111156200037557825182559160200191906001019062000358565b5b50905062000385919062000389565b5090565b5b80821115620003a45760008160009055506001016200038a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200041182620003c6565b810181811067ffffffffffffffff82111715620004335762000432620003d7565b5b80604052505050565b600062000448620003a8565b905062000456828262000406565b919050565b600067ffffffffffffffff821115620004795762000478620003d7565b5b6200048482620003c6565b9050602081019050919050565b60005b83811015620004b157808201518184015260208101905062000494565b83811115620004c1576000848401525b50505050565b6000620004de620004d8846200045b565b6200043c565b905082815260208101848484011115620004fd57620004fc620003c1565b5b6200050a84828562000491565b509392505050565b600082601f8301126200052a5762000529620003bc565b5b81516200053c848260208601620004c7565b91505092915050565b6000602082840312156200055e576200055d620003b2565b5b600082015167ffffffffffffffff8111156200057f576200057e620003b7565b5b6200058d8482850162000512565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620005df60208362000596565b9150620005ec82620005a7565b602082019050919050565b600060208201905081810360008301526200061281620005d0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066157607f821691505b60208210810362000677576200067662000619565b5b50919050565b6135ee806200068d6000396000f3fe6080604052600436106101665760003560e01c8063819b25ba116100d1578063b56208961161008a578063d601f10a11610064578063d601f10a14610505578063e985e9c51461051c578063ef5bac2514610559578063f2fde38b1461058457610166565b8063b562089614610476578063b88d4fde1461049f578063c87b56dd146104c857610166565b8063819b25ba146103895780638da5cb5b146103b257806395d89b41146103dd578063a0712d6814610408578063a0bcfc7f14610424578063a22cb4651461044d57610166565b80632fbc0bf1116101235780632fbc0bf11461028d57806342842e0e146102b85780635fd8c710146102e15780636352211e146102f857806370a0823114610335578063715018a61461037257610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906126fe565b6105ad565b60405161019f9190612746565b60405180910390f35b3480156101b457600080fd5b506101bd61068f565b6040516101ca91906127fa565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612852565b610721565b60405161020791906128c0565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612907565b61079d565b005b34801561024557600080fd5b5061024e6108a7565b60405161025b9190612956565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190612971565b6108be565b005b34801561029957600080fd5b506102a26108ce565b6040516102af9190612956565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612971565b6108d8565b005b3480156102ed57600080fd5b506102f66108f8565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612852565b610a66565b60405161032c91906128c0565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906129c4565b610a7c565b6040516103699190612956565b60405180910390f35b34801561037e57600080fd5b50610387610b4b565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612852565b610bd3565b005b3480156103be57600080fd5b506103c7610cb3565b6040516103d491906128c0565b60405180910390f35b3480156103e957600080fd5b506103f2610cdd565b6040516103ff91906127fa565b60405180910390f35b610422600480360381019061041d9190612852565b610d6f565b005b34801561043057600080fd5b5061044b60048036038101906104469190612b26565b610e78565b005b34801561045957600080fd5b50610474600480360381019061046f9190612b9b565b610f0e565b005b34801561048257600080fd5b5061049d60048036038101906104989190612852565b611085565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190612c7c565b61110b565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190612852565b611187565b6040516104fc91906127fa565b60405180910390f35b34801561051157600080fd5b5061051a611225565b005b34801561052857600080fd5b50610543600480360381019061053e9190612cff565b6112cd565b6040516105509190612746565b60405180910390f35b34801561056557600080fd5b5061056e611361565b60405161057b9190612746565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a691906129c4565b611378565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068857506106878261146f565b5b9050919050565b60606002805461069e90612d6e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ca90612d6e565b80156107175780601f106106ec57610100808354040283529160200191610717565b820191906000526020600020905b8154815290600101906020018083116106fa57829003601f168201915b5050505050905090565b600061072c826114d9565b610762576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a882610a66565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082e611527565b73ffffffffffffffffffffffffffffffffffffffff1614158015610860575061085e81610859611527565b6112cd565b155b15610897576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108a283838361152f565b505050565b60006108b16115e1565b6001546000540303905090565b6108c98383836115ea565b505050565b6000600954905090565b6108f38383836040518060200160405280600081525061110b565b505050565b610900611527565b73ffffffffffffffffffffffffffffffffffffffff1661091e610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90612deb565b60405180910390fd5b600047116109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90612e57565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516109dd90612ea8565b60006040518083038185875af1925050503d8060008114610a1a576040519150601f19603f3d011682016040523d82523d6000602084013e610a1f565b606091505b5050905080610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90612f09565b60405180910390fd5b50565b6000610a7182611ad9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ae3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610b53611527565b73ffffffffffffffffffffffffffffffffffffffff16610b71610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612deb565b60405180910390fd5b610bd16000611d68565b565b610bdb611527565b73ffffffffffffffffffffffffffffffffffffffff16610bf9610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690612deb565b60405180910390fd5b61045781610c5b611e2e565b610c659190612f58565b1115610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90613020565b60405180910390fd5b610cb03382611e41565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cec90612d6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612d6e565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b60001515600b60009054906101000a900460ff16151514610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906130b2565b60405180910390fd5b61045781610dd1611e2e565b610ddb9190612f58565b1115610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613144565b60405180910390fd5b80600954610e2a9190613164565b3414610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290613230565b60405180910390fd5b610e753382611e41565b50565b610e80611527565b73ffffffffffffffffffffffffffffffffffffffff16610e9e610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90612deb565b60405180910390fd5b80600a9080519060200190610f0a9291906125ac565b5050565b610f16611527565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f87611527565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611034611527565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110799190612746565b60405180910390a35050565b61108d611527565b73ffffffffffffffffffffffffffffffffffffffff166110ab610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890612deb565b60405180910390fd5b8060098190555050565b6111168484846115ea565b6111358373ffffffffffffffffffffffffffffffffffffffff16611e5f565b801561114a575061114884848484611e82565b155b15611181576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611192826114d9565b6111c8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111d2611fd2565b905060008151036111f2576040518060200160405280600081525061121d565b806111fc84612064565b60405160200161120d9291906132d8565b6040516020818303038152906040525b915050919050565b61122d611527565b73ffffffffffffffffffffffffffffffffffffffff1661124b610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890612deb565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b60009054906101000a900460ff16905090565b611380611527565b73ffffffffffffffffffffffffffffffffffffffff1661139e610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90612deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90613379565b60405180910390fd5b61146c81611d68565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114e46115e1565b111580156114f3575060005482105b8015611520575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006115f582611ad9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661161c611527565b73ffffffffffffffffffffffffffffffffffffffff16148061164f575061164e8260000151611649611527565b6112cd565b5b80611694575061165d611527565b73ffffffffffffffffffffffffffffffffffffffff1661167c84610721565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116cd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611736576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361179c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a985858560016121c4565b6117b9600084846000015161152f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611a6957600054811015611a685782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ad285858560016121ca565b5050505050565b611ae1612632565b600082905080611aef6115e1565b11158015611afe575060005481105b15611d31576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d2f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c13578092505050611d63565b5b600115611d2e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d29578092505050611d63565b611c14565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611e386115e1565b60005403905090565b611e5b8282604051806020016040528060008152506121d0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea8611527565b8786866040518563ffffffff1660e01b8152600401611eca94939291906133ee565b6020604051808303816000875af1925050508015611f0657506040513d601f19601f82011682018060405250810190611f03919061344f565b60015b611f7f573d8060008114611f36576040519150601f19603f3d011682016040523d82523d6000602084013e611f3b565b606091505b506000815103611f77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fe190612d6e565b80601f016020809104026020016040519081016040528092919081815260200182805461200d90612d6e565b801561205a5780601f1061202f5761010080835404028352916020019161205a565b820191906000526020600020905b81548152906001019060200180831161203d57829003601f168201915b5050505050905090565b6060600082036120ab576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121bf565b600082905060005b600082146120dd5780806120c69061347c565b915050600a826120d691906134f3565b91506120b3565b60008167ffffffffffffffff8111156120f9576120f86129fb565b5b6040519080825280601f01601f19166020018201604052801561212b5781602001600182028036833780820191505090505b5090505b600085146121b8576001826121449190613524565b9150600a856121539190613558565b603061215f9190612f58565b60f81b81838151811061217557612174613589565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b191906134f3565b945061212f565b8093505050505b919050565b50505050565b50505050565b6121dd83838360016121e2565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361224e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612288576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229560008683876121c4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561245f575061245e8773ffffffffffffffffffffffffffffffffffffffff16611e5f565b5b15612524575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124d46000888480600101955088611e82565b61250a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361246557826000541461251f57600080fd5b61258f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612525575b8160008190555050506125a560008683876121ca565b5050505050565b8280546125b890612d6e565b90600052602060002090601f0160209004810192826125da5760008555612621565b82601f106125f357805160ff1916838001178555612621565b82800160010185558215612621579182015b82811115612620578251825591602001919060010190612605565b5b50905061262e9190612675565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561268e576000816000905550600101612676565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126db816126a6565b81146126e657600080fd5b50565b6000813590506126f8816126d2565b92915050565b6000602082840312156127145761271361269c565b5b6000612722848285016126e9565b91505092915050565b60008115159050919050565b6127408161272b565b82525050565b600060208201905061275b6000830184612737565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561279b578082015181840152602081019050612780565b838111156127aa576000848401525b50505050565b6000601f19601f8301169050919050565b60006127cc82612761565b6127d6818561276c565b93506127e681856020860161277d565b6127ef816127b0565b840191505092915050565b6000602082019050818103600083015261281481846127c1565b905092915050565b6000819050919050565b61282f8161281c565b811461283a57600080fd5b50565b60008135905061284c81612826565b92915050565b6000602082840312156128685761286761269c565b5b60006128768482850161283d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128aa8261287f565b9050919050565b6128ba8161289f565b82525050565b60006020820190506128d560008301846128b1565b92915050565b6128e48161289f565b81146128ef57600080fd5b50565b600081359050612901816128db565b92915050565b6000806040838503121561291e5761291d61269c565b5b600061292c858286016128f2565b925050602061293d8582860161283d565b9150509250929050565b6129508161281c565b82525050565b600060208201905061296b6000830184612947565b92915050565b60008060006060848603121561298a5761298961269c565b5b6000612998868287016128f2565b93505060206129a9868287016128f2565b92505060406129ba8682870161283d565b9150509250925092565b6000602082840312156129da576129d961269c565b5b60006129e8848285016128f2565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a33826127b0565b810181811067ffffffffffffffff82111715612a5257612a516129fb565b5b80604052505050565b6000612a65612692565b9050612a718282612a2a565b919050565b600067ffffffffffffffff821115612a9157612a906129fb565b5b612a9a826127b0565b9050602081019050919050565b82818337600083830152505050565b6000612ac9612ac484612a76565b612a5b565b905082815260208101848484011115612ae557612ae46129f6565b5b612af0848285612aa7565b509392505050565b600082601f830112612b0d57612b0c6129f1565b5b8135612b1d848260208601612ab6565b91505092915050565b600060208284031215612b3c57612b3b61269c565b5b600082013567ffffffffffffffff811115612b5a57612b596126a1565b5b612b6684828501612af8565b91505092915050565b612b788161272b565b8114612b8357600080fd5b50565b600081359050612b9581612b6f565b92915050565b60008060408385031215612bb257612bb161269c565b5b6000612bc0858286016128f2565b9250506020612bd185828601612b86565b9150509250929050565b600067ffffffffffffffff821115612bf657612bf56129fb565b5b612bff826127b0565b9050602081019050919050565b6000612c1f612c1a84612bdb565b612a5b565b905082815260208101848484011115612c3b57612c3a6129f6565b5b612c46848285612aa7565b509392505050565b600082601f830112612c6357612c626129f1565b5b8135612c73848260208601612c0c565b91505092915050565b60008060008060808587031215612c9657612c9561269c565b5b6000612ca4878288016128f2565b9450506020612cb5878288016128f2565b9350506040612cc68782880161283d565b925050606085013567ffffffffffffffff811115612ce757612ce66126a1565b5b612cf387828801612c4e565b91505092959194509250565b60008060408385031215612d1657612d1561269c565b5b6000612d24858286016128f2565b9250506020612d35858286016128f2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d8657607f821691505b602082108103612d9957612d98612d3f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612dd560208361276c565b9150612de082612d9f565b602082019050919050565b60006020820190508181036000830152612e0481612dc8565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000612e4160148361276c565b9150612e4c82612e0b565b602082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b600081905092915050565b50565b6000612e92600083612e77565b9150612e9d82612e82565b600082019050919050565b6000612eb382612e85565b9150819050919050565b7f4574686572207769746864726177616c206661696c6564000000000000000000600082015250565b6000612ef360178361276c565b9150612efe82612ebd565b602082019050919050565b60006020820190508181036000830152612f2281612ee6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f638261281c565b9150612f6e8361281c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fa357612fa2612f29565b5b828201905092915050565b7f4d696e74656420616d6f756e742077696c6c20657863656564206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b600061300a60248361276c565b915061301582612fae565b604082019050919050565b6000602082019050818103600083015261303981612ffd565b9050919050565b7f5468657265206973206e6f2073616c65206163746976652063757272656e746c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b600061309c60218361276c565b91506130a782613040565b604082019050919050565b600060208201905081810360008301526130cb8161308f565b9050919050565b7f4d696e74656420616d6f756e742077696c6c20657863656564206d617820737560008201527f70706c792e000000000000000000000000000000000000000000000000000000602082015250565b600061312e60258361276c565b9150613139826130d2565b604082019050919050565b6000602082019050818103600083015261315d81613121565b9050919050565b600061316f8261281c565b915061317a8361281c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131b3576131b2612f29565b5b828202905092915050565b7f496e73756666696369656e742065746865722070726f766964656420746f206d60008201527f696e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061321a60248361276c565b9150613225826131be565b604082019050919050565b600060208201905081810360008301526132498161320d565b9050919050565b600081905092915050565b600061326682612761565b6132708185613250565b935061328081856020860161277d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132c2600583613250565b91506132cd8261328c565b600582019050919050565b60006132e4828561325b565b91506132f0828461325b565b91506132fb826132b5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061336360268361276c565b915061336e82613307565b604082019050919050565b6000602082019050818103600083015261339281613356565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133c082613399565b6133ca81856133a4565b93506133da81856020860161277d565b6133e3816127b0565b840191505092915050565b600060808201905061340360008301876128b1565b61341060208301866128b1565b61341d6040830185612947565b818103606083015261342f81846133b5565b905095945050505050565b600081519050613449816126d2565b92915050565b6000602082840312156134655761346461269c565b5b60006134738482850161343a565b91505092915050565b60006134878261281c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134b9576134b8612f29565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134fe8261281c565b91506135098361281c565b925082613519576135186134c4565b5b828204905092915050565b600061352f8261281c565b915061353a8361281c565b92508282101561354d5761354c612f29565b5b828203905092915050565b60006135638261281c565b915061356e8361281c565b92508261357e5761357d6134c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220d0b83010e21d4d98db15f7a92209b122c7b64fb4201adda7f4e6c930f434403a64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654d65327756433555766d6434373279394743353279624e56747938375639567958634a6f5a323370646b6a2f00000000000000000000
Deployed Bytecode
0x6080604052600436106101665760003560e01c8063819b25ba116100d1578063b56208961161008a578063d601f10a11610064578063d601f10a14610505578063e985e9c51461051c578063ef5bac2514610559578063f2fde38b1461058457610166565b8063b562089614610476578063b88d4fde1461049f578063c87b56dd146104c857610166565b8063819b25ba146103895780638da5cb5b146103b257806395d89b41146103dd578063a0712d6814610408578063a0bcfc7f14610424578063a22cb4651461044d57610166565b80632fbc0bf1116101235780632fbc0bf11461028d57806342842e0e146102b85780635fd8c710146102e15780636352211e146102f857806370a0823114610335578063715018a61461037257610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906126fe565b6105ad565b60405161019f9190612746565b60405180910390f35b3480156101b457600080fd5b506101bd61068f565b6040516101ca91906127fa565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612852565b610721565b60405161020791906128c0565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612907565b61079d565b005b34801561024557600080fd5b5061024e6108a7565b60405161025b9190612956565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190612971565b6108be565b005b34801561029957600080fd5b506102a26108ce565b6040516102af9190612956565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612971565b6108d8565b005b3480156102ed57600080fd5b506102f66108f8565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612852565b610a66565b60405161032c91906128c0565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906129c4565b610a7c565b6040516103699190612956565b60405180910390f35b34801561037e57600080fd5b50610387610b4b565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612852565b610bd3565b005b3480156103be57600080fd5b506103c7610cb3565b6040516103d491906128c0565b60405180910390f35b3480156103e957600080fd5b506103f2610cdd565b6040516103ff91906127fa565b60405180910390f35b610422600480360381019061041d9190612852565b610d6f565b005b34801561043057600080fd5b5061044b60048036038101906104469190612b26565b610e78565b005b34801561045957600080fd5b50610474600480360381019061046f9190612b9b565b610f0e565b005b34801561048257600080fd5b5061049d60048036038101906104989190612852565b611085565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190612c7c565b61110b565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190612852565b611187565b6040516104fc91906127fa565b60405180910390f35b34801561051157600080fd5b5061051a611225565b005b34801561052857600080fd5b50610543600480360381019061053e9190612cff565b6112cd565b6040516105509190612746565b60405180910390f35b34801561056557600080fd5b5061056e611361565b60405161057b9190612746565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a691906129c4565b611378565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068857506106878261146f565b5b9050919050565b60606002805461069e90612d6e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ca90612d6e565b80156107175780601f106106ec57610100808354040283529160200191610717565b820191906000526020600020905b8154815290600101906020018083116106fa57829003601f168201915b5050505050905090565b600061072c826114d9565b610762576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a882610a66565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082e611527565b73ffffffffffffffffffffffffffffffffffffffff1614158015610860575061085e81610859611527565b6112cd565b155b15610897576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108a283838361152f565b505050565b60006108b16115e1565b6001546000540303905090565b6108c98383836115ea565b505050565b6000600954905090565b6108f38383836040518060200160405280600081525061110b565b505050565b610900611527565b73ffffffffffffffffffffffffffffffffffffffff1661091e610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90612deb565b60405180910390fd5b600047116109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90612e57565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516109dd90612ea8565b60006040518083038185875af1925050503d8060008114610a1a576040519150601f19603f3d011682016040523d82523d6000602084013e610a1f565b606091505b5050905080610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90612f09565b60405180910390fd5b50565b6000610a7182611ad9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ae3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610b53611527565b73ffffffffffffffffffffffffffffffffffffffff16610b71610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612deb565b60405180910390fd5b610bd16000611d68565b565b610bdb611527565b73ffffffffffffffffffffffffffffffffffffffff16610bf9610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690612deb565b60405180910390fd5b61045781610c5b611e2e565b610c659190612f58565b1115610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90613020565b60405180910390fd5b610cb03382611e41565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cec90612d6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612d6e565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b60001515600b60009054906101000a900460ff16151514610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906130b2565b60405180910390fd5b61045781610dd1611e2e565b610ddb9190612f58565b1115610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613144565b60405180910390fd5b80600954610e2a9190613164565b3414610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290613230565b60405180910390fd5b610e753382611e41565b50565b610e80611527565b73ffffffffffffffffffffffffffffffffffffffff16610e9e610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90612deb565b60405180910390fd5b80600a9080519060200190610f0a9291906125ac565b5050565b610f16611527565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f87611527565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611034611527565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110799190612746565b60405180910390a35050565b61108d611527565b73ffffffffffffffffffffffffffffffffffffffff166110ab610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890612deb565b60405180910390fd5b8060098190555050565b6111168484846115ea565b6111358373ffffffffffffffffffffffffffffffffffffffff16611e5f565b801561114a575061114884848484611e82565b155b15611181576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611192826114d9565b6111c8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111d2611fd2565b905060008151036111f2576040518060200160405280600081525061121d565b806111fc84612064565b60405160200161120d9291906132d8565b6040516020818303038152906040525b915050919050565b61122d611527565b73ffffffffffffffffffffffffffffffffffffffff1661124b610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890612deb565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b60009054906101000a900460ff16905090565b611380611527565b73ffffffffffffffffffffffffffffffffffffffff1661139e610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90612deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90613379565b60405180910390fd5b61146c81611d68565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114e46115e1565b111580156114f3575060005482105b8015611520575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006115f582611ad9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661161c611527565b73ffffffffffffffffffffffffffffffffffffffff16148061164f575061164e8260000151611649611527565b6112cd565b5b80611694575061165d611527565b73ffffffffffffffffffffffffffffffffffffffff1661167c84610721565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116cd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611736576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361179c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a985858560016121c4565b6117b9600084846000015161152f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611a6957600054811015611a685782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ad285858560016121ca565b5050505050565b611ae1612632565b600082905080611aef6115e1565b11158015611afe575060005481105b15611d31576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d2f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c13578092505050611d63565b5b600115611d2e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d29578092505050611d63565b611c14565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611e386115e1565b60005403905090565b611e5b8282604051806020016040528060008152506121d0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea8611527565b8786866040518563ffffffff1660e01b8152600401611eca94939291906133ee565b6020604051808303816000875af1925050508015611f0657506040513d601f19601f82011682018060405250810190611f03919061344f565b60015b611f7f573d8060008114611f36576040519150601f19603f3d011682016040523d82523d6000602084013e611f3b565b606091505b506000815103611f77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fe190612d6e565b80601f016020809104026020016040519081016040528092919081815260200182805461200d90612d6e565b801561205a5780601f1061202f5761010080835404028352916020019161205a565b820191906000526020600020905b81548152906001019060200180831161203d57829003601f168201915b5050505050905090565b6060600082036120ab576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121bf565b600082905060005b600082146120dd5780806120c69061347c565b915050600a826120d691906134f3565b91506120b3565b60008167ffffffffffffffff8111156120f9576120f86129fb565b5b6040519080825280601f01601f19166020018201604052801561212b5781602001600182028036833780820191505090505b5090505b600085146121b8576001826121449190613524565b9150600a856121539190613558565b603061215f9190612f58565b60f81b81838151811061217557612174613589565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b191906134f3565b945061212f565b8093505050505b919050565b50505050565b50505050565b6121dd83838360016121e2565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361224e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612288576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229560008683876121c4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561245f575061245e8773ffffffffffffffffffffffffffffffffffffffff16611e5f565b5b15612524575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124d46000888480600101955088611e82565b61250a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361246557826000541461251f57600080fd5b61258f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612525575b8160008190555050506125a560008683876121ca565b5050505050565b8280546125b890612d6e565b90600052602060002090601f0160209004810192826125da5760008555612621565b82601f106125f357805160ff1916838001178555612621565b82800160010185558215612621579182015b82811115612620578251825591602001919060010190612605565b5b50905061262e9190612675565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561268e576000816000905550600101612676565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126db816126a6565b81146126e657600080fd5b50565b6000813590506126f8816126d2565b92915050565b6000602082840312156127145761271361269c565b5b6000612722848285016126e9565b91505092915050565b60008115159050919050565b6127408161272b565b82525050565b600060208201905061275b6000830184612737565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561279b578082015181840152602081019050612780565b838111156127aa576000848401525b50505050565b6000601f19601f8301169050919050565b60006127cc82612761565b6127d6818561276c565b93506127e681856020860161277d565b6127ef816127b0565b840191505092915050565b6000602082019050818103600083015261281481846127c1565b905092915050565b6000819050919050565b61282f8161281c565b811461283a57600080fd5b50565b60008135905061284c81612826565b92915050565b6000602082840312156128685761286761269c565b5b60006128768482850161283d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128aa8261287f565b9050919050565b6128ba8161289f565b82525050565b60006020820190506128d560008301846128b1565b92915050565b6128e48161289f565b81146128ef57600080fd5b50565b600081359050612901816128db565b92915050565b6000806040838503121561291e5761291d61269c565b5b600061292c858286016128f2565b925050602061293d8582860161283d565b9150509250929050565b6129508161281c565b82525050565b600060208201905061296b6000830184612947565b92915050565b60008060006060848603121561298a5761298961269c565b5b6000612998868287016128f2565b93505060206129a9868287016128f2565b92505060406129ba8682870161283d565b9150509250925092565b6000602082840312156129da576129d961269c565b5b60006129e8848285016128f2565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a33826127b0565b810181811067ffffffffffffffff82111715612a5257612a516129fb565b5b80604052505050565b6000612a65612692565b9050612a718282612a2a565b919050565b600067ffffffffffffffff821115612a9157612a906129fb565b5b612a9a826127b0565b9050602081019050919050565b82818337600083830152505050565b6000612ac9612ac484612a76565b612a5b565b905082815260208101848484011115612ae557612ae46129f6565b5b612af0848285612aa7565b509392505050565b600082601f830112612b0d57612b0c6129f1565b5b8135612b1d848260208601612ab6565b91505092915050565b600060208284031215612b3c57612b3b61269c565b5b600082013567ffffffffffffffff811115612b5a57612b596126a1565b5b612b6684828501612af8565b91505092915050565b612b788161272b565b8114612b8357600080fd5b50565b600081359050612b9581612b6f565b92915050565b60008060408385031215612bb257612bb161269c565b5b6000612bc0858286016128f2565b9250506020612bd185828601612b86565b9150509250929050565b600067ffffffffffffffff821115612bf657612bf56129fb565b5b612bff826127b0565b9050602081019050919050565b6000612c1f612c1a84612bdb565b612a5b565b905082815260208101848484011115612c3b57612c3a6129f6565b5b612c46848285612aa7565b509392505050565b600082601f830112612c6357612c626129f1565b5b8135612c73848260208601612c0c565b91505092915050565b60008060008060808587031215612c9657612c9561269c565b5b6000612ca4878288016128f2565b9450506020612cb5878288016128f2565b9350506040612cc68782880161283d565b925050606085013567ffffffffffffffff811115612ce757612ce66126a1565b5b612cf387828801612c4e565b91505092959194509250565b60008060408385031215612d1657612d1561269c565b5b6000612d24858286016128f2565b9250506020612d35858286016128f2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d8657607f821691505b602082108103612d9957612d98612d3f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612dd560208361276c565b9150612de082612d9f565b602082019050919050565b60006020820190508181036000830152612e0481612dc8565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000612e4160148361276c565b9150612e4c82612e0b565b602082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b600081905092915050565b50565b6000612e92600083612e77565b9150612e9d82612e82565b600082019050919050565b6000612eb382612e85565b9150819050919050565b7f4574686572207769746864726177616c206661696c6564000000000000000000600082015250565b6000612ef360178361276c565b9150612efe82612ebd565b602082019050919050565b60006020820190508181036000830152612f2281612ee6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f638261281c565b9150612f6e8361281c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fa357612fa2612f29565b5b828201905092915050565b7f4d696e74656420616d6f756e742077696c6c20657863656564206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b600061300a60248361276c565b915061301582612fae565b604082019050919050565b6000602082019050818103600083015261303981612ffd565b9050919050565b7f5468657265206973206e6f2073616c65206163746976652063757272656e746c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b600061309c60218361276c565b91506130a782613040565b604082019050919050565b600060208201905081810360008301526130cb8161308f565b9050919050565b7f4d696e74656420616d6f756e742077696c6c20657863656564206d617820737560008201527f70706c792e000000000000000000000000000000000000000000000000000000602082015250565b600061312e60258361276c565b9150613139826130d2565b604082019050919050565b6000602082019050818103600083015261315d81613121565b9050919050565b600061316f8261281c565b915061317a8361281c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131b3576131b2612f29565b5b828202905092915050565b7f496e73756666696369656e742065746865722070726f766964656420746f206d60008201527f696e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061321a60248361276c565b9150613225826131be565b604082019050919050565b600060208201905081810360008301526132498161320d565b9050919050565b600081905092915050565b600061326682612761565b6132708185613250565b935061328081856020860161277d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132c2600583613250565b91506132cd8261328c565b600582019050919050565b60006132e4828561325b565b91506132f0828461325b565b91506132fb826132b5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061336360268361276c565b915061336e82613307565b604082019050919050565b6000602082019050818103600083015261339281613356565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133c082613399565b6133ca81856133a4565b93506133da81856020860161277d565b6133e3816127b0565b840191505092915050565b600060808201905061340360008301876128b1565b61341060208301866128b1565b61341d6040830185612947565b818103606083015261342f81846133b5565b905095945050505050565b600081519050613449816126d2565b92915050565b6000602082840312156134655761346461269c565b5b60006134738482850161343a565b91505092915050565b60006134878261281c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134b9576134b8612f29565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134fe8261281c565b91506135098361281c565b925082613519576135186134c4565b5b828204905092915050565b600061352f8261281c565b915061353a8361281c565b92508282101561354d5761354c612f29565b5b828203905092915050565b60006135638261281c565b915061356e8361281c565b92508261357e5761357d6134c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220d0b83010e21d4d98db15f7a92209b122c7b64fb4201adda7f4e6c930f434403a64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654d65327756433555766d6434373279394743353279624e56747938375639567958634a6f5a323370646b6a2f00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmeMe2wVC5Uvmd472y9GC52ybNVty87V9VyXcJoZ23pdkj/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d654d65327756433555766d643437327939474335327962
Arg [3] : 4e56747938375639567958634a6f5a323370646b6a2f00000000000000000000
Deployed Bytecode Sourcemap
45811:2336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28272:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32723:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27521:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34017:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47248:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34258:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47559:258;;;;;;;;;;;;;:::i;:::-;;31466:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28641:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;46616:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31826:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46823:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46402:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33436:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47135:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34514:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47825:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47347:100;;;;;;;;;;;;;:::i;:::-;;33786:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47455:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28272:305;28374:4;28426:25;28411:40;;;:11;:40;;;;:105;;;;28483:33;28468:48;;;:11;:48;;;;28411:105;:158;;;;28533:36;28557:11;28533:23;:36::i;:::-;28411:158;28391:178;;28272:305;;;:::o;31657:100::-;31711:13;31744:5;31737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:100;:::o;33160:204::-;33228:7;33253:16;33261:7;33253;:16::i;:::-;33248:64;;33278:34;;;;;;;;;;;;;;33248:64;33332:15;:24;33348:7;33332:24;;;;;;;;;;;;;;;;;;;;;33325:31;;33160:204;;;:::o;32723:371::-;32796:13;32812:24;32828:7;32812:15;:24::i;:::-;32796:40;;32857:5;32851:11;;:2;:11;;;32847:48;;32871:24;;;;;;;;;;;;;;32847:48;32928:5;32912:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32938:37;32955:5;32962:12;:10;:12::i;:::-;32938:16;:37::i;:::-;32937:38;32912:63;32908:138;;;32999:35;;;;;;;;;;;;;;32908:138;33058:28;33067:2;33071:7;33080:5;33058:8;:28::i;:::-;32785:309;32723:371;;:::o;27521:303::-;27565:7;27790:15;:13;:15::i;:::-;27775:12;;27759:13;;:28;:46;27752:53;;27521:303;:::o;34017:170::-;34151:28;34161:4;34167:2;34171:7;34151:9;:28::i;:::-;34017:170;;;:::o;47248:91::-;47295:7;47322:9;;47315:16;;47248:91;:::o;34258:185::-;34396:39;34413:4;34419:2;34423:7;34396:39;;;;;;;;;;;;:16;:39::i;:::-;34258:185;;;:::o;47559:258::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47648:1:::1;47624:21;:25;47616:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47686:12;47704:10;:15;;47728:21;47704:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47685:70;;;47774:7;47766:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;47605:212;47559:258::o:0;31466:124::-;31530:7;31557:20;31569:7;31557:11;:20::i;:::-;:25;;;31550:32;;31466:124;;;:::o;28641:206::-;28705:7;28746:1;28729:19;;:5;:19;;;28725:60;;28757:28;;;;;;;;;;;;;;28725:60;28811:12;:19;28824:5;28811:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28803:36;;28796:43;;28641:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;46616:199::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45932:4:::1;46704:6;46687:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;46679:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;46776:29;46786:10;46798:6;46776:9;:29::i;:::-;46616:199:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;31826:104::-;31882:13;31915:7;31908:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31826:104;:::o;46823:304::-;46104:5;46086:23;;:14;;;;;;;;;;;:23;;;46078:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45932:4:::1;46924:6;46907:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;46899:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;47030:6;47018:9;;:18;;;;:::i;:::-;47005:9;:31;46997:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;47088:29;47098:10;47110:6;47088:9;:29::i;:::-;46823:304:::0;:::o;46402:97::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46484:7:::1;46473:8;:18;;;;;;;;;;;;:::i;:::-;;46402:97:::0;:::o;33436:279::-;33539:12;:10;:12::i;:::-;33527:24;;:8;:24;;;33523:54;;33560:17;;;;;;;;;;;;;;33523:54;33635:8;33590:18;:32;33609:12;:10;:12::i;:::-;33590:32;;;;;;;;;;;;;;;:42;33623:8;33590:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33688:8;33659:48;;33674:12;:10;:12::i;:::-;33659:48;;;33698:8;33659:48;;;;;;:::i;:::-;;;;;;;;33436:279;;:::o;47135:105::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47222:10:::1;47210:9;:22;;;;47135:105:::0;:::o;34514:369::-;34681:28;34691:4;34697:2;34701:7;34681:9;:28::i;:::-;34724:15;:2;:13;;;:15::i;:::-;:76;;;;;34744:56;34775:4;34781:2;34785:7;34794:5;34744:30;:56::i;:::-;34743:57;34724:76;34720:156;;;34824:40;;;;;;;;;;;;;;34720:156;34514:369;;;;:::o;47825:319::-;47890:13;47921:16;47929:7;47921;:16::i;:::-;47916:59;;47946:29;;;;;;;;;;;;;;47916:59;47988:21;48012:10;:8;:10::i;:::-;47988:34;;48065:1;48046:7;48040:21;:26;:96;;;;;;;;;;;;;;;;;48093:7;48102:18;:7;:16;:18::i;:::-;48076:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48040:96;48033:103;;;47825:319;;;:::o;47347:100::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47425:14:::1;;;;;;;;;;;47424:15;47407:14;;:32;;;;;;;;;;;;;;;;;;47347:100::o:0;33786:164::-;33883:4;33907:18;:25;33926:5;33907:25;;;;;;;;;;;;;;;:35;33933:8;33907:35;;;;;;;;;;;;;;;;;;;;;;;;;33900:42;;33786:164;;;;:::o;47455:96::-;47505:4;47529:14;;;;;;;;;;;47522:21;;47455:96;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;::::0;5069:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;35138:187::-;35195:4;35238:7;35219:15;:13;:15::i;:::-;:26;;:53;;;;;35259:13;;35249:7;:23;35219:53;:98;;;;;35290:11;:20;35302:7;35290:20;;;;;;;;;;;:27;;;;;;;;;;;;35289:28;35219:98;35212:105;;35138:187;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;42749:196::-;42891:2;42864:15;:24;42880:7;42864:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42929:7;42925:2;42909:28;;42918:5;42909:28;;;;;;;;;;;;42749:196;;;:::o;46301:93::-;46358:7;46385:1;46378:8;;46301:93;:::o;38251:2112::-;38366:35;38404:20;38416:7;38404:11;:20::i;:::-;38366:58;;38437:22;38479:13;:18;;;38463:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38514:50;38531:13;:18;;;38551:12;:10;:12::i;:::-;38514:16;:50::i;:::-;38463:101;:154;;;;38605:12;:10;:12::i;:::-;38581:36;;:20;38593:7;38581:11;:20::i;:::-;:36;;;38463:154;38437:181;;38636:17;38631:66;;38662:35;;;;;;;;;;;;;;38631:66;38734:4;38712:26;;:13;:18;;;:26;;;38708:67;;38747:28;;;;;;;;;;;;;;38708:67;38804:1;38790:16;;:2;:16;;;38786:52;;38815:23;;;;;;;;;;;;;;38786:52;38851:43;38873:4;38879:2;38883:7;38892:1;38851:21;:43::i;:::-;38959:49;38976:1;38980:7;38989:13;:18;;;38959:8;:49::i;:::-;39334:1;39304:12;:18;39317:4;39304:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39378:1;39350:12;:16;39363:2;39350:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39424:2;39396:11;:20;39408:7;39396:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39486:15;39441:11;:20;39453:7;39441:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39754:19;39786:1;39776:7;:11;39754:33;;39847:1;39806:43;;:11;:24;39818:11;39806:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39802:445;;40031:13;;40017:11;:27;40013:219;;;40101:13;:18;;;40069:11;:24;40081:11;40069:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40184:13;:28;;;40142:11;:24;40154:11;40142:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40013:219;39802:445;39279:979;40294:7;40290:2;40275:27;;40284:4;40275:27;;;;;;;;;;;;40313:42;40334:4;40340:2;40344:7;40353:1;40313:20;:42::i;:::-;38355:2008;;38251:2112;;;:::o;30296:1108::-;30357:21;;:::i;:::-;30391:12;30406:7;30391:22;;30474:4;30455:15;:13;:15::i;:::-;:23;;:47;;;;;30489:13;;30482:4;:20;30455:47;30451:886;;;30523:31;30557:11;:17;30569:4;30557:17;;;;;;;;;;;30523:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30598:9;:16;;;30593:729;;30669:1;30643:28;;:9;:14;;;:28;;;30639:101;;30707:9;30700:16;;;;;;30639:101;31042:261;31049:4;31042:261;;;31082:6;;;;;;;;31127:11;:17;31139:4;31127:17;;;;;;;;;;;31115:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31201:1;31175:28;;:9;:14;;;:28;;;31171:109;;31243:9;31236:16;;;;;;31171:109;31042:261;;;30593:729;30504:833;30451:886;31365:31;;;;;;;;;;;;;;30296:1108;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;27917:283::-;27964:7;28166:15;:13;:15::i;:::-;28150:13;;:31;28143:38;;27917:283;:::o;35333:104::-;35402:27;35412:2;35416:8;35402:27;;;;;;;;;;;;:9;:27::i;:::-;35333:104;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;43437:667::-;43600:4;43637:2;43621:36;;;43658:12;:10;:12::i;:::-;43672:4;43678:7;43687:5;43621:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43617:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43872:1;43855:6;:13;:18;43851:235;;43901:40;;;;;;;;;;;;;;43851:235;44044:6;44038:13;44029:6;44025:2;44021:15;44014:38;43617:480;43750:45;;;43740:55;;;:6;:55;;;;43733:62;;;43437:667;;;;;;:::o;46507:101::-;46559:13;46592:8;46585:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46507:101;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;44752:159::-;;;;;:::o;45570:158::-;;;;;:::o;35800:163::-;35923:32;35929:2;35933:8;35943:5;35950:4;35923:5;:32::i;:::-;35800:163;;;:::o;36222:1775::-;36361:20;36384:13;;36361:36;;36426:1;36412:16;;:2;:16;;;36408:48;;36437:19;;;;;;;;;;;;;;36408:48;36483:1;36471:8;:13;36467:44;;36493:18;;;;;;;;;;;;;;36467:44;36524:61;36554:1;36558:2;36562:12;36576:8;36524:21;:61::i;:::-;36897:8;36862:12;:16;36875:2;36862:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36961:8;36921:12;:16;36934:2;36921:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37020:2;36987:11;:25;36999:12;36987:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37087:15;37037:11;:25;37049:12;37037:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37120:20;37143:12;37120:35;;37170:11;37199:8;37184:12;:23;37170:37;;37228:4;:23;;;;;37236:15;:2;:13;;;:15::i;:::-;37228:23;37224:641;;;37272:314;37328:12;37324:2;37303:38;;37320:1;37303:38;;;;;;;;;;;;37369:69;37408:1;37412:2;37416:14;;;;;;37432:5;37369:30;:69::i;:::-;37364:174;;37474:40;;;;;;;;;;;;;;37364:174;37581:3;37565:12;:19;37272:314;;37667:12;37650:13;;:29;37646:43;;37681:8;;;37646:43;37224:641;;;37730:120;37786:14;;;;;;37782:2;37761:40;;37778:1;37761:40;;;;;;;;;;;;37845:3;37829:12;:19;37730:120;;37224:641;37895:12;37879:13;:28;;;;36837:1082;;37929:60;37958:1;37962:2;37966:12;37980:8;37929:20;:60::i;:::-;36350:1647;36222:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:170::-;13758:22;13754:1;13746:6;13742:14;13735:46;13618:170;:::o;13794:366::-;13936:3;13957:67;14021:2;14016:3;13957:67;:::i;:::-;13950:74;;14033:93;14122:3;14033:93;:::i;:::-;14151:2;14146:3;14142:12;14135:19;;13794:366;;;:::o;14166:419::-;14332:4;14370:2;14359:9;14355:18;14347:26;;14419:9;14413:4;14409:20;14405:1;14394:9;14390:17;14383:47;14447:131;14573:4;14447:131;:::i;:::-;14439:139;;14166:419;;;:::o;14591:147::-;14692:11;14729:3;14714:18;;14591:147;;;;:::o;14744:114::-;;:::o;14864:398::-;15023:3;15044:83;15125:1;15120:3;15044:83;:::i;:::-;15037:90;;15136:93;15225:3;15136:93;:::i;:::-;15254:1;15249:3;15245:11;15238:18;;14864:398;;;:::o;15268:379::-;15452:3;15474:147;15617:3;15474:147;:::i;:::-;15467:154;;15638:3;15631:10;;15268:379;;;:::o;15653:173::-;15793:25;15789:1;15781:6;15777:14;15770:49;15653:173;:::o;15832:366::-;15974:3;15995:67;16059:2;16054:3;15995:67;:::i;:::-;15988:74;;16071:93;16160:3;16071:93;:::i;:::-;16189:2;16184:3;16180:12;16173:19;;15832:366;;;:::o;16204:419::-;16370:4;16408:2;16397:9;16393:18;16385:26;;16457:9;16451:4;16447:20;16443:1;16432:9;16428:17;16421:47;16485:131;16611:4;16485:131;:::i;:::-;16477:139;;16204:419;;;:::o;16629:180::-;16677:77;16674:1;16667:88;16774:4;16771:1;16764:15;16798:4;16795:1;16788:15;16815:305;16855:3;16874:20;16892:1;16874:20;:::i;:::-;16869:25;;16908:20;16926:1;16908:20;:::i;:::-;16903:25;;17062:1;16994:66;16990:74;16987:1;16984:81;16981:107;;;17068:18;;:::i;:::-;16981:107;17112:1;17109;17105:9;17098:16;;16815:305;;;;:::o;17126:223::-;17266:34;17262:1;17254:6;17250:14;17243:58;17335:6;17330:2;17322:6;17318:15;17311:31;17126:223;:::o;17355:366::-;17497:3;17518:67;17582:2;17577:3;17518:67;:::i;:::-;17511:74;;17594:93;17683:3;17594:93;:::i;:::-;17712:2;17707:3;17703:12;17696:19;;17355:366;;;:::o;17727:419::-;17893:4;17931:2;17920:9;17916:18;17908:26;;17980:9;17974:4;17970:20;17966:1;17955:9;17951:17;17944:47;18008:131;18134:4;18008:131;:::i;:::-;18000:139;;17727:419;;;:::o;18152:220::-;18292:34;18288:1;18280:6;18276:14;18269:58;18361:3;18356:2;18348:6;18344:15;18337:28;18152:220;:::o;18378:366::-;18520:3;18541:67;18605:2;18600:3;18541:67;:::i;:::-;18534:74;;18617:93;18706:3;18617:93;:::i;:::-;18735:2;18730:3;18726:12;18719:19;;18378:366;;;:::o;18750:419::-;18916:4;18954:2;18943:9;18939:18;18931:26;;19003:9;18997:4;18993:20;18989:1;18978:9;18974:17;18967:47;19031:131;19157:4;19031:131;:::i;:::-;19023:139;;18750:419;;;:::o;19175:224::-;19315:34;19311:1;19303:6;19299:14;19292:58;19384:7;19379:2;19371:6;19367:15;19360:32;19175:224;:::o;19405:366::-;19547:3;19568:67;19632:2;19627:3;19568:67;:::i;:::-;19561:74;;19644:93;19733:3;19644:93;:::i;:::-;19762:2;19757:3;19753:12;19746:19;;19405:366;;;:::o;19777:419::-;19943:4;19981:2;19970:9;19966:18;19958:26;;20030:9;20024:4;20020:20;20016:1;20005:9;20001:17;19994:47;20058:131;20184:4;20058:131;:::i;:::-;20050:139;;19777:419;;;:::o;20202:348::-;20242:7;20265:20;20283:1;20265:20;:::i;:::-;20260:25;;20299:20;20317:1;20299:20;:::i;:::-;20294:25;;20487:1;20419:66;20415:74;20412:1;20409:81;20404:1;20397:9;20390:17;20386:105;20383:131;;;20494:18;;:::i;:::-;20383:131;20542:1;20539;20535:9;20524:20;;20202:348;;;;:::o;20556:223::-;20696:34;20692:1;20684:6;20680:14;20673:58;20765:6;20760:2;20752:6;20748:15;20741:31;20556:223;:::o;20785:366::-;20927:3;20948:67;21012:2;21007:3;20948:67;:::i;:::-;20941:74;;21024:93;21113:3;21024:93;:::i;:::-;21142:2;21137:3;21133:12;21126:19;;20785:366;;;:::o;21157:419::-;21323:4;21361:2;21350:9;21346:18;21338:26;;21410:9;21404:4;21400:20;21396:1;21385:9;21381:17;21374:47;21438:131;21564:4;21438:131;:::i;:::-;21430:139;;21157:419;;;:::o;21582:148::-;21684:11;21721:3;21706:18;;21582:148;;;;:::o;21736:377::-;21842:3;21870:39;21903:5;21870:39;:::i;:::-;21925:89;22007:6;22002:3;21925:89;:::i;:::-;21918:96;;22023:52;22068:6;22063:3;22056:4;22049:5;22045:16;22023:52;:::i;:::-;22100:6;22095:3;22091:16;22084:23;;21846:267;21736:377;;;;:::o;22119:155::-;22259:7;22255:1;22247:6;22243:14;22236:31;22119:155;:::o;22280:400::-;22440:3;22461:84;22543:1;22538:3;22461:84;:::i;:::-;22454:91;;22554:93;22643:3;22554:93;:::i;:::-;22672:1;22667:3;22663:11;22656:18;;22280:400;;;:::o;22686:701::-;22967:3;22989:95;23080:3;23071:6;22989:95;:::i;:::-;22982:102;;23101:95;23192:3;23183:6;23101:95;:::i;:::-;23094:102;;23213:148;23357:3;23213:148;:::i;:::-;23206:155;;23378:3;23371:10;;22686:701;;;;;:::o;23393:225::-;23533:34;23529:1;23521:6;23517:14;23510:58;23602:8;23597:2;23589:6;23585:15;23578:33;23393:225;:::o;23624:366::-;23766:3;23787:67;23851:2;23846:3;23787:67;:::i;:::-;23780:74;;23863:93;23952:3;23863:93;:::i;:::-;23981:2;23976:3;23972:12;23965:19;;23624:366;;;:::o;23996:419::-;24162:4;24200:2;24189:9;24185:18;24177:26;;24249:9;24243:4;24239:20;24235:1;24224:9;24220:17;24213:47;24277:131;24403:4;24277:131;:::i;:::-;24269:139;;23996:419;;;:::o;24421:98::-;24472:6;24506:5;24500:12;24490:22;;24421:98;;;:::o;24525:168::-;24608:11;24642:6;24637:3;24630:19;24682:4;24677:3;24673:14;24658:29;;24525:168;;;;:::o;24699:360::-;24785:3;24813:38;24845:5;24813:38;:::i;:::-;24867:70;24930:6;24925:3;24867:70;:::i;:::-;24860:77;;24946:52;24991:6;24986:3;24979:4;24972:5;24968:16;24946:52;:::i;:::-;25023:29;25045:6;25023:29;:::i;:::-;25018:3;25014:39;25007:46;;24789:270;24699:360;;;;:::o;25065:640::-;25260:4;25298:3;25287:9;25283:19;25275:27;;25312:71;25380:1;25369:9;25365:17;25356:6;25312:71;:::i;:::-;25393:72;25461:2;25450:9;25446:18;25437:6;25393:72;:::i;:::-;25475;25543:2;25532:9;25528:18;25519:6;25475:72;:::i;:::-;25594:9;25588:4;25584:20;25579:2;25568:9;25564:18;25557:48;25622:76;25693:4;25684:6;25622:76;:::i;:::-;25614:84;;25065:640;;;;;;;:::o;25711:141::-;25767:5;25798:6;25792:13;25783:22;;25814:32;25840:5;25814:32;:::i;:::-;25711:141;;;;:::o;25858:349::-;25927:6;25976:2;25964:9;25955:7;25951:23;25947:32;25944:119;;;25982:79;;:::i;:::-;25944:119;26102:1;26127:63;26182:7;26173:6;26162:9;26158:22;26127:63;:::i;:::-;26117:73;;26073:127;25858:349;;;;:::o;26213:233::-;26252:3;26275:24;26293:5;26275:24;:::i;:::-;26266:33;;26321:66;26314:5;26311:77;26308:103;;26391:18;;:::i;:::-;26308:103;26438:1;26431:5;26427:13;26420:20;;26213:233;;;:::o;26452:180::-;26500:77;26497:1;26490:88;26597:4;26594:1;26587:15;26621:4;26618:1;26611:15;26638:185;26678:1;26695:20;26713:1;26695:20;:::i;:::-;26690:25;;26729:20;26747:1;26729:20;:::i;:::-;26724:25;;26768:1;26758:35;;26773:18;;:::i;:::-;26758:35;26815:1;26812;26808:9;26803:14;;26638:185;;;;:::o;26829:191::-;26869:4;26889:20;26907:1;26889:20;:::i;:::-;26884:25;;26923:20;26941:1;26923:20;:::i;:::-;26918:25;;26962:1;26959;26956:8;26953:34;;;26967:18;;:::i;:::-;26953:34;27012:1;27009;27005:9;26997:17;;26829:191;;;;:::o;27026:176::-;27058:1;27075:20;27093:1;27075:20;:::i;:::-;27070:25;;27109:20;27127:1;27109:20;:::i;:::-;27104:25;;27148:1;27138:35;;27153:18;;:::i;:::-;27138:35;27194:1;27191;27187:9;27182:14;;27026:176;;;;:::o;27208:180::-;27256:77;27253:1;27246:88;27353:4;27350:1;27343:15;27377:4;27374:1;27367:15
Swarm Source
ipfs://d0b83010e21d4d98db15f7a92209b122c7b64fb4201adda7f4e6c930f434403a
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.