ERC-721
Overview
Max Total Supply
1,181 CYNNFT
Holders
409
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 CYNNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CYNNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-19 */ // 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/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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @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 // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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 IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev 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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0) if (!_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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { 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 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) 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__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 {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/CYN NFT2.sol pragma solidity ^0.8.4; contract CYNNFT is ERC721A, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public price = 0.0045 ether; uint256 public maxPerTx = 3; uint256 public maxFreePerWallet = 3; uint256 public totalFree = 1500; uint256 public maxSupply = 9999; bool public mintEnabled = false; address public coldWallet = 0x0971AF56814a12127962DfDbf71877a60bE7b3A0; mapping(address => uint256) private _mintedFreeAmount; constructor() ERC721A("CYN NFT", "CYNNFT") { _safeMint(msg.sender, 10); setBaseURI("https://gateway.pinata.cloud/ipfs/QmVLDPbtkaVNiwc6dtWSMokovQWZrKHhQj1yPQv3AWSTYV/CYN.json"); } function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalSupply() + count < totalFree + 1) && (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)); if (isFree) { cost = 0; } require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < maxSupply + 1, "No more left"); require(mintEnabled, "Minting is not live yet"); require(count < maxPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return _baseURI(); } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setFreeAmount(uint256 amount) external onlyOwner { totalFree = amount; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function setMaxSupply(uint256 _newSupply) external onlyOwner { maxSupply = _newSupply; } function enableMint() external onlyOwner { mintEnabled = !mintEnabled; } /// @notice only owner can withdraw the money function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = coldWallet.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coldWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableMint","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052660ffcb9e57d4000600b556003600c556003600d556105dc600e5561270f600f556000601060006101000a81548160ff021916908315150217905550730971af56814a12127962dfdbf71877a60be7b3a0601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a257600080fd5b506040518060400160405280600781526020017f43594e204e4654000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f43594e4e465400000000000000000000000000000000000000000000000000008152508160029080519060200190620001279291906200082c565b508060039080519060200190620001409291906200082c565b5062000151620001df60201b60201c565b6000819055505050620001796200016d620001e460201b60201c565b620001ec60201b60201c565b6000600860146101000a81548160ff0219169083151502179055506001600981905550620001af33600a620002b260201b60201c565b620001d960405180608001604052806059815260200162003d1160599139620002d860201b60201c565b62000bb0565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d48282604051806020016040528060008152506200038360201b60201c565b5050565b620002e8620001e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030e6200066860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000367576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035e9062000a03565b60405180910390fd5b80600a90805190602001906200037f9291906200082c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620003f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156200042d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200044260008583866200069260201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1620004af600185146200069860201b60201c565b901b60a042901b620004c786620006a260201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14620005d8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005846000878480600101955087620006ac60201b60201c565b620005bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106200050d578260005414620005d257600080fd5b62000644565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620005d9575b8160008190555050506200066260008583866200081e60201b60201c565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006da6200082460201b60201c565b8786866040518563ffffffff1660e01b8152600401620006fe9493929190620009af565b602060405180830381600087803b1580156200071957600080fd5b505af19250505080156200074d57506040513d601f19601f820116820180604052508101906200074a9190620008f3565b60015b620007cb573d806000811462000780576040519150601f19603f3d011682016040523d82523d6000602084013e62000785565b606091505b50600081511415620007c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b8280546200083a9062000af2565b90600052602060002090601f0160209004810192826200085e5760008555620008aa565b82601f106200087957805160ff1916838001178555620008aa565b82800160010185558215620008aa579182015b82811115620008a95782518255916020019190600101906200088c565b5b509050620008b99190620008bd565b5090565b5b80821115620008d8576000816000905550600101620008be565b5090565b600081519050620008ed8162000b96565b92915050565b6000602082840312156200090c576200090b62000b57565b5b60006200091c84828501620008dc565b91505092915050565b620009308162000a52565b82525050565b6000620009438262000a25565b6200094f818562000a30565b93506200096181856020860162000abc565b6200096c8162000b5c565b840191505092915050565b60006200098660208362000a41565b9150620009938262000b6d565b602082019050919050565b620009a98162000ab2565b82525050565b6000608082019050620009c6600083018762000925565b620009d5602083018662000925565b620009e460408301856200099e565b8181036060830152620009f8818462000936565b905095945050505050565b6000602082019050818103600083015262000a1e8162000977565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a5f8262000a92565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000adc57808201518184015260208101905062000abf565b8381111562000aec576000848401525b50505050565b6000600282049050600182168062000b0b57607f821691505b6020821081141562000b225762000b2162000b28565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000ba18162000a66565b811462000bad57600080fd5b50565b6131518062000bc06000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063a7027357116100a0578063d12397301161006f578063d1239730146106a4578063d5abeb01146106cf578063e985e9c5146106fa578063f2fde38b14610737578063f968adbe14610760576101ee565b8063a7027357146105fc578063ac44600214610627578063b88d4fde1461063e578063c87b56dd14610667576101ee565b806395d89b41116100dc57806395d89b4114610561578063a035b1fe1461058c578063a0712d68146105b7578063a22cb465146105d3576101ee565b8063715018a6146104cd5780638da5cb5b146104e457806391b7f5ed1461050f57806392910eec14610538576101ee565b806344b28d59116101855780636be13c92116101545780636be13c92146104115780636c0360eb1461043c5780636f8b44b01461046757806370a0823114610490576101ee565b806344b28d591461036957806355f804b3146103805780635c975abb146103a95780636352211e146103d4576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec578063333e44e61461031557806342842e0e14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906126f9565b61078b565b6040516102279190612a42565b60405180910390f35b34801561023c57600080fd5b5061024561081d565b6040516102529190612a5d565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061279c565b6108af565b60405161028f91906129db565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906126b9565b61092b565b005b3480156102cd57600080fd5b506102d6610ad2565b6040516102e39190612b9f565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906125a3565b610ae9565b005b34801561032157600080fd5b5061032a610af9565b6040516103379190612b9f565b60405180910390f35b34801561034c57600080fd5b50610367600480360381019061036291906125a3565b610aff565b005b34801561037557600080fd5b5061037e610b1f565b005b34801561038c57600080fd5b506103a760048036038101906103a29190612753565b610bc7565b005b3480156103b557600080fd5b506103be610c5d565b6040516103cb9190612a42565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f6919061279c565b610c74565b60405161040891906129db565b60405180910390f35b34801561041d57600080fd5b50610426610c86565b60405161043391906129db565b60405180910390f35b34801561044857600080fd5b50610451610cac565b60405161045e9190612a5d565b60405180910390f35b34801561047357600080fd5b5061048e6004803603810190610489919061279c565b610d3a565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612536565b610dc0565b6040516104c49190612b9f565b60405180910390f35b3480156104d957600080fd5b506104e2610e79565b005b3480156104f057600080fd5b506104f9610f01565b60405161050691906129db565b60405180910390f35b34801561051b57600080fd5b506105366004803603810190610531919061279c565b610f2b565b005b34801561054457600080fd5b5061055f600480360381019061055a919061279c565b610fb1565b005b34801561056d57600080fd5b50610576611037565b6040516105839190612a5d565b60405180910390f35b34801561059857600080fd5b506105a16110c9565b6040516105ae9190612b9f565b60405180910390f35b6105d160048036038101906105cc919061279c565b6110cf565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612679565b61131b565b005b34801561060857600080fd5b50610611611493565b60405161061e9190612b9f565b60405180910390f35b34801561063357600080fd5b5061063c611499565b005b34801561064a57600080fd5b50610665600480360381019061066091906125f6565b61163c565b005b34801561067357600080fd5b5061068e6004803603810190610689919061279c565b6116af565b60405161069b9190612a5d565b60405180910390f35b3480156106b057600080fd5b506106b9611708565b6040516106c69190612a42565b60405180910390f35b3480156106db57600080fd5b506106e461171b565b6040516106f19190612b9f565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612563565b611721565b60405161072e9190612a42565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612536565b6117b5565b005b34801561076c57600080fd5b506107756118ad565b6040516107829190612b9f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108165750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461082c90612dea565b80601f016020809104026020016040519081016040528092919081815260200182805461085890612dea565b80156108a55780601f1061087a576101008083540402835291602001916108a5565b820191906000526020600020905b81548152906001019060200180831161088857829003601f168201915b5050505050905090565b60006108ba826118b3565b6108f0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093682611912565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bd6119e0565b73ffffffffffffffffffffffffffffffffffffffff1614610a20576109e9816109e46119e0565b611721565b610a1f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610adc6119e8565b6001546000540303905090565b610af48383836119ed565b505050565b600e5481565b610b1a8383836040518060200160405280600081525061163c565b505050565b610b27611d97565b73ffffffffffffffffffffffffffffffffffffffff16610b45610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290612adf565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610bcf611d97565b73ffffffffffffffffffffffffffffffffffffffff16610bed610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90612adf565b60405180910390fd5b80600a9080519060200190610c5992919061234a565b5050565b6000600860149054906101000a900460ff16905090565b6000610c7f82611912565b9050919050565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a8054610cb990612dea565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce590612dea565b8015610d325780601f10610d0757610100808354040283529160200191610d32565b820191906000526020600020905b815481529060010190602001808311610d1557829003601f168201915b505050505081565b610d42611d97565b73ffffffffffffffffffffffffffffffffffffffff16610d60610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90612adf565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e28576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e81611d97565b73ffffffffffffffffffffffffffffffffffffffff16610e9f610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90612adf565b60405180910390fd5b610eff6000611d9f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f33611d97565b73ffffffffffffffffffffffffffffffffffffffff16610f51610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612adf565b60405180910390fd5b80600b8190555050565b610fb9611d97565b73ffffffffffffffffffffffffffffffffffffffff16610fd7610f01565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490612adf565b60405180910390fd5b80600e8190555050565b60606003805461104690612dea565b80601f016020809104026020016040519081016040528092919081815260200182805461107290612dea565b80156110bf5780601f10611094576101008083540402835291602001916110bf565b820191906000526020600020905b8154815290600101906020018083116110a257829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546110e79190612c84565b836110f0610ad2565b6110fa9190612c84565b1080156111535750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111509190612c84565b11155b9050801561116057600091505b818361116c9190612cda565b3410156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590612b1f565b60405180910390fd5b6001600f546111bd9190612c84565b836111c6610ad2565b6111d09190612c84565b10611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790612abf565b60405180910390fd5b601060009054906101000a900460ff1661125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690612a7f565b60405180910390fd5b6001600c5461126e9190612c84565b83106112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612b5f565b60405180910390fd5b801561130c5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113049190612c84565b925050819055505b6113163384611e65565b505050565b6113236119e0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611388576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113956119e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114426119e0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114879190612a42565b60405180910390a35050565b600d5481565b6114a1611d97565b73ffffffffffffffffffffffffffffffffffffffff166114bf610f01565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90612adf565b60405180910390fd5b6002600954141561155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290612b7f565b60405180910390fd5b60026009819055506000601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516115ab906129c6565b60006040518083038185875af1925050503d80600081146115e8576040519150601f19603f3d011682016040523d82523d6000602084013e6115ed565b606091505b5050905080611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890612b3f565b60405180910390fd5b506001600981905550565b6116478484846119ed565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116a95761167284848484611e83565b6116a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116ba826118b3565b6116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090612aff565b60405180910390fd5b611701611fe3565b9050919050565b601060009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117bd611d97565b73ffffffffffffffffffffffffffffffffffffffff166117db610f01565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890612adf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890612a9f565b60405180910390fd5b6118aa81611d9f565b50565b600c5481565b6000816118be6119e8565b111580156118cd575060005482105b801561190b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806119216119e8565b116119a9576000548110156119a85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119a6575b600081141561199c576004600083600190039350838152602001908152602001600020549050611971565b80925050506119db565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006119f882611912565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a806119e0565b73ffffffffffffffffffffffffffffffffffffffff161480611aaf5750611aae85611aa96119e0565b611721565b5b80611af45750611abd6119e0565b73ffffffffffffffffffffffffffffffffffffffff16611adc846108af565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b2d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ba18585856001612075565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c9e8661207b565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611d28576000600184019050600060046000838152602001908152602001600020541415611d26576000548114611d25578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d908585856001612085565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e7f82826040518060200160405280600081525061208b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea96119e0565b8786866040518563ffffffff1660e01b8152600401611ecb94939291906129f6565b602060405180830381600087803b158015611ee557600080fd5b505af1925050508015611f1657506040513d601f19601f82011682018060405250810190611f139190612726565b60015b611f90573d8060008114611f46576040519150601f19603f3d011682016040523d82523d6000602084013e611f4b565b606091505b50600081511415611f88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611ff290612dea565b80601f016020809104026020016040519081016040528092919081815260200182805461201e90612dea565b801561206b5780601f106120405761010080835404028352916020019161206b565b820191906000526020600020905b81548152906001019060200180831161204e57829003601f168201915b5050505050905090565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120f8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612133576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121406000858386612075565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16121a560018514612340565b901b60a042901b6121b58661207b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146122b9575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122696000878480600101955087611e83565b61229f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121fa5782600054146122b457600080fd5b612324565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122ba575b81600081905550505061233a6000858386612085565b50505050565b6000819050919050565b82805461235690612dea565b90600052602060002090601f01602090048101928261237857600085556123bf565b82601f1061239157805160ff19168380011785556123bf565b828001600101855582156123bf579182015b828111156123be5782518255916020019190600101906123a3565b5b5090506123cc91906123d0565b5090565b5b808211156123e95760008160009055506001016123d1565b5090565b60006124006123fb84612bdf565b612bba565b90508281526020810184848401111561241c5761241b612edf565b5b612427848285612da8565b509392505050565b600061244261243d84612c10565b612bba565b90508281526020810184848401111561245e5761245d612edf565b5b612469848285612da8565b509392505050565b600081359050612480816130bf565b92915050565b600081359050612495816130d6565b92915050565b6000813590506124aa816130ed565b92915050565b6000815190506124bf816130ed565b92915050565b600082601f8301126124da576124d9612eda565b5b81356124ea8482602086016123ed565b91505092915050565b600082601f83011261250857612507612eda565b5b813561251884826020860161242f565b91505092915050565b60008135905061253081613104565b92915050565b60006020828403121561254c5761254b612ee9565b5b600061255a84828501612471565b91505092915050565b6000806040838503121561257a57612579612ee9565b5b600061258885828601612471565b925050602061259985828601612471565b9150509250929050565b6000806000606084860312156125bc576125bb612ee9565b5b60006125ca86828701612471565b93505060206125db86828701612471565b92505060406125ec86828701612521565b9150509250925092565b600080600080608085870312156126105761260f612ee9565b5b600061261e87828801612471565b945050602061262f87828801612471565b935050604061264087828801612521565b925050606085013567ffffffffffffffff81111561266157612660612ee4565b5b61266d878288016124c5565b91505092959194509250565b600080604083850312156126905761268f612ee9565b5b600061269e85828601612471565b92505060206126af85828601612486565b9150509250929050565b600080604083850312156126d0576126cf612ee9565b5b60006126de85828601612471565b92505060206126ef85828601612521565b9150509250929050565b60006020828403121561270f5761270e612ee9565b5b600061271d8482850161249b565b91505092915050565b60006020828403121561273c5761273b612ee9565b5b600061274a848285016124b0565b91505092915050565b60006020828403121561276957612768612ee9565b5b600082013567ffffffffffffffff81111561278757612786612ee4565b5b612793848285016124f3565b91505092915050565b6000602082840312156127b2576127b1612ee9565b5b60006127c084828501612521565b91505092915050565b6127d281612d34565b82525050565b6127e181612d46565b82525050565b60006127f282612c41565b6127fc8185612c57565b935061280c818560208601612db7565b61281581612eee565b840191505092915050565b600061282b82612c4c565b6128358185612c73565b9350612845818560208601612db7565b61284e81612eee565b840191505092915050565b6000612866601783612c73565b915061287182612eff565b602082019050919050565b6000612889602683612c73565b915061289482612f28565b604082019050919050565b60006128ac600c83612c73565b91506128b782612f77565b602082019050919050565b60006128cf602083612c73565b91506128da82612fa0565b602082019050919050565b60006128f2602f83612c73565b91506128fd82612fc9565b604082019050919050565b6000612915601d83612c73565b915061292082613018565b602082019050919050565b6000612938600083612c68565b915061294382613041565b600082019050919050565b600061295b601083612c73565b915061296682613044565b602082019050919050565b600061297e601383612c73565b91506129898261306d565b602082019050919050565b60006129a1601f83612c73565b91506129ac82613096565b602082019050919050565b6129c081612d9e565b82525050565b60006129d18261292b565b9150819050919050565b60006020820190506129f060008301846127c9565b92915050565b6000608082019050612a0b60008301876127c9565b612a1860208301866127c9565b612a2560408301856129b7565b8181036060830152612a3781846127e7565b905095945050505050565b6000602082019050612a5760008301846127d8565b92915050565b60006020820190508181036000830152612a778184612820565b905092915050565b60006020820190508181036000830152612a9881612859565b9050919050565b60006020820190508181036000830152612ab88161287c565b9050919050565b60006020820190508181036000830152612ad88161289f565b9050919050565b60006020820190508181036000830152612af8816128c2565b9050919050565b60006020820190508181036000830152612b18816128e5565b9050919050565b60006020820190508181036000830152612b3881612908565b9050919050565b60006020820190508181036000830152612b588161294e565b9050919050565b60006020820190508181036000830152612b7881612971565b9050919050565b60006020820190508181036000830152612b9881612994565b9050919050565b6000602082019050612bb460008301846129b7565b92915050565b6000612bc4612bd5565b9050612bd08282612e1c565b919050565b6000604051905090565b600067ffffffffffffffff821115612bfa57612bf9612eab565b5b612c0382612eee565b9050602081019050919050565b600067ffffffffffffffff821115612c2b57612c2a612eab565b5b612c3482612eee565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000612c8f82612d9e565b9150612c9a83612d9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ccf57612cce612e4d565b5b828201905092915050565b6000612ce582612d9e565b9150612cf083612d9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2957612d28612e4d565b5b828202905092915050565b6000612d3f82612d7e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dd5578082015181840152602081019050612dba565b83811115612de4576000848401525b50505050565b60006002820490506001821680612e0257607f821691505b60208210811415612e1657612e15612e7c565b5b50919050565b612e2582612eee565b810181811067ffffffffffffffff82111715612e4457612e43612eab565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265206c6566740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6130c881612d34565b81146130d357600080fd5b50565b6130df81612d46565b81146130ea57600080fd5b50565b6130f681612d52565b811461310157600080fd5b50565b61310d81612d9e565b811461311857600080fd5b5056fea26469706673582212201c36e968436ca3af82c989334106d0887d7cb50258b263d1d57bc56d2cdeb55864736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d564c445062746b61564e69776336647457534d6f6b6f7651575a724b4868516a3179505176334157535459562f43594e2e6a736f6e
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063a7027357116100a0578063d12397301161006f578063d1239730146106a4578063d5abeb01146106cf578063e985e9c5146106fa578063f2fde38b14610737578063f968adbe14610760576101ee565b8063a7027357146105fc578063ac44600214610627578063b88d4fde1461063e578063c87b56dd14610667576101ee565b806395d89b41116100dc57806395d89b4114610561578063a035b1fe1461058c578063a0712d68146105b7578063a22cb465146105d3576101ee565b8063715018a6146104cd5780638da5cb5b146104e457806391b7f5ed1461050f57806392910eec14610538576101ee565b806344b28d59116101855780636be13c92116101545780636be13c92146104115780636c0360eb1461043c5780636f8b44b01461046757806370a0823114610490576101ee565b806344b28d591461036957806355f804b3146103805780635c975abb146103a95780636352211e146103d4576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec578063333e44e61461031557806342842e0e14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906126f9565b61078b565b6040516102279190612a42565b60405180910390f35b34801561023c57600080fd5b5061024561081d565b6040516102529190612a5d565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061279c565b6108af565b60405161028f91906129db565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906126b9565b61092b565b005b3480156102cd57600080fd5b506102d6610ad2565b6040516102e39190612b9f565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906125a3565b610ae9565b005b34801561032157600080fd5b5061032a610af9565b6040516103379190612b9f565b60405180910390f35b34801561034c57600080fd5b50610367600480360381019061036291906125a3565b610aff565b005b34801561037557600080fd5b5061037e610b1f565b005b34801561038c57600080fd5b506103a760048036038101906103a29190612753565b610bc7565b005b3480156103b557600080fd5b506103be610c5d565b6040516103cb9190612a42565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f6919061279c565b610c74565b60405161040891906129db565b60405180910390f35b34801561041d57600080fd5b50610426610c86565b60405161043391906129db565b60405180910390f35b34801561044857600080fd5b50610451610cac565b60405161045e9190612a5d565b60405180910390f35b34801561047357600080fd5b5061048e6004803603810190610489919061279c565b610d3a565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612536565b610dc0565b6040516104c49190612b9f565b60405180910390f35b3480156104d957600080fd5b506104e2610e79565b005b3480156104f057600080fd5b506104f9610f01565b60405161050691906129db565b60405180910390f35b34801561051b57600080fd5b506105366004803603810190610531919061279c565b610f2b565b005b34801561054457600080fd5b5061055f600480360381019061055a919061279c565b610fb1565b005b34801561056d57600080fd5b50610576611037565b6040516105839190612a5d565b60405180910390f35b34801561059857600080fd5b506105a16110c9565b6040516105ae9190612b9f565b60405180910390f35b6105d160048036038101906105cc919061279c565b6110cf565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612679565b61131b565b005b34801561060857600080fd5b50610611611493565b60405161061e9190612b9f565b60405180910390f35b34801561063357600080fd5b5061063c611499565b005b34801561064a57600080fd5b50610665600480360381019061066091906125f6565b61163c565b005b34801561067357600080fd5b5061068e6004803603810190610689919061279c565b6116af565b60405161069b9190612a5d565b60405180910390f35b3480156106b057600080fd5b506106b9611708565b6040516106c69190612a42565b60405180910390f35b3480156106db57600080fd5b506106e461171b565b6040516106f19190612b9f565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612563565b611721565b60405161072e9190612a42565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612536565b6117b5565b005b34801561076c57600080fd5b506107756118ad565b6040516107829190612b9f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108165750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461082c90612dea565b80601f016020809104026020016040519081016040528092919081815260200182805461085890612dea565b80156108a55780601f1061087a576101008083540402835291602001916108a5565b820191906000526020600020905b81548152906001019060200180831161088857829003601f168201915b5050505050905090565b60006108ba826118b3565b6108f0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093682611912565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bd6119e0565b73ffffffffffffffffffffffffffffffffffffffff1614610a20576109e9816109e46119e0565b611721565b610a1f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610adc6119e8565b6001546000540303905090565b610af48383836119ed565b505050565b600e5481565b610b1a8383836040518060200160405280600081525061163c565b505050565b610b27611d97565b73ffffffffffffffffffffffffffffffffffffffff16610b45610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290612adf565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610bcf611d97565b73ffffffffffffffffffffffffffffffffffffffff16610bed610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90612adf565b60405180910390fd5b80600a9080519060200190610c5992919061234a565b5050565b6000600860149054906101000a900460ff16905090565b6000610c7f82611912565b9050919050565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a8054610cb990612dea565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce590612dea565b8015610d325780601f10610d0757610100808354040283529160200191610d32565b820191906000526020600020905b815481529060010190602001808311610d1557829003601f168201915b505050505081565b610d42611d97565b73ffffffffffffffffffffffffffffffffffffffff16610d60610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90612adf565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e28576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e81611d97565b73ffffffffffffffffffffffffffffffffffffffff16610e9f610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90612adf565b60405180910390fd5b610eff6000611d9f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f33611d97565b73ffffffffffffffffffffffffffffffffffffffff16610f51610f01565b73ffffffffffffffffffffffffffffffffffffffff1614610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612adf565b60405180910390fd5b80600b8190555050565b610fb9611d97565b73ffffffffffffffffffffffffffffffffffffffff16610fd7610f01565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490612adf565b60405180910390fd5b80600e8190555050565b60606003805461104690612dea565b80601f016020809104026020016040519081016040528092919081815260200182805461107290612dea565b80156110bf5780601f10611094576101008083540402835291602001916110bf565b820191906000526020600020905b8154815290600101906020018083116110a257829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546110e79190612c84565b836110f0610ad2565b6110fa9190612c84565b1080156111535750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111509190612c84565b11155b9050801561116057600091505b818361116c9190612cda565b3410156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590612b1f565b60405180910390fd5b6001600f546111bd9190612c84565b836111c6610ad2565b6111d09190612c84565b10611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790612abf565b60405180910390fd5b601060009054906101000a900460ff1661125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690612a7f565b60405180910390fd5b6001600c5461126e9190612c84565b83106112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612b5f565b60405180910390fd5b801561130c5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113049190612c84565b925050819055505b6113163384611e65565b505050565b6113236119e0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611388576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113956119e0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114426119e0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114879190612a42565b60405180910390a35050565b600d5481565b6114a1611d97565b73ffffffffffffffffffffffffffffffffffffffff166114bf610f01565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90612adf565b60405180910390fd5b6002600954141561155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290612b7f565b60405180910390fd5b60026009819055506000601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516115ab906129c6565b60006040518083038185875af1925050503d80600081146115e8576040519150601f19603f3d011682016040523d82523d6000602084013e6115ed565b606091505b5050905080611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890612b3f565b60405180910390fd5b506001600981905550565b6116478484846119ed565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116a95761167284848484611e83565b6116a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116ba826118b3565b6116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090612aff565b60405180910390fd5b611701611fe3565b9050919050565b601060009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117bd611d97565b73ffffffffffffffffffffffffffffffffffffffff166117db610f01565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890612adf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890612a9f565b60405180910390fd5b6118aa81611d9f565b50565b600c5481565b6000816118be6119e8565b111580156118cd575060005482105b801561190b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806119216119e8565b116119a9576000548110156119a85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119a6575b600081141561199c576004600083600190039350838152602001908152602001600020549050611971565b80925050506119db565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006119f882611912565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a806119e0565b73ffffffffffffffffffffffffffffffffffffffff161480611aaf5750611aae85611aa96119e0565b611721565b5b80611af45750611abd6119e0565b73ffffffffffffffffffffffffffffffffffffffff16611adc846108af565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b2d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ba18585856001612075565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c9e8661207b565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611d28576000600184019050600060046000838152602001908152602001600020541415611d26576000548114611d25578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d908585856001612085565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e7f82826040518060200160405280600081525061208b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea96119e0565b8786866040518563ffffffff1660e01b8152600401611ecb94939291906129f6565b602060405180830381600087803b158015611ee557600080fd5b505af1925050508015611f1657506040513d601f19601f82011682018060405250810190611f139190612726565b60015b611f90573d8060008114611f46576040519150601f19603f3d011682016040523d82523d6000602084013e611f4b565b606091505b50600081511415611f88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611ff290612dea565b80601f016020809104026020016040519081016040528092919081815260200182805461201e90612dea565b801561206b5780601f106120405761010080835404028352916020019161206b565b820191906000526020600020905b81548152906001019060200180831161204e57829003601f168201915b5050505050905090565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120f8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612133576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121406000858386612075565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16121a560018514612340565b901b60a042901b6121b58661207b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146122b9575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122696000878480600101955087611e83565b61229f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121fa5782600054146122b457600080fd5b612324565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122ba575b81600081905550505061233a6000858386612085565b50505050565b6000819050919050565b82805461235690612dea565b90600052602060002090601f01602090048101928261237857600085556123bf565b82601f1061239157805160ff19168380011785556123bf565b828001600101855582156123bf579182015b828111156123be5782518255916020019190600101906123a3565b5b5090506123cc91906123d0565b5090565b5b808211156123e95760008160009055506001016123d1565b5090565b60006124006123fb84612bdf565b612bba565b90508281526020810184848401111561241c5761241b612edf565b5b612427848285612da8565b509392505050565b600061244261243d84612c10565b612bba565b90508281526020810184848401111561245e5761245d612edf565b5b612469848285612da8565b509392505050565b600081359050612480816130bf565b92915050565b600081359050612495816130d6565b92915050565b6000813590506124aa816130ed565b92915050565b6000815190506124bf816130ed565b92915050565b600082601f8301126124da576124d9612eda565b5b81356124ea8482602086016123ed565b91505092915050565b600082601f83011261250857612507612eda565b5b813561251884826020860161242f565b91505092915050565b60008135905061253081613104565b92915050565b60006020828403121561254c5761254b612ee9565b5b600061255a84828501612471565b91505092915050565b6000806040838503121561257a57612579612ee9565b5b600061258885828601612471565b925050602061259985828601612471565b9150509250929050565b6000806000606084860312156125bc576125bb612ee9565b5b60006125ca86828701612471565b93505060206125db86828701612471565b92505060406125ec86828701612521565b9150509250925092565b600080600080608085870312156126105761260f612ee9565b5b600061261e87828801612471565b945050602061262f87828801612471565b935050604061264087828801612521565b925050606085013567ffffffffffffffff81111561266157612660612ee4565b5b61266d878288016124c5565b91505092959194509250565b600080604083850312156126905761268f612ee9565b5b600061269e85828601612471565b92505060206126af85828601612486565b9150509250929050565b600080604083850312156126d0576126cf612ee9565b5b60006126de85828601612471565b92505060206126ef85828601612521565b9150509250929050565b60006020828403121561270f5761270e612ee9565b5b600061271d8482850161249b565b91505092915050565b60006020828403121561273c5761273b612ee9565b5b600061274a848285016124b0565b91505092915050565b60006020828403121561276957612768612ee9565b5b600082013567ffffffffffffffff81111561278757612786612ee4565b5b612793848285016124f3565b91505092915050565b6000602082840312156127b2576127b1612ee9565b5b60006127c084828501612521565b91505092915050565b6127d281612d34565b82525050565b6127e181612d46565b82525050565b60006127f282612c41565b6127fc8185612c57565b935061280c818560208601612db7565b61281581612eee565b840191505092915050565b600061282b82612c4c565b6128358185612c73565b9350612845818560208601612db7565b61284e81612eee565b840191505092915050565b6000612866601783612c73565b915061287182612eff565b602082019050919050565b6000612889602683612c73565b915061289482612f28565b604082019050919050565b60006128ac600c83612c73565b91506128b782612f77565b602082019050919050565b60006128cf602083612c73565b91506128da82612fa0565b602082019050919050565b60006128f2602f83612c73565b91506128fd82612fc9565b604082019050919050565b6000612915601d83612c73565b915061292082613018565b602082019050919050565b6000612938600083612c68565b915061294382613041565b600082019050919050565b600061295b601083612c73565b915061296682613044565b602082019050919050565b600061297e601383612c73565b91506129898261306d565b602082019050919050565b60006129a1601f83612c73565b91506129ac82613096565b602082019050919050565b6129c081612d9e565b82525050565b60006129d18261292b565b9150819050919050565b60006020820190506129f060008301846127c9565b92915050565b6000608082019050612a0b60008301876127c9565b612a1860208301866127c9565b612a2560408301856129b7565b8181036060830152612a3781846127e7565b905095945050505050565b6000602082019050612a5760008301846127d8565b92915050565b60006020820190508181036000830152612a778184612820565b905092915050565b60006020820190508181036000830152612a9881612859565b9050919050565b60006020820190508181036000830152612ab88161287c565b9050919050565b60006020820190508181036000830152612ad88161289f565b9050919050565b60006020820190508181036000830152612af8816128c2565b9050919050565b60006020820190508181036000830152612b18816128e5565b9050919050565b60006020820190508181036000830152612b3881612908565b9050919050565b60006020820190508181036000830152612b588161294e565b9050919050565b60006020820190508181036000830152612b7881612971565b9050919050565b60006020820190508181036000830152612b9881612994565b9050919050565b6000602082019050612bb460008301846129b7565b92915050565b6000612bc4612bd5565b9050612bd08282612e1c565b919050565b6000604051905090565b600067ffffffffffffffff821115612bfa57612bf9612eab565b5b612c0382612eee565b9050602081019050919050565b600067ffffffffffffffff821115612c2b57612c2a612eab565b5b612c3482612eee565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000612c8f82612d9e565b9150612c9a83612d9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ccf57612cce612e4d565b5b828201905092915050565b6000612ce582612d9e565b9150612cf083612d9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2957612d28612e4d565b5b828202905092915050565b6000612d3f82612d7e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dd5578082015181840152602081019050612dba565b83811115612de4576000848401525b50505050565b60006002820490506001821680612e0257607f821691505b60208210811415612e1657612e15612e7c565b5b50919050565b612e2582612eee565b810181811067ffffffffffffffff82111715612e4457612e43612eab565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265206c6566740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6130c881612d34565b81146130d357600080fd5b50565b6130df81612d46565b81146130ea57600080fd5b50565b6130f681612d52565b811461310157600080fd5b50565b61310d81612d9e565b811461311857600080fd5b5056fea26469706673582212201c36e968436ca3af82c989334106d0887d7cb50258b263d1d57bc56d2cdeb55864736f6c63430008070033
Deployed Bytecode Sourcemap
57552:2601:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32200:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37213:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39281:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38741:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31254:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40167:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57810:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40408:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59811:86;;;;;;;;;;;;;:::i;:::-;;59401:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15411:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37002:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57930:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57656:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59701:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32879:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18310:103;;;;;;;;;;;;;:::i;:::-;;17659:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59600:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59497:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37382:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57686:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58281:690;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39557:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57766:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59957:191;;;;;;;;;;;;;:::i;:::-;;40664:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59095:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57890:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57850;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39936:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18568:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57730:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32200:615;32285:4;32600:10;32585:25;;:11;:25;;;;:102;;;;32677:10;32662:25;;:11;:25;;;;32585:102;:179;;;;32754:10;32739:25;;:11;:25;;;;32585:179;32565:199;;32200:615;;;:::o;37213:100::-;37267:13;37300:5;37293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37213:100;:::o;39281:204::-;39349:7;39374:16;39382:7;39374;:16::i;:::-;39369:64;;39399:34;;;;;;;;;;;;;;39369:64;39453:15;:24;39469:7;39453:24;;;;;;;;;;;;;;;;;;;;;39446:31;;39281:204;;;:::o;38741:474::-;38814:13;38846:27;38865:7;38846:18;:27::i;:::-;38814:61;;38896:5;38890:11;;:2;:11;;;38886:48;;;38910:24;;;;;;;;;;;;;;38886:48;38974:5;38951:28;;:19;:17;:19::i;:::-;:28;;;38947:175;;38999:44;39016:5;39023:19;:17;:19::i;:::-;38999:16;:44::i;:::-;38994:128;;39071:35;;;;;;;;;;;;;;38994:128;38947:175;39161:2;39134:15;:24;39150:7;39134:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39199:7;39195:2;39179:28;;39188:5;39179:28;;;;;;;;;;;;38803:412;38741:474;;:::o;31254:315::-;31307:7;31535:15;:13;:15::i;:::-;31520:12;;31504:13;;:28;:46;31497:53;;31254:315;:::o;40167:170::-;40301:28;40311:4;40317:2;40321:7;40301:9;:28::i;:::-;40167:170;;;:::o;57810:31::-;;;;:::o;40408:185::-;40546:39;40563:4;40569:2;40573:7;40546:39;;;;;;;;;;;;:16;:39::i;:::-;40408:185;;;:::o;59811:86::-;17890:12;:10;:12::i;:::-;17879:23;;:7;:5;:7::i;:::-;:23;;;17871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59878:11:::1;;;;;;;;;;;59877:12;59863:11;;:26;;;;;;;;;;;;;;;;;;59811:86::o:0;59401:88::-;17890:12;:10;:12::i;:::-;17879:23;;:7;:5;:7::i;:::-;:23;;;17871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59478:3:::1;59468:7;:13;;;;;;;;;;;;:::i;:::-;;59401:88:::0;:::o;15411:86::-;15458:4;15482:7;;;;;;;;;;;15475:14;;15411:86;:::o;37002:144::-;37066:7;37109:27;37128:7;37109:18;:27::i;:::-;37086:52;;37002:144;;;:::o;57930:70::-;;;;;;;;;;;;;:::o;57656:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59701:102::-;17890:12;:10;:12::i;:::-;17879:23;;:7;:5;:7::i;:::-;:23;;;17871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59785:10:::1;59773:9;:22;;;;59701:102:::0;:::o;32879:224::-;32943:7;32984:1;32967:19;;:5;:19;;;32963:60;;;32995:28;;;;;;;;;;;;;;32963:60;28218:13;33041:18;:25;33060:5;33041:25;;;;;;;;;;;;;;;;:54;33034:61;;32879:224;;;:::o;18310:103::-;17890:12;:10;:12::i;:::-;17879:23;;:7;:5;:7::i;:::-;:23;;;17871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18375:30:::1;18402:1;18375:18;:30::i;:::-;18310:103::o:0;17659:87::-;17705:7;17732:6;;;;;;;;;;;17725:13;;17659:87;:::o;59600:92::-;17890:12;:10;:12::i;:::-;17879:23;;:7;:5;:7::i;:::-;:23;;;17871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59675:9:::1;59667:5;:17;;;;59600:92:::0;:::o;59497:95::-;17890:12;:10;:12::i;:::-;17879:23;;:7;:5;:7::i;:::-;:23;;;17871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59578:6:::1;59566:9;:18;;;;59497:95:::0;:::o;37382:104::-;37438:13;37471:7;37464:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37382:104;:::o;57686:35::-;;;;:::o;58281:690::-;58338:12;58353:5;;58338:20;;58369:11;58421:1;58409:9;;:13;;;;:::i;:::-;58401:5;58385:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;58384:115;;;;;58482:16;;58473:5;58441:17;:29;58459:10;58441:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;58384:115;58369:131;;58517:6;58513:47;;;58547:1;58540:8;;58513:47;58601:4;58593:5;:12;;;;:::i;:::-;58580:9;:25;;58572:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;58694:1;58682:9;;:13;;;;:::i;:::-;58674:5;58658:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;58650:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58731:11;;;;;;;;;;;58723:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;58808:1;58797:8;;:12;;;;:::i;:::-;58789:5;:20;58781:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;58850:6;58846:77;;;58906:5;58873:17;:29;58891:10;58873:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;58846:77;58935:28;58945:10;58957:5;58935:9;:28::i;:::-;58327:644;;58281:690;:::o;39557:308::-;39668:19;:17;:19::i;:::-;39656:31;;:8;:31;;;39652:61;;;39696:17;;;;;;;;;;;;;;39652:61;39778:8;39726:18;:39;39745:19;:17;:19::i;:::-;39726:39;;;;;;;;;;;;;;;:49;39766:8;39726:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;39838:8;39802:55;;39817:19;:17;:19::i;:::-;39802:55;;;39848:8;39802:55;;;;;;:::i;:::-;;;;;;;;39557:308;;:::o;57766:35::-;;;;:::o;59957:191::-;17890:12;:10;:12::i;:::-;17879:23;;:7;:5;:7::i;:::-;:23;;;17871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12439:1:::1;13037:7;;:19;;13029:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12439:1;13170:7;:18;;;;60026:12:::2;60044:10;;;;;;;;;;;:15;;60067:21;60044:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60025:68;;;60112:7;60104:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;60014:134;12395:1:::1;13349:7;:22;;;;59957:191::o:0;40664:396::-;40831:28;40841:4;40847:2;40851:7;40831:9;:28::i;:::-;40892:1;40874:2;:14;;;:19;40870:183;;40913:56;40944:4;40950:2;40954:7;40963:5;40913:30;:56::i;:::-;40908:145;;40997:40;;;;;;;;;;;;;;40908:145;40870:183;40664:396;;;;:::o;59095:298::-;59213:13;59266:16;59274:7;59266;:16::i;:::-;59244:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;59375:10;:8;:10::i;:::-;59368:17;;59095:298;;;:::o;57890:31::-;;;;;;;;;;;;;:::o;57850:::-;;;;:::o;39936:164::-;40033:4;40057:18;:25;40076:5;40057:25;;;;;;;;;;;;;;;:35;40083:8;40057:35;;;;;;;;;;;;;;;;;;;;;;;;;40050:42;;39936:164;;;;:::o;18568:201::-;17890:12;:10;:12::i;:::-;17879:23;;:7;:5;:7::i;:::-;:23;;;17871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18677:1:::1;18657:22;;:8;:22;;;;18649:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18733:28;18752:8;18733:18;:28::i;:::-;18568:201:::0;:::o;57730:27::-;;;;:::o;41315:273::-;41372:4;41428:7;41409:15;:13;:15::i;:::-;:26;;:66;;;;;41462:13;;41452:7;:23;41409:66;:152;;;;;41560:1;28988:8;41513:17;:26;41531:7;41513:26;;;;;;;;;;;;:43;:48;41409:152;41389:172;;41315:273;;;:::o;34517:1129::-;34584:7;34604:12;34619:7;34604:22;;34687:4;34668:15;:13;:15::i;:::-;:23;34664:915;;34721:13;;34714:4;:20;34710:869;;;34759:14;34776:17;:23;34794:4;34776:23;;;;;;;;;;;;34759:40;;34892:1;28988:8;34865:6;:23;:28;34861:699;;;35384:113;35401:1;35391:6;:11;35384:113;;;35444:17;:25;35462:6;;;;;;;35444:25;;;;;;;;;;;;35435:34;;35384:113;;;35530:6;35523:13;;;;;;34861:699;34736:843;34710:869;34664:915;35607:31;;;;;;;;;;;;;;34517:1129;;;;:::o;55297:105::-;55357:7;55384:10;55377:17;;55297:105;:::o;30777:92::-;30833:7;30777:92;:::o;46554:2515::-;46669:27;46699;46718:7;46699:18;:27::i;:::-;46669:57;;46784:4;46743:45;;46759:19;46743:45;;;46739:86;;46797:28;;;;;;;;;;;;;;46739:86;46838:22;46887:4;46864:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;46908:43;46925:4;46931:19;:17;:19::i;:::-;46908:16;:43::i;:::-;46864:87;:147;;;;46992:19;:17;:19::i;:::-;46968:43;;:20;46980:7;46968:11;:20::i;:::-;:43;;;46864:147;46838:174;;47030:17;47025:66;;47056:35;;;;;;;;;;;;;;47025:66;47120:1;47106:16;;:2;:16;;;47102:52;;;47131:23;;;;;;;;;;;;;;47102:52;47167:43;47189:4;47195:2;47199:7;47208:1;47167:21;:43::i;:::-;47283:15;:24;47299:7;47283:24;;;;;;;;;;;;47276:31;;;;;;;;;;;47675:18;:24;47694:4;47675:24;;;;;;;;;;;;;;;;47673:26;;;;;;;;;;;;47744:18;:22;47763:2;47744:22;;;;;;;;;;;;;;;;47742:24;;;;;;;;;;;29270:8;28872:3;48125:15;:41;;48083:21;48101:2;48083:17;:21::i;:::-;:84;:128;48037:17;:26;48055:7;48037:26;;;;;;;;;;;:174;;;;48381:1;29270:8;48331:19;:46;:51;48327:626;;;48403:19;48435:1;48425:7;:11;48403:33;;48592:1;48558:17;:30;48576:11;48558:30;;;;;;;;;;;;:35;48554:384;;;48696:13;;48681:11;:28;48677:242;;48876:19;48843:17;:30;48861:11;48843:30;;;;;;;;;;;:52;;;;48677:242;48554:384;48384:569;48327:626;49000:7;48996:2;48981:27;;48990:4;48981:27;;;;;;;;;;;;49019:42;49040:4;49046:2;49050:7;49059:1;49019:20;:42::i;:::-;46658:2411;;46554:2515;;;:::o;14065:98::-;14118:7;14145:10;14138:17;;14065:98;:::o;18929:191::-;19003:16;19022:6;;;;;;;;;;;19003:25;;19048:8;19039:6;;:17;;;;;;;;;;;;;;;;;;19103:8;19072:40;;19093:8;19072:40;;;;;;;;;;;;18992:128;18929:191;:::o;41672:104::-;41741:27;41751:2;41755:8;41741:27;;;;;;;;;;;;:9;:27::i;:::-;41672:104;;:::o;52766:716::-;52929:4;52975:2;52950:45;;;52996:19;:17;:19::i;:::-;53017:4;53023:7;53032:5;52950:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52946:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53250:1;53233:6;:13;:18;53229:235;;;53279:40;;;;;;;;;;;;;;53229:235;53422:6;53416:13;53407:6;53403:2;53399:15;53392:38;52946:529;53119:54;;;53109:64;;;:6;:64;;;;53102:71;;;52766:716;;;;;;:::o;58979:108::-;59039:13;59072:7;59065:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58979:108;:::o;54130:159::-;;;;;:::o;38302:148::-;38366:14;38427:5;38417:15;;38302:148;;;:::o;54948:158::-;;;;;:::o;42149:2236::-;42272:20;42295:13;;42272:36;;42337:1;42323:16;;:2;:16;;;42319:48;;;42348:19;;;;;;;;;;;;;;42319:48;42394:1;42382:8;:13;42378:44;;;42404:18;;;;;;;;;;;;;;42378:44;42435:61;42465:1;42469:2;42473:12;42487:8;42435:21;:61::i;:::-;43039:1;28355:2;43010:1;:25;;43009:31;42997:8;:44;42971:18;:22;42990:2;42971:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;29135:3;43440:29;43467:1;43455:8;:13;43440:14;:29::i;:::-;:56;;28872:3;43377:15;:41;;43335:21;43353:2;43335:17;:21::i;:::-;:84;:162;43284:17;:31;43302:12;43284:31;;;;;;;;;;;:213;;;;43514:20;43537:12;43514:35;;43564:11;43593:8;43578:12;:23;43564:37;;43640:1;43622:2;:14;;;:19;43618:635;;43662:313;43718:12;43714:2;43693:38;;43710:1;43693:38;;;;;;;;;;;;43759:69;43798:1;43802:2;43806:14;;;;;;43822:5;43759:30;:69::i;:::-;43754:174;;43864:40;;;;;;;;;;;;;;43754:174;43970:3;43955:12;:18;43662:313;;44056:12;44039:13;;:29;44035:43;;44070:8;;;44035:43;43618:635;;;44119:119;44175:14;;;;;;44171:2;44150:40;;44167:1;44150:40;;;;;;;;;;;;44233:3;44218:12;:18;44119:119;;43618:635;44283:12;44267:13;:28;;;;42748:1559;;44317:60;44346:1;44350:2;44354:12;44368:8;44317:20;:60::i;:::-;42261:2124;42149:2236;;;:::o;38537:142::-;38595:14;38656:5;38646:15;;38537:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:366::-;8275:3;8296:67;8360:2;8355:3;8296:67;:::i;:::-;8289:74;;8372:93;8461:3;8372:93;:::i;:::-;8490:2;8485:3;8481:12;8474:19;;8133:366;;;:::o;8505:::-;8647:3;8668:67;8732:2;8727:3;8668:67;:::i;:::-;8661:74;;8744:93;8833:3;8744:93;:::i;:::-;8862:2;8857:3;8853:12;8846:19;;8505:366;;;:::o;8877:::-;9019:3;9040:67;9104:2;9099:3;9040:67;:::i;:::-;9033:74;;9116:93;9205:3;9116:93;:::i;:::-;9234:2;9229:3;9225:12;9218:19;;8877:366;;;:::o;9249:::-;9391:3;9412:67;9476:2;9471:3;9412:67;:::i;:::-;9405:74;;9488:93;9577:3;9488:93;:::i;:::-;9606:2;9601:3;9597:12;9590:19;;9249:366;;;:::o;9621:::-;9763:3;9784:67;9848:2;9843:3;9784:67;:::i;:::-;9777:74;;9860:93;9949:3;9860:93;:::i;:::-;9978:2;9973:3;9969:12;9962:19;;9621:366;;;:::o;9993:::-;10135:3;10156:67;10220:2;10215:3;10156:67;:::i;:::-;10149:74;;10232:93;10321:3;10232:93;:::i;:::-;10350:2;10345:3;10341:12;10334:19;;9993:366;;;:::o;10365:398::-;10524:3;10545:83;10626:1;10621:3;10545:83;:::i;:::-;10538:90;;10637:93;10726:3;10637:93;:::i;:::-;10755:1;10750:3;10746:11;10739:18;;10365:398;;;:::o;10769:366::-;10911:3;10932:67;10996:2;10991:3;10932:67;:::i;:::-;10925:74;;11008:93;11097:3;11008:93;:::i;:::-;11126:2;11121:3;11117:12;11110:19;;10769:366;;;:::o;11141:::-;11283:3;11304:67;11368:2;11363:3;11304:67;:::i;:::-;11297:74;;11380:93;11469:3;11380:93;:::i;:::-;11498:2;11493:3;11489:12;11482:19;;11141:366;;;:::o;11513:::-;11655:3;11676:67;11740:2;11735:3;11676:67;:::i;:::-;11669:74;;11752:93;11841:3;11752:93;:::i;:::-;11870:2;11865:3;11861:12;11854:19;;11513:366;;;:::o;11885:118::-;11972:24;11990:5;11972:24;:::i;:::-;11967:3;11960:37;11885:118;;:::o;12009:379::-;12193:3;12215:147;12358:3;12215:147;:::i;:::-;12208:154;;12379:3;12372:10;;12009:379;;;:::o;12394:222::-;12487:4;12525:2;12514:9;12510:18;12502:26;;12538:71;12606:1;12595:9;12591:17;12582:6;12538:71;:::i;:::-;12394:222;;;;:::o;12622:640::-;12817:4;12855:3;12844:9;12840:19;12832:27;;12869:71;12937:1;12926:9;12922:17;12913:6;12869:71;:::i;:::-;12950:72;13018:2;13007:9;13003:18;12994:6;12950:72;:::i;:::-;13032;13100:2;13089:9;13085:18;13076:6;13032:72;:::i;:::-;13151:9;13145:4;13141:20;13136:2;13125:9;13121:18;13114:48;13179:76;13250:4;13241:6;13179:76;:::i;:::-;13171:84;;12622:640;;;;;;;:::o;13268:210::-;13355:4;13393:2;13382:9;13378:18;13370:26;;13406:65;13468:1;13457:9;13453:17;13444:6;13406:65;:::i;:::-;13268:210;;;;:::o;13484:313::-;13597:4;13635:2;13624:9;13620:18;13612:26;;13684:9;13678:4;13674:20;13670:1;13659:9;13655:17;13648:47;13712:78;13785:4;13776:6;13712:78;:::i;:::-;13704:86;;13484:313;;;;:::o;13803:419::-;13969:4;14007:2;13996:9;13992:18;13984:26;;14056:9;14050:4;14046:20;14042:1;14031:9;14027:17;14020:47;14084:131;14210:4;14084:131;:::i;:::-;14076:139;;13803:419;;;:::o;14228:::-;14394:4;14432:2;14421:9;14417:18;14409:26;;14481:9;14475:4;14471:20;14467:1;14456:9;14452:17;14445:47;14509:131;14635:4;14509:131;:::i;:::-;14501:139;;14228:419;;;:::o;14653:::-;14819:4;14857:2;14846:9;14842:18;14834:26;;14906:9;14900:4;14896:20;14892:1;14881:9;14877:17;14870:47;14934:131;15060:4;14934:131;:::i;:::-;14926:139;;14653:419;;;:::o;15078:::-;15244:4;15282:2;15271:9;15267:18;15259:26;;15331:9;15325:4;15321:20;15317:1;15306:9;15302:17;15295:47;15359:131;15485:4;15359:131;:::i;:::-;15351:139;;15078:419;;;:::o;15503:::-;15669:4;15707:2;15696:9;15692:18;15684:26;;15756:9;15750:4;15746:20;15742:1;15731:9;15727:17;15720:47;15784:131;15910:4;15784:131;:::i;:::-;15776:139;;15503:419;;;:::o;15928:::-;16094:4;16132:2;16121:9;16117:18;16109:26;;16181:9;16175:4;16171:20;16167:1;16156:9;16152:17;16145:47;16209:131;16335:4;16209:131;:::i;:::-;16201:139;;15928:419;;;:::o;16353:::-;16519:4;16557:2;16546:9;16542:18;16534:26;;16606:9;16600:4;16596:20;16592:1;16581:9;16577:17;16570:47;16634:131;16760:4;16634:131;:::i;:::-;16626:139;;16353:419;;;:::o;16778:::-;16944:4;16982:2;16971:9;16967:18;16959:26;;17031:9;17025:4;17021:20;17017:1;17006:9;17002:17;16995:47;17059:131;17185:4;17059:131;:::i;:::-;17051:139;;16778:419;;;:::o;17203:::-;17369:4;17407:2;17396:9;17392:18;17384:26;;17456:9;17450:4;17446:20;17442:1;17431:9;17427:17;17420:47;17484:131;17610:4;17484:131;:::i;:::-;17476:139;;17203:419;;;:::o;17628:222::-;17721:4;17759:2;17748:9;17744:18;17736:26;;17772:71;17840:1;17829:9;17825:17;17816:6;17772:71;:::i;:::-;17628:222;;;;:::o;17856:129::-;17890:6;17917:20;;:::i;:::-;17907:30;;17946:33;17974:4;17966:6;17946:33;:::i;:::-;17856:129;;;:::o;17991:75::-;18024:6;18057:2;18051:9;18041:19;;17991:75;:::o;18072:307::-;18133:4;18223:18;18215:6;18212:30;18209:56;;;18245:18;;:::i;:::-;18209:56;18283:29;18305:6;18283:29;:::i;:::-;18275:37;;18367:4;18361;18357:15;18349:23;;18072:307;;;:::o;18385:308::-;18447:4;18537:18;18529:6;18526:30;18523:56;;;18559:18;;:::i;:::-;18523:56;18597:29;18619:6;18597:29;:::i;:::-;18589:37;;18681:4;18675;18671:15;18663:23;;18385:308;;;:::o;18699:98::-;18750:6;18784:5;18778:12;18768:22;;18699:98;;;:::o;18803:99::-;18855:6;18889:5;18883:12;18873:22;;18803:99;;;:::o;18908:168::-;18991:11;19025:6;19020:3;19013:19;19065:4;19060:3;19056:14;19041:29;;18908:168;;;;:::o;19082:147::-;19183:11;19220:3;19205:18;;19082:147;;;;:::o;19235:169::-;19319:11;19353:6;19348:3;19341:19;19393:4;19388:3;19384:14;19369:29;;19235:169;;;;:::o;19410:305::-;19450:3;19469:20;19487:1;19469:20;:::i;:::-;19464:25;;19503:20;19521:1;19503:20;:::i;:::-;19498:25;;19657:1;19589:66;19585:74;19582:1;19579:81;19576:107;;;19663:18;;:::i;:::-;19576:107;19707:1;19704;19700:9;19693:16;;19410:305;;;;:::o;19721:348::-;19761:7;19784:20;19802:1;19784:20;:::i;:::-;19779:25;;19818:20;19836:1;19818:20;:::i;:::-;19813:25;;20006:1;19938:66;19934:74;19931:1;19928:81;19923:1;19916:9;19909:17;19905:105;19902:131;;;20013:18;;:::i;:::-;19902:131;20061:1;20058;20054:9;20043:20;;19721:348;;;;:::o;20075:96::-;20112:7;20141:24;20159:5;20141:24;:::i;:::-;20130:35;;20075:96;;;:::o;20177:90::-;20211:7;20254:5;20247:13;20240:21;20229:32;;20177:90;;;:::o;20273:149::-;20309:7;20349:66;20342:5;20338:78;20327:89;;20273:149;;;:::o;20428:126::-;20465:7;20505:42;20498:5;20494:54;20483:65;;20428:126;;;:::o;20560:77::-;20597:7;20626:5;20615:16;;20560:77;;;:::o;20643:154::-;20727:6;20722:3;20717;20704:30;20789:1;20780:6;20775:3;20771:16;20764:27;20643:154;;;:::o;20803:307::-;20871:1;20881:113;20895:6;20892:1;20889:13;20881:113;;;20980:1;20975:3;20971:11;20965:18;20961:1;20956:3;20952:11;20945:39;20917:2;20914:1;20910:10;20905:15;;20881:113;;;21012:6;21009:1;21006:13;21003:101;;;21092:1;21083:6;21078:3;21074:16;21067:27;21003:101;20852:258;20803:307;;;:::o;21116:320::-;21160:6;21197:1;21191:4;21187:12;21177:22;;21244:1;21238:4;21234:12;21265:18;21255:81;;21321:4;21313:6;21309:17;21299:27;;21255:81;21383:2;21375:6;21372:14;21352:18;21349:38;21346:84;;;21402:18;;:::i;:::-;21346:84;21167:269;21116:320;;;:::o;21442:281::-;21525:27;21547:4;21525:27;:::i;:::-;21517:6;21513:40;21655:6;21643:10;21640:22;21619:18;21607:10;21604:34;21601:62;21598:88;;;21666:18;;:::i;:::-;21598:88;21706:10;21702:2;21695:22;21485:238;21442:281;;:::o;21729:180::-;21777:77;21774:1;21767:88;21874:4;21871:1;21864:15;21898:4;21895:1;21888:15;21915:180;21963:77;21960:1;21953:88;22060:4;22057:1;22050:15;22084:4;22081:1;22074:15;22101:180;22149:77;22146:1;22139:88;22246:4;22243:1;22236:15;22270:4;22267:1;22260:15;22287:117;22396:1;22393;22386:12;22410:117;22519:1;22516;22509:12;22533:117;22642:1;22639;22632:12;22656:117;22765:1;22762;22755:12;22779:102;22820:6;22871:2;22867:7;22862:2;22855:5;22851:14;22847:28;22837:38;;22779:102;;;:::o;22887:173::-;23027:25;23023:1;23015:6;23011:14;23004:49;22887:173;:::o;23066:225::-;23206:34;23202:1;23194:6;23190:14;23183:58;23275:8;23270:2;23262:6;23258:15;23251:33;23066:225;:::o;23297:162::-;23437:14;23433:1;23425:6;23421:14;23414:38;23297:162;:::o;23465:182::-;23605:34;23601:1;23593:6;23589:14;23582:58;23465:182;:::o;23653:234::-;23793:34;23789:1;23781:6;23777:14;23770:58;23862:17;23857:2;23849:6;23845:15;23838:42;23653:234;:::o;23893:179::-;24033:31;24029:1;24021:6;24017:14;24010:55;23893:179;:::o;24078:114::-;;:::o;24198:166::-;24338:18;24334:1;24326:6;24322:14;24315:42;24198:166;:::o;24370:169::-;24510:21;24506:1;24498:6;24494:14;24487:45;24370:169;:::o;24545:181::-;24685:33;24681:1;24673:6;24669:14;24662:57;24545:181;:::o;24732:122::-;24805:24;24823:5;24805:24;:::i;:::-;24798:5;24795:35;24785:63;;24844:1;24841;24834:12;24785:63;24732:122;:::o;24860:116::-;24930:21;24945:5;24930:21;:::i;:::-;24923:5;24920:32;24910:60;;24966:1;24963;24956:12;24910:60;24860:116;:::o;24982:120::-;25054:23;25071:5;25054:23;:::i;:::-;25047:5;25044:34;25034:62;;25092:1;25089;25082:12;25034:62;24982:120;:::o;25108:122::-;25181:24;25199:5;25181:24;:::i;:::-;25174:5;25171:35;25161:63;;25220:1;25217;25210:12;25161:63;25108:122;:::o
Swarm Source
ipfs://1c36e968436ca3af82c989334106d0887d7cb50258b263d1d57bc56d2cdeb558
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.