Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,030 SupDudes
Holders
911
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 SupDudesLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SupDudes
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-24 */ // SPDX-License-Identifier: MIT // 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/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/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.1.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(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // 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` // - [232..255] `extraData` 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 auxiliary 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 auxiliary 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; // Cast `aux` with assembly to avoid redundant masking. assembly { 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; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * 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 Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); 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-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 { transferFrom(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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @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 for each mint. */ 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` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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 Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @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/supdudes.sol pragma solidity >=0.8.9 <0.9.0; contract SupDudes is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; //2222 because we all have to take dookie uint256 private maxTotalTokens; //boring stuff string private _currentBaseURI; uint private _reservedMints; uint private maxReservedMints = 1200; mapping(address => uint256) public mintsPerAddress; enum State {dude, suhdude} State private saleState_; //declaring initial values for variables constructor() ERC721A('SupDudes', 'SupDudes') { maxTotalTokens = 10022; _currentBaseURI = "ipfs://QmQFKdaFzoGxpj62MiUzHPhRrrGp9kD5oGV89SJnkUcrNA/"; } //in case somebody accidentaly sends funds or transaction to contract receive() payable external {} fallback() payable external { revert(); } //visualize baseURI function _baseURI() internal view virtual override returns (string memory) { return _currentBaseURI; } //if we mess up, let's us fix it function changeBaseURI(string memory baseURI_) public onlyOwner { _currentBaseURI = baseURI_; } function setSaleState(uint newSaleState) public onlyOwner { require(newSaleState < 2, "Invalid Sale State!"); if (newSaleState == 0) { saleState_ = State.dude; } else { saleState_ = State.suhdude; } } //mint a @param number of NFTs in public sale function mint() public nonReentrant { require(msg.sender == tx.origin, "Sender is not the same as origin!"); require(saleState_ == State.suhdude, "Public Sale in not open yet!"); require(totalSupply() < maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint.."); require(mintsPerAddress[msg.sender] == 0, "Wallet has already minted an NFT!"); _safeMint(msg.sender, 10); mintsPerAddress[msg.sender] += 20; } function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) { require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token"); tokenId_ += 1; string memory baseURI = _baseURI(); return string(abi.encodePacked(baseURI, tokenId_.toString(), ".json")); } //reserved NFTs for creator function reservedMint(uint number, address recipient) public onlyOwner { require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left to mint.."); _safeMint(recipient, number); mintsPerAddress[recipient] += number; _reservedMints += number; } //burn function burnTokens() public onlyOwner { maxTotalTokens = totalSupply(); } // function accountBalance() public onlyOwner view returns(uint) { return address(this).balance; } //retrieve all funds recieved from minting function withdraw() public onlyOwner { uint256 balance = accountBalance(); require(balance > 0, 'No Funds to withdraw, Balance is 0'); _withdraw(payable(msg.sender), balance); } // function _withdraw(address payable account, uint256 amount) internal { (bool sent, ) = account.call{value: amount}(""); require(sent, "Failed to send Ether"); } //to see the total amount of reserved mints left function reservedMintsLeft() public onlyOwner view returns(uint) { return maxReservedMints - _reservedMints; } //see current state of sale //see the current state of the sale function saleState() public view returns(State){ return saleState_; } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum SupDudes.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSaleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526104b0600d553480156200001757600080fd5b506040518060400160405280600881526020017f53757044756465730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f537570447564657300000000000000000000000000000000000000000000000081525081600290816200009591906200046f565b508060039081620000a791906200046f565b50620000b86200012260201b60201c565b6000819055505050620000e0620000d46200012760201b60201c565b6200012f60201b60201c565b6001600981905550612726600a8190555060405180606001604052806036815260200162003dc460369139600b90816200011b91906200046f565b5062000556565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027757607f821691505b6020821081036200028d576200028c6200022f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b8565b620003038683620002b8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003506200034a62000344846200031b565b62000325565b6200031b565b9050919050565b6000819050919050565b6200036c836200032f565b620003846200037b8262000357565b848454620002c5565b825550505050565b600090565b6200039b6200038c565b620003a881848462000361565b505050565b5b81811015620003d057620003c460008262000391565b600181019050620003ae565b5050565b601f8211156200041f57620003e98162000293565b620003f484620002a8565b8101602085101562000404578190505b6200041c6200041385620002a8565b830182620003ad565b50505b505050565b600082821c905092915050565b6000620004446000198460080262000424565b1980831691505092915050565b60006200045f838362000431565b9150826002028217905092915050565b6200047a82620001f5565b67ffffffffffffffff81111562000496576200049562000200565b5b620004a282546200025e565b620004af828285620003d4565b600060209050601f831160018114620004e75760008415620004d2578287015190505b620004de858262000451565b8655506200054e565b601f198416620004f78662000293565b60005b828110156200052157848901518255600182019150602085019450602081019050620004fa565b868310156200054157848901516200053d601f89168262000431565b8355505b6001600288020188555050505b505050505050565b61385e80620005666000396000f3fe6080604052600436106101a05760003560e01c806342842e0e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610585578063c87b56dd146105ae578063e985e9c5146105eb578063f2fde38b14610628576101a7565b806395d89b4114610506578063a22cb46514610531578063b0a1c1c41461055a576101a7565b80636352211e116100c65780636352211e1461044a57806370a0823114610487578063715018a6146104c45780638da5cb5b146104db576101a7565b806342842e0e146103cb5780634520e916146103f4578063603f4d521461041f576101a7565b80631249c58b1161015957806323b872dd1161013357806323b872dd146103255780633023eba61461034e57806339a0c6f91461038b5780633ccfd60b146103b4576101a7565b80631249c58b146102ba57806318160ddd146102d157806318df6403146102fc576101a7565b806301ffc9a7146101ac57806306fdde03146101e957806308003f7814610214578063081812fc1461022b578063084c408814610268578063095ea7b314610291576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101d360048036038101906101ce91906124a2565b610651565b6040516101e091906124ea565b60405180910390f35b3480156101f557600080fd5b506101fe6106e3565b60405161020b919061259e565b60405180910390f35b34801561022057600080fd5b50610229610775565b005b34801561023757600080fd5b50610252600480360381019061024d91906125f6565b610801565b60405161025f9190612664565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a91906125f6565b61087d565b005b34801561029d57600080fd5b506102b860048036038101906102b391906126ab565b6109a3565b005b3480156102c657600080fd5b506102cf610ae4565b005b3480156102dd57600080fd5b506102e6610d67565b6040516102f391906126fa565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612715565b610d7e565b005b34801561033157600080fd5b5061034c60048036038101906103479190612755565b610ec9565b005b34801561035a57600080fd5b50610375600480360381019061037091906127a8565b6111eb565b60405161038291906126fa565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad919061290a565b611203565b005b3480156103c057600080fd5b506103c9611292565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612755565b61136a565b005b34801561040057600080fd5b5061040961138a565b60405161041691906126fa565b60405180910390f35b34801561042b57600080fd5b5061043461141d565b60405161044191906129ca565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c91906125f6565b611434565b60405161047e9190612664565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906127a8565b611446565b6040516104bb91906126fa565b60405180910390f35b3480156104d057600080fd5b506104d96114fe565b005b3480156104e757600080fd5b506104f0611586565b6040516104fd9190612664565b60405180910390f35b34801561051257600080fd5b5061051b6115b0565b604051610528919061259e565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612a11565b611642565b005b34801561056657600080fd5b5061056f6117b9565b60405161057c91906126fa565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612af2565b61183d565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906125f6565b6118b0565b6040516105e2919061259e565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612b75565b611947565b60405161061f91906124ea565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906127a8565b6119db565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f290612be4565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90612be4565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b61077d611ad2565b73ffffffffffffffffffffffffffffffffffffffff1661079b611586565b73ffffffffffffffffffffffffffffffffffffffff16146107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890612c61565b60405180910390fd5b6107f9610d67565b600a81905550565b600061080c82611ada565b610842576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610885611ad2565b73ffffffffffffffffffffffffffffffffffffffff166108a3611586565b73ffffffffffffffffffffffffffffffffffffffff16146108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090612c61565b60405180910390fd5b6002811061093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390612ccd565b60405180910390fd5b60008103610974576000600f60006101000a81548160ff0219169083600181111561096a57610969612953565b5b02179055506109a0565b6001600f60006101000a81548160ff0219169083600181111561099a57610999612953565b5b02179055505b50565b60006109ae82611434565b90508073ffffffffffffffffffffffffffffffffffffffff166109cf611b39565b73ffffffffffffffffffffffffffffffffffffffff1614610a32576109fb816109f6611b39565b611947565b610a31576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090612d39565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690612dcb565b60405180910390fd5b600180811115610bb257610bb1612953565b5b600f60009054906101000a900460ff166001811115610bd457610bd3612953565b5b14610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90612e37565b60405180910390fd5b600c54600d54610c249190612e86565b600a54610c319190612e86565b610c39610d67565b10610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090612f06565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290612f98565b60405180910390fd5b610d0633600a611b41565b6014600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d569190612fb8565b925050819055506001600981905550565b6000610d71611b5f565b6001546000540303905090565b610d86611ad2565b73ffffffffffffffffffffffffffffffffffffffff16610da4611586565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612c61565b60405180910390fd5b600d5482600c54610e0b9190612fb8565b1115610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390613080565b60405180910390fd5b610e568183611b41565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea59190612fb8565b9250508190555081600c6000828254610ebe9190612fb8565b925050819055505050565b6000610ed482611b64565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f4784611c30565b91509150610f5d8187610f58611b39565b611c52565b610fa957610f7286610f6d611b39565b611947565b610fa8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361100f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61101c8686866001611c96565b801561102757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110f5856110d1888887611c9c565b7c020000000000000000000000000000000000000000000000000000000017611cc4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361117b5760006001850190506000600460008381526020019081526020016000205403611179576000548114611178578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111e38686866001611cef565b505050505050565b600e6020528060005260406000206000915090505481565b61120b611ad2565b73ffffffffffffffffffffffffffffffffffffffff16611229611586565b73ffffffffffffffffffffffffffffffffffffffff161461127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690612c61565b60405180910390fd5b80600b908161128e919061324c565b5050565b61129a611ad2565b73ffffffffffffffffffffffffffffffffffffffff166112b8611586565b73ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590612c61565b60405180910390fd5b60006113186117b9565b90506000811161135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613390565b60405180910390fd5b6113673382611cf5565b50565b6113858383836040518060200160405280600081525061183d565b505050565b6000611394611ad2565b73ffffffffffffffffffffffffffffffffffffffff166113b2611586565b73ffffffffffffffffffffffffffffffffffffffff1614611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612c61565b60405180910390fd5b600c54600d546114189190612e86565b905090565b6000600f60009054906101000a900460ff16905090565b600061143f82611b64565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ad576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611506611ad2565b73ffffffffffffffffffffffffffffffffffffffff16611524611586565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190612c61565b60405180910390fd5b6115846000611da6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115bf90612be4565b80601f01602080910402602001604051908101604052809291908181526020018280546115eb90612be4565b80156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b5050505050905090565b61164a611b39565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ae576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116bb611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611768611b39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ad91906124ea565b60405180910390a35050565b60006117c3611ad2565b73ffffffffffffffffffffffffffffffffffffffff166117e1611586565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90612c61565b60405180910390fd5b47905090565b611848848484610ec9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118aa5761187384848484611e6c565b6118a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118bb82611ada565b6118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613422565b60405180910390fd5b6001826119079190612fb8565b91506000611913611fbc565b90508061191f8461204e565b6040516020016119309291906134ca565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e3611ad2565b73ffffffffffffffffffffffffffffffffffffffff16611a01611586565b73ffffffffffffffffffffffffffffffffffffffff1614611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90612c61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd9061356b565b60405180910390fd5b611acf81611da6565b50565b600033905090565b600081611ae5611b5f565b11158015611af4575060005482105b8015611b32575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b5b8282604051806020016040528060008152506121ae565b5050565b600090565b60008082905080611b73611b5f565b11611bf957600054811015611bf85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bf6575b60008103611bec576004600083600190039350838152602001908152602001600020549050611bc2565b8092505050611c2b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cb386868461224b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d1b906135bc565b60006040518083038185875af1925050503d8060008114611d58576040519150601f19603f3d011682016040523d82523d6000602084013e611d5d565b606091505b5050905080611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d989061361d565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e92611b39565b8786866040518563ffffffff1660e01b8152600401611eb49493929190613692565b6020604051808303816000875af1925050508015611ef057506040513d601f19601f82011682018060405250810190611eed91906136f3565b60015b611f69573d8060008114611f20576040519150601f19603f3d011682016040523d82523d6000602084013e611f25565b606091505b506000815103611f61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611fcb90612be4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff790612be4565b80156120445780601f1061201957610100808354040283529160200191612044565b820191906000526020600020905b81548152906001019060200180831161202757829003601f168201915b5050505050905090565b606060008203612095576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121a9565b600082905060005b600082146120c75780806120b090613720565b915050600a826120c09190613797565b915061209d565b60008167ffffffffffffffff8111156120e3576120e26127df565b5b6040519080825280601f01601f1916602001820160405280156121155781602001600182028036833780820191505090505b5090505b600085146121a25760018261212e9190612e86565b9150600a8561213d91906137c8565b60306121499190612fb8565b60f81b81838151811061215f5761215e6137f9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219b9190613797565b9450612119565b8093505050505b919050565b6121b88383612254565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461224657600080549050600083820390505b6121f86000868380600101945086611e6c565b61222e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121e557816000541461224357600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122c0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036122fa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123076000848385611c96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061237e8361236f6000866000611c9c565b61237885612426565b17611cc4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123a2578060008190555050506124216000848385611cef565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61247f8161244a565b811461248a57600080fd5b50565b60008135905061249c81612476565b92915050565b6000602082840312156124b8576124b7612440565b5b60006124c68482850161248d565b91505092915050565b60008115159050919050565b6124e4816124cf565b82525050565b60006020820190506124ff60008301846124db565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253f578082015181840152602081019050612524565b8381111561254e576000848401525b50505050565b6000601f19601f8301169050919050565b600061257082612505565b61257a8185612510565b935061258a818560208601612521565b61259381612554565b840191505092915050565b600060208201905081810360008301526125b88184612565565b905092915050565b6000819050919050565b6125d3816125c0565b81146125de57600080fd5b50565b6000813590506125f0816125ca565b92915050565b60006020828403121561260c5761260b612440565b5b600061261a848285016125e1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061264e82612623565b9050919050565b61265e81612643565b82525050565b60006020820190506126796000830184612655565b92915050565b61268881612643565b811461269357600080fd5b50565b6000813590506126a58161267f565b92915050565b600080604083850312156126c2576126c1612440565b5b60006126d085828601612696565b92505060206126e1858286016125e1565b9150509250929050565b6126f4816125c0565b82525050565b600060208201905061270f60008301846126eb565b92915050565b6000806040838503121561272c5761272b612440565b5b600061273a858286016125e1565b925050602061274b85828601612696565b9150509250929050565b60008060006060848603121561276e5761276d612440565b5b600061277c86828701612696565b935050602061278d86828701612696565b925050604061279e868287016125e1565b9150509250925092565b6000602082840312156127be576127bd612440565b5b60006127cc84828501612696565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61281782612554565b810181811067ffffffffffffffff82111715612836576128356127df565b5b80604052505050565b6000612849612436565b9050612855828261280e565b919050565b600067ffffffffffffffff821115612875576128746127df565b5b61287e82612554565b9050602081019050919050565b82818337600083830152505050565b60006128ad6128a88461285a565b61283f565b9050828152602081018484840111156128c9576128c86127da565b5b6128d484828561288b565b509392505050565b600082601f8301126128f1576128f06127d5565b5b813561290184826020860161289a565b91505092915050565b6000602082840312156129205761291f612440565b5b600082013567ffffffffffffffff81111561293e5761293d612445565b5b61294a848285016128dc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061299357612992612953565b5b50565b60008190506129a482612982565b919050565b60006129b482612996565b9050919050565b6129c4816129a9565b82525050565b60006020820190506129df60008301846129bb565b92915050565b6129ee816124cf565b81146129f957600080fd5b50565b600081359050612a0b816129e5565b92915050565b60008060408385031215612a2857612a27612440565b5b6000612a3685828601612696565b9250506020612a47858286016129fc565b9150509250929050565b600067ffffffffffffffff821115612a6c57612a6b6127df565b5b612a7582612554565b9050602081019050919050565b6000612a95612a9084612a51565b61283f565b905082815260208101848484011115612ab157612ab06127da565b5b612abc84828561288b565b509392505050565b600082601f830112612ad957612ad86127d5565b5b8135612ae9848260208601612a82565b91505092915050565b60008060008060808587031215612b0c57612b0b612440565b5b6000612b1a87828801612696565b9450506020612b2b87828801612696565b9350506040612b3c878288016125e1565b925050606085013567ffffffffffffffff811115612b5d57612b5c612445565b5b612b6987828801612ac4565b91505092959194509250565b60008060408385031215612b8c57612b8b612440565b5b6000612b9a85828601612696565b9250506020612bab85828601612696565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bfc57607f821691505b602082108103612c0f57612c0e612bb5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c4b602083612510565b9150612c5682612c15565b602082019050919050565b60006020820190508181036000830152612c7a81612c3e565b9050919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b6000612cb7601383612510565b9150612cc282612c81565b602082019050919050565b60006020820190508181036000830152612ce681612caa565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612d23601f83612510565b9150612d2e82612ced565b602082019050919050565b60006020820190508181036000830152612d5281612d16565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612db5602183612510565b9150612dc082612d59565b604082019050919050565b60006020820190508181036000830152612de481612da8565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000612e21601c83612510565b9150612e2c82612deb565b602082019050919050565b60006020820190508181036000830152612e5081612e14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e91826125c0565b9150612e9c836125c0565b925082821015612eaf57612eae612e57565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000612ef0601e83612510565b9150612efb82612eba565b602082019050919050565b60006020820190508181036000830152612f1f81612ee3565b9050919050565b7f57616c6c65742068617320616c726561647920206d696e74656420616e204e4660008201527f5421000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f82602283612510565b9150612f8d82612f26565b604082019050919050565b60006020820190508181036000830152612fb181612f75565b9050919050565b6000612fc3826125c0565b9150612fce836125c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561300357613002612e57565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b600061306a602783612510565b91506130758261300e565b604082019050919050565b600060208201905081810360008301526130998161305d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130c5565b61310c86836130c5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061314961314461313f846125c0565b613124565b6125c0565b9050919050565b6000819050919050565b6131638361312e565b61317761316f82613150565b8484546130d2565b825550505050565b600090565b61318c61317f565b61319781848461315a565b505050565b5b818110156131bb576131b0600082613184565b60018101905061319d565b5050565b601f821115613200576131d1816130a0565b6131da846130b5565b810160208510156131e9578190505b6131fd6131f5856130b5565b83018261319c565b50505b505050565b600082821c905092915050565b600061322360001984600802613205565b1980831691505092915050565b600061323c8383613212565b9150826002028217905092915050565b61325582612505565b67ffffffffffffffff81111561326e5761326d6127df565b5b6132788254612be4565b6132838282856131bf565b600060209050601f8311600181146132b657600084156132a4578287015190505b6132ae8582613230565b865550613316565b601f1984166132c4866130a0565b60005b828110156132ec578489015182556001820191506020850194506020810190506132c7565b868310156133095784890151613305601f891682613212565b8355505b6001600288020188555050505b505050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b600061337a602283612510565b91506133858261331e565b604082019050919050565b600060208201905081810360008301526133a98161336d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061340c602f83612510565b9150613417826133b0565b604082019050919050565b6000602082019050818103600083015261343b816133ff565b9050919050565b600081905092915050565b600061345882612505565b6134628185613442565b9350613472818560208601612521565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134b4600583613442565b91506134bf8261347e565b600582019050919050565b60006134d6828561344d565b91506134e2828461344d565b91506134ed826134a7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613555602683612510565b9150613560826134f9565b604082019050919050565b6000602082019050818103600083015261358481613548565b9050919050565b600081905092915050565b50565b60006135a660008361358b565b91506135b182613596565b600082019050919050565b60006135c782613599565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613607601483612510565b9150613612826135d1565b602082019050919050565b60006020820190508181036000830152613636816135fa565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136648261363d565b61366e8185613648565b935061367e818560208601612521565b61368781612554565b840191505092915050565b60006080820190506136a76000830187612655565b6136b46020830186612655565b6136c160408301856126eb565b81810360608301526136d38184613659565b905095945050505050565b6000815190506136ed81612476565b92915050565b60006020828403121561370957613708612440565b5b6000613717848285016136de565b91505092915050565b600061372b826125c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361375d5761375c612e57565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137a2826125c0565b91506137ad836125c0565b9250826137bd576137bc613768565b5b828204905092915050565b60006137d3826125c0565b91506137de836125c0565b9250826137ee576137ed613768565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cdc1387e4d14f0a33b1649d8ec3ae12f298073f6a8191ed2ccb6aad5840983d164736f6c634300080f0033697066733a2f2f516d51464b6461467a6f4778706a36324d69557a4850685272724770396b44356f47563839534a6e6b5563724e412f
Deployed Bytecode
0x6080604052600436106101a05760003560e01c806342842e0e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610585578063c87b56dd146105ae578063e985e9c5146105eb578063f2fde38b14610628576101a7565b806395d89b4114610506578063a22cb46514610531578063b0a1c1c41461055a576101a7565b80636352211e116100c65780636352211e1461044a57806370a0823114610487578063715018a6146104c45780638da5cb5b146104db576101a7565b806342842e0e146103cb5780634520e916146103f4578063603f4d521461041f576101a7565b80631249c58b1161015957806323b872dd1161013357806323b872dd146103255780633023eba61461034e57806339a0c6f91461038b5780633ccfd60b146103b4576101a7565b80631249c58b146102ba57806318160ddd146102d157806318df6403146102fc576101a7565b806301ffc9a7146101ac57806306fdde03146101e957806308003f7814610214578063081812fc1461022b578063084c408814610268578063095ea7b314610291576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101d360048036038101906101ce91906124a2565b610651565b6040516101e091906124ea565b60405180910390f35b3480156101f557600080fd5b506101fe6106e3565b60405161020b919061259e565b60405180910390f35b34801561022057600080fd5b50610229610775565b005b34801561023757600080fd5b50610252600480360381019061024d91906125f6565b610801565b60405161025f9190612664565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a91906125f6565b61087d565b005b34801561029d57600080fd5b506102b860048036038101906102b391906126ab565b6109a3565b005b3480156102c657600080fd5b506102cf610ae4565b005b3480156102dd57600080fd5b506102e6610d67565b6040516102f391906126fa565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612715565b610d7e565b005b34801561033157600080fd5b5061034c60048036038101906103479190612755565b610ec9565b005b34801561035a57600080fd5b50610375600480360381019061037091906127a8565b6111eb565b60405161038291906126fa565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad919061290a565b611203565b005b3480156103c057600080fd5b506103c9611292565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612755565b61136a565b005b34801561040057600080fd5b5061040961138a565b60405161041691906126fa565b60405180910390f35b34801561042b57600080fd5b5061043461141d565b60405161044191906129ca565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c91906125f6565b611434565b60405161047e9190612664565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906127a8565b611446565b6040516104bb91906126fa565b60405180910390f35b3480156104d057600080fd5b506104d96114fe565b005b3480156104e757600080fd5b506104f0611586565b6040516104fd9190612664565b60405180910390f35b34801561051257600080fd5b5061051b6115b0565b604051610528919061259e565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612a11565b611642565b005b34801561056657600080fd5b5061056f6117b9565b60405161057c91906126fa565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612af2565b61183d565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906125f6565b6118b0565b6040516105e2919061259e565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612b75565b611947565b60405161061f91906124ea565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906127a8565b6119db565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f290612be4565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90612be4565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b61077d611ad2565b73ffffffffffffffffffffffffffffffffffffffff1661079b611586565b73ffffffffffffffffffffffffffffffffffffffff16146107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890612c61565b60405180910390fd5b6107f9610d67565b600a81905550565b600061080c82611ada565b610842576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610885611ad2565b73ffffffffffffffffffffffffffffffffffffffff166108a3611586565b73ffffffffffffffffffffffffffffffffffffffff16146108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090612c61565b60405180910390fd5b6002811061093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390612ccd565b60405180910390fd5b60008103610974576000600f60006101000a81548160ff0219169083600181111561096a57610969612953565b5b02179055506109a0565b6001600f60006101000a81548160ff0219169083600181111561099a57610999612953565b5b02179055505b50565b60006109ae82611434565b90508073ffffffffffffffffffffffffffffffffffffffff166109cf611b39565b73ffffffffffffffffffffffffffffffffffffffff1614610a32576109fb816109f6611b39565b611947565b610a31576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090612d39565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690612dcb565b60405180910390fd5b600180811115610bb257610bb1612953565b5b600f60009054906101000a900460ff166001811115610bd457610bd3612953565b5b14610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90612e37565b60405180910390fd5b600c54600d54610c249190612e86565b600a54610c319190612e86565b610c39610d67565b10610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090612f06565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290612f98565b60405180910390fd5b610d0633600a611b41565b6014600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d569190612fb8565b925050819055506001600981905550565b6000610d71611b5f565b6001546000540303905090565b610d86611ad2565b73ffffffffffffffffffffffffffffffffffffffff16610da4611586565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612c61565b60405180910390fd5b600d5482600c54610e0b9190612fb8565b1115610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390613080565b60405180910390fd5b610e568183611b41565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea59190612fb8565b9250508190555081600c6000828254610ebe9190612fb8565b925050819055505050565b6000610ed482611b64565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f4784611c30565b91509150610f5d8187610f58611b39565b611c52565b610fa957610f7286610f6d611b39565b611947565b610fa8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361100f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61101c8686866001611c96565b801561102757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110f5856110d1888887611c9c565b7c020000000000000000000000000000000000000000000000000000000017611cc4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361117b5760006001850190506000600460008381526020019081526020016000205403611179576000548114611178578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111e38686866001611cef565b505050505050565b600e6020528060005260406000206000915090505481565b61120b611ad2565b73ffffffffffffffffffffffffffffffffffffffff16611229611586565b73ffffffffffffffffffffffffffffffffffffffff161461127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690612c61565b60405180910390fd5b80600b908161128e919061324c565b5050565b61129a611ad2565b73ffffffffffffffffffffffffffffffffffffffff166112b8611586565b73ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590612c61565b60405180910390fd5b60006113186117b9565b90506000811161135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613390565b60405180910390fd5b6113673382611cf5565b50565b6113858383836040518060200160405280600081525061183d565b505050565b6000611394611ad2565b73ffffffffffffffffffffffffffffffffffffffff166113b2611586565b73ffffffffffffffffffffffffffffffffffffffff1614611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612c61565b60405180910390fd5b600c54600d546114189190612e86565b905090565b6000600f60009054906101000a900460ff16905090565b600061143f82611b64565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ad576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611506611ad2565b73ffffffffffffffffffffffffffffffffffffffff16611524611586565b73ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190612c61565b60405180910390fd5b6115846000611da6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115bf90612be4565b80601f01602080910402602001604051908101604052809291908181526020018280546115eb90612be4565b80156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b5050505050905090565b61164a611b39565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ae576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116bb611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611768611b39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ad91906124ea565b60405180910390a35050565b60006117c3611ad2565b73ffffffffffffffffffffffffffffffffffffffff166117e1611586565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90612c61565b60405180910390fd5b47905090565b611848848484610ec9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118aa5761187384848484611e6c565b6118a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118bb82611ada565b6118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613422565b60405180910390fd5b6001826119079190612fb8565b91506000611913611fbc565b90508061191f8461204e565b6040516020016119309291906134ca565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e3611ad2565b73ffffffffffffffffffffffffffffffffffffffff16611a01611586565b73ffffffffffffffffffffffffffffffffffffffff1614611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90612c61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd9061356b565b60405180910390fd5b611acf81611da6565b50565b600033905090565b600081611ae5611b5f565b11158015611af4575060005482105b8015611b32575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b5b8282604051806020016040528060008152506121ae565b5050565b600090565b60008082905080611b73611b5f565b11611bf957600054811015611bf85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bf6575b60008103611bec576004600083600190039350838152602001908152602001600020549050611bc2565b8092505050611c2b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cb386868461224b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d1b906135bc565b60006040518083038185875af1925050503d8060008114611d58576040519150601f19603f3d011682016040523d82523d6000602084013e611d5d565b606091505b5050905080611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d989061361d565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e92611b39565b8786866040518563ffffffff1660e01b8152600401611eb49493929190613692565b6020604051808303816000875af1925050508015611ef057506040513d601f19601f82011682018060405250810190611eed91906136f3565b60015b611f69573d8060008114611f20576040519150601f19603f3d011682016040523d82523d6000602084013e611f25565b606091505b506000815103611f61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611fcb90612be4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff790612be4565b80156120445780601f1061201957610100808354040283529160200191612044565b820191906000526020600020905b81548152906001019060200180831161202757829003601f168201915b5050505050905090565b606060008203612095576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121a9565b600082905060005b600082146120c75780806120b090613720565b915050600a826120c09190613797565b915061209d565b60008167ffffffffffffffff8111156120e3576120e26127df565b5b6040519080825280601f01601f1916602001820160405280156121155781602001600182028036833780820191505090505b5090505b600085146121a25760018261212e9190612e86565b9150600a8561213d91906137c8565b60306121499190612fb8565b60f81b81838151811061215f5761215e6137f9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219b9190613797565b9450612119565b8093505050505b919050565b6121b88383612254565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461224657600080549050600083820390505b6121f86000868380600101945086611e6c565b61222e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121e557816000541461224357600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122c0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036122fa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123076000848385611c96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061237e8361236f6000866000611c9c565b61237885612426565b17611cc4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123a2578060008190555050506124216000848385611cef565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61247f8161244a565b811461248a57600080fd5b50565b60008135905061249c81612476565b92915050565b6000602082840312156124b8576124b7612440565b5b60006124c68482850161248d565b91505092915050565b60008115159050919050565b6124e4816124cf565b82525050565b60006020820190506124ff60008301846124db565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253f578082015181840152602081019050612524565b8381111561254e576000848401525b50505050565b6000601f19601f8301169050919050565b600061257082612505565b61257a8185612510565b935061258a818560208601612521565b61259381612554565b840191505092915050565b600060208201905081810360008301526125b88184612565565b905092915050565b6000819050919050565b6125d3816125c0565b81146125de57600080fd5b50565b6000813590506125f0816125ca565b92915050565b60006020828403121561260c5761260b612440565b5b600061261a848285016125e1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061264e82612623565b9050919050565b61265e81612643565b82525050565b60006020820190506126796000830184612655565b92915050565b61268881612643565b811461269357600080fd5b50565b6000813590506126a58161267f565b92915050565b600080604083850312156126c2576126c1612440565b5b60006126d085828601612696565b92505060206126e1858286016125e1565b9150509250929050565b6126f4816125c0565b82525050565b600060208201905061270f60008301846126eb565b92915050565b6000806040838503121561272c5761272b612440565b5b600061273a858286016125e1565b925050602061274b85828601612696565b9150509250929050565b60008060006060848603121561276e5761276d612440565b5b600061277c86828701612696565b935050602061278d86828701612696565b925050604061279e868287016125e1565b9150509250925092565b6000602082840312156127be576127bd612440565b5b60006127cc84828501612696565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61281782612554565b810181811067ffffffffffffffff82111715612836576128356127df565b5b80604052505050565b6000612849612436565b9050612855828261280e565b919050565b600067ffffffffffffffff821115612875576128746127df565b5b61287e82612554565b9050602081019050919050565b82818337600083830152505050565b60006128ad6128a88461285a565b61283f565b9050828152602081018484840111156128c9576128c86127da565b5b6128d484828561288b565b509392505050565b600082601f8301126128f1576128f06127d5565b5b813561290184826020860161289a565b91505092915050565b6000602082840312156129205761291f612440565b5b600082013567ffffffffffffffff81111561293e5761293d612445565b5b61294a848285016128dc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061299357612992612953565b5b50565b60008190506129a482612982565b919050565b60006129b482612996565b9050919050565b6129c4816129a9565b82525050565b60006020820190506129df60008301846129bb565b92915050565b6129ee816124cf565b81146129f957600080fd5b50565b600081359050612a0b816129e5565b92915050565b60008060408385031215612a2857612a27612440565b5b6000612a3685828601612696565b9250506020612a47858286016129fc565b9150509250929050565b600067ffffffffffffffff821115612a6c57612a6b6127df565b5b612a7582612554565b9050602081019050919050565b6000612a95612a9084612a51565b61283f565b905082815260208101848484011115612ab157612ab06127da565b5b612abc84828561288b565b509392505050565b600082601f830112612ad957612ad86127d5565b5b8135612ae9848260208601612a82565b91505092915050565b60008060008060808587031215612b0c57612b0b612440565b5b6000612b1a87828801612696565b9450506020612b2b87828801612696565b9350506040612b3c878288016125e1565b925050606085013567ffffffffffffffff811115612b5d57612b5c612445565b5b612b6987828801612ac4565b91505092959194509250565b60008060408385031215612b8c57612b8b612440565b5b6000612b9a85828601612696565b9250506020612bab85828601612696565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bfc57607f821691505b602082108103612c0f57612c0e612bb5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c4b602083612510565b9150612c5682612c15565b602082019050919050565b60006020820190508181036000830152612c7a81612c3e565b9050919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b6000612cb7601383612510565b9150612cc282612c81565b602082019050919050565b60006020820190508181036000830152612ce681612caa565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612d23601f83612510565b9150612d2e82612ced565b602082019050919050565b60006020820190508181036000830152612d5281612d16565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612db5602183612510565b9150612dc082612d59565b604082019050919050565b60006020820190508181036000830152612de481612da8565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000612e21601c83612510565b9150612e2c82612deb565b602082019050919050565b60006020820190508181036000830152612e5081612e14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e91826125c0565b9150612e9c836125c0565b925082821015612eaf57612eae612e57565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000612ef0601e83612510565b9150612efb82612eba565b602082019050919050565b60006020820190508181036000830152612f1f81612ee3565b9050919050565b7f57616c6c65742068617320616c726561647920206d696e74656420616e204e4660008201527f5421000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f82602283612510565b9150612f8d82612f26565b604082019050919050565b60006020820190508181036000830152612fb181612f75565b9050919050565b6000612fc3826125c0565b9150612fce836125c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561300357613002612e57565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b600061306a602783612510565b91506130758261300e565b604082019050919050565b600060208201905081810360008301526130998161305d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130c5565b61310c86836130c5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061314961314461313f846125c0565b613124565b6125c0565b9050919050565b6000819050919050565b6131638361312e565b61317761316f82613150565b8484546130d2565b825550505050565b600090565b61318c61317f565b61319781848461315a565b505050565b5b818110156131bb576131b0600082613184565b60018101905061319d565b5050565b601f821115613200576131d1816130a0565b6131da846130b5565b810160208510156131e9578190505b6131fd6131f5856130b5565b83018261319c565b50505b505050565b600082821c905092915050565b600061322360001984600802613205565b1980831691505092915050565b600061323c8383613212565b9150826002028217905092915050565b61325582612505565b67ffffffffffffffff81111561326e5761326d6127df565b5b6132788254612be4565b6132838282856131bf565b600060209050601f8311600181146132b657600084156132a4578287015190505b6132ae8582613230565b865550613316565b601f1984166132c4866130a0565b60005b828110156132ec578489015182556001820191506020850194506020810190506132c7565b868310156133095784890151613305601f891682613212565b8355505b6001600288020188555050505b505050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b600061337a602283612510565b91506133858261331e565b604082019050919050565b600060208201905081810360008301526133a98161336d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061340c602f83612510565b9150613417826133b0565b604082019050919050565b6000602082019050818103600083015261343b816133ff565b9050919050565b600081905092915050565b600061345882612505565b6134628185613442565b9350613472818560208601612521565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134b4600583613442565b91506134bf8261347e565b600582019050919050565b60006134d6828561344d565b91506134e2828461344d565b91506134ed826134a7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613555602683612510565b9150613560826134f9565b604082019050919050565b6000602082019050818103600083015261358481613548565b9050919050565b600081905092915050565b50565b60006135a660008361358b565b91506135b182613596565b600082019050919050565b60006135c782613599565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613607601483612510565b9150613612826135d1565b602082019050919050565b60006020820190508181036000830152613636816135fa565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136648261363d565b61366e8185613648565b935061367e818560208601612521565b61368781612554565b840191505092915050565b60006080820190506136a76000830187612655565b6136b46020830186612655565b6136c160408301856126eb565b81810360608301526136d38184613659565b905095945050505050565b6000815190506136ed81612476565b92915050565b60006020828403121561370957613708612440565b5b6000613717848285016136de565b91505092915050565b600061372b826125c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361375d5761375c612e57565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137a2826125c0565b91506137ad836125c0565b9250826137bd576137bc613768565b5b828204905092915050565b60006137d3826125c0565b91506137de836125c0565b9250826137ee576137ed613768565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cdc1387e4d14f0a33b1649d8ec3ae12f298073f6a8191ed2ccb6aad5840983d164736f6c634300080f0033
Deployed Bytecode Sourcemap
53145:3852:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54024:8;;;22931:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28578:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55931:88;;;;;;;;;;;;;:::i;:::-;;30524:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54360:276;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30072:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54695:497;;;;;;;;;;;;;:::i;:::-;;21985:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55587:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39789:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53503:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54243:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56208:212;;;;;;;;;;;;;:::i;:::-;;31414:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56690:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56900:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28367:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23610:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28747:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30800:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56039:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31670:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55204:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31179:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22931:615;23016:4;23331:10;23316:25;;:11;:25;;;;:102;;;;23408:10;23393:25;;:11;:25;;;;23316:102;:179;;;;23485:10;23470:25;;:11;:25;;;;23316:179;23296:199;;22931:615;;;:::o;28578:100::-;28632:13;28665:5;28658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28578:100;:::o;55931:88::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55998:13:::1;:11;:13::i;:::-;55981:14;:30;;;;55931:88::o:0;30524:204::-;30592:7;30617:16;30625:7;30617;:16::i;:::-;30612:64;;30642:34;;;;;;;;;;;;;;30612:64;30696:15;:24;30712:7;30696:24;;;;;;;;;;;;;;;;;;;;;30689:31;;30524:204;;;:::o;54360:276::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54452:1:::1;54437:12;:16;54429:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;54508:1;54492:12;:17:::0;54488:141:::1;;54539:10;54526;;:23;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;54488:141;;;54604:13;54591:10;;:26;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;54488:141;54360:276:::0;:::o;30072:386::-;30145:13;30161:16;30169:7;30161;:16::i;:::-;30145:32;;30217:5;30194:28;;:19;:17;:19::i;:::-;:28;;;30190:175;;30242:44;30259:5;30266:19;:17;:19::i;:::-;30242:16;:44::i;:::-;30237:128;;30314:35;;;;;;;;;;;;;;30237:128;30190:175;30404:2;30377:15;:24;30393:7;30377:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30442:7;30438:2;30422:28;;30431:5;30422:28;;;;;;;;;;;;30134:324;30072:386;;:::o;54695:497::-;3969:1;4567:7;;:19;4559:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3969:1;4700:7;:18;;;;54764:9:::1;54750:23;;:10;:23;;;54742:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;54844:13;54830:27:::0;::::1;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;54822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54962:14;;54943:16;;:33;;;;:::i;:::-;54925:14;;:52;;;;:::i;:::-;54909:13;:11;:13::i;:::-;:68;54901:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;55062:1;55031:15;:27;55047:10;55031:27;;;;;;;;;;;;;;;;:32;55023:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;55115:25;55125:10;55137:2;55115:9;:25::i;:::-;55182:2;55151:15;:27;55167:10;55151:27;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;3925:1:::0;4879:7;:22;;;;54695:497::o;21985:315::-;22038:7;22266:15;:13;:15::i;:::-;22251:12;;22235:13;;:28;:46;22228:53;;21985:315;:::o;55587:319::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55704:16:::1;;55694:6;55677:14;;:23;;;;:::i;:::-;:43;;55669:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;55777:28;55787:9;55798:6;55777:9;:28::i;:::-;55846:6;55816:15;:26;55832:9;55816:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;55881:6;55863:14;;:24;;;;;;;:::i;:::-;;;;;;;;55587:319:::0;;:::o;39789:2800::-;39923:27;39953;39972:7;39953:18;:27::i;:::-;39923:57;;40038:4;39997:45;;40013:19;39997:45;;;39993:86;;40051:28;;;;;;;;;;;;;;39993:86;40093:27;40122:23;40149:28;40169:7;40149:19;:28::i;:::-;40092:85;;;;40277:62;40296:15;40313:4;40319:19;:17;:19::i;:::-;40277:18;:62::i;:::-;40272:174;;40359:43;40376:4;40382:19;:17;:19::i;:::-;40359:16;:43::i;:::-;40354:92;;40411:35;;;;;;;;;;;;;;40354:92;40272:174;40477:1;40463:16;;:2;:16;;;40459:52;;40488:23;;;;;;;;;;;;;;40459:52;40524:43;40546:4;40552:2;40556:7;40565:1;40524:21;:43::i;:::-;40660:15;40657:160;;;40800:1;40779:19;40772:30;40657:160;41195:18;:24;41214:4;41195:24;;;;;;;;;;;;;;;;41193:26;;;;;;;;;;;;41264:18;:22;41283:2;41264:22;;;;;;;;;;;;;;;;41262:24;;;;;;;;;;;41586:145;41623:2;41671:45;41686:4;41692:2;41696:19;41671:14;:45::i;:::-;19213:8;41644:72;41586:18;:145::i;:::-;41557:17;:26;41575:7;41557:26;;;;;;;;;;;:174;;;;41901:1;19213:8;41851:19;:46;:51;41847:626;;41923:19;41955:1;41945:7;:11;41923:33;;42112:1;42078:17;:30;42096:11;42078:30;;;;;;;;;;;;:35;42074:384;;42216:13;;42201:11;:28;42197:242;;42396:19;42363:17;:30;42381:11;42363:30;;;;;;;;;;;:52;;;;42197:242;42074:384;41904:569;41847:626;42520:7;42516:2;42501:27;;42510:4;42501:27;;;;;;;;;;;;42539:42;42560:4;42566:2;42570:7;42579:1;42539:20;:42::i;:::-;39912:2677;;;39789:2800;;;:::o;53503:50::-;;;;;;;;;;;;;;;;;:::o;54243:109::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54336:8:::1;54318:15;:26;;;;;;:::i;:::-;;54243:109:::0;:::o;56208:212::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56256:15:::1;56274:16;:14;:16::i;:::-;56256:34;;56319:1;56309:7;:11;56301:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;56372:39;56390:10;56403:7;56372:9;:39::i;:::-;56245:175;56208:212::o:0;31414:185::-;31552:39;31569:4;31575:2;31579:7;31552:39;;;;;;;;;;;;:16;:39::i;:::-;31414:185;;;:::o;56690:124::-;56749:4;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56792:14:::1;;56773:16;;:33;;;;:::i;:::-;56766:40;;56690:124:::0;:::o;56900:83::-;56941:5;56965:10;;;;;;;;;;;56958:17;;56900:83;:::o;28367:144::-;28431:7;28474:27;28493:7;28474:18;:27::i;:::-;28451:52;;28367:144;;;:::o;23610:224::-;23674:7;23715:1;23698:19;;:5;:19;;;23694:60;;23726:28;;;;;;;;;;;;;;23694:60;18165:13;23772:18;:25;23791:5;23772:25;;;;;;;;;;;;;;;;:54;23765:61;;23610:224;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;28747:104::-;28803:13;28836:7;28829:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28747:104;:::o;30800:308::-;30911:19;:17;:19::i;:::-;30899:31;;:8;:31;;;30895:61;;30939:17;;;;;;;;;;;;;;30895:61;31021:8;30969:18;:39;30988:19;:17;:19::i;:::-;30969:39;;;;;;;;;;;;;;;:49;31009:8;30969:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31081:8;31045:55;;31060:19;:17;:19::i;:::-;31045:55;;;31091:8;31045:55;;;;;;:::i;:::-;;;;;;;;30800:308;;:::o;56039:109::-;56095:4;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56119:21:::1;56112:28;;56039:109:::0;:::o;31670:399::-;31837:31;31850:4;31856:2;31860:7;31837:12;:31::i;:::-;31901:1;31883:2;:14;;;:19;31879:183;;31922:56;31953:4;31959:2;31963:7;31972:5;31922:30;:56::i;:::-;31917:145;;32006:40;;;;;;;;;;;;;;31917:145;31879:183;31670:399;;;;:::o;55204:338::-;55278:13;55312:17;55320:8;55312:7;:17::i;:::-;55304:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;55406:1;55394:13;;;;;:::i;:::-;;;55418:21;55442:10;:8;:10::i;:::-;55418:34;;55494:7;55503:19;:8;:17;:19::i;:::-;55477:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55463:70;;;55204:338;;;:::o;31179:164::-;31276:4;31300:18;:25;31319:5;31300:25;;;;;;;;;;;;;;;:35;31326:8;31300:35;;;;;;;;;;;;;;;;;;;;;;;;;31293:42;;31179:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;::::0;7861:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;32324:273::-;32381:4;32437:7;32418:15;:13;:15::i;:::-;:26;;:66;;;;;32471:13;;32461:7;:23;32418:66;:152;;;;;32569:1;18935:8;32522:17;:26;32540:7;32522:26;;;;;;;;;;;;:43;:48;32418:152;32398:172;;32324:273;;;:::o;50885:105::-;50945:7;50972:10;50965:17;;50885:105;:::o;32681:104::-;32750:27;32760:2;32764:8;32750:27;;;;;;;;;;;;:9;:27::i;:::-;32681:104;;:::o;21509:92::-;21565:7;21509:92;:::o;25284:1129::-;25351:7;25371:12;25386:7;25371:22;;25454:4;25435:15;:13;:15::i;:::-;:23;25431:915;;25488:13;;25481:4;:20;25477:869;;;25526:14;25543:17;:23;25561:4;25543:23;;;;;;;;;;;;25526:40;;25659:1;18935:8;25632:6;:23;:28;25628:699;;26151:113;26168:1;26158:6;:11;26151:113;;26211:17;:25;26229:6;;;;;;;26211:25;;;;;;;;;;;;26202:34;;26151:113;;;26297:6;26290:13;;;;;;25628:699;25503:843;25477:869;25431:915;26374:31;;;;;;;;;;;;;;25284:1129;;;;:::o;38125:652::-;38220:27;38249:23;38290:53;38346:15;38290:71;;38532:7;38526:4;38519:21;38567:22;38561:4;38554:36;38643:4;38637;38627:21;38604:44;;38739:19;38733:26;38714:45;;38470:300;38125:652;;;:::o;38890:645::-;39032:11;39194:15;39188:4;39184:26;39176:34;;39353:15;39342:9;39338:31;39325:44;;39500:15;39489:9;39486:30;39479:4;39468:9;39465:19;39462:55;39452:65;;38890:645;;;;;:::o;49718:159::-;;;;;:::o;48030:309::-;48165:7;48185:16;19336:3;48211:19;:40;;48185:67;;19336:3;48278:31;48289:4;48295:2;48299:9;48278:10;:31::i;:::-;48270:40;;:61;;48263:68;;;48030:309;;;;;:::o;27858:447::-;27938:14;28106:15;28099:5;28095:27;28086:36;;28280:5;28266:11;28242:22;28238:40;28235:51;28228:5;28225:62;28215:72;;27858:447;;;;:::o;50536:158::-;;;;;:::o;56440:183::-;56521:9;56536:7;:12;;56556:6;56536:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56520:47;;;56586:4;56578:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;56509:114;56440:183;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;46540:716::-;46703:4;46749:2;46724:45;;;46770:19;:17;:19::i;:::-;46791:4;46797:7;46806:5;46724:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46720:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47024:1;47007:6;:13;:18;47003:235;;47053:40;;;;;;;;;;;;;;47003:235;47196:6;47190:13;47181:6;47177:2;47173:15;47166:38;46720:529;46893:54;;;46883:64;;;:6;:64;;;;46876:71;;;46540:716;;;;;;:::o;54077:116::-;54137:13;54170:15;54163:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54077:116;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;33201:681::-;33324:19;33330:2;33334:8;33324:5;:19::i;:::-;33403:1;33385:2;:14;;;:19;33381:483;;33425:11;33439:13;;33425:27;;33471:13;33493:8;33487:3;:14;33471:30;;33520:233;33551:62;33590:1;33594:2;33598:7;;;;;;33607:5;33551:30;:62::i;:::-;33546:167;;33649:40;;;;;;;;;;;;;;33546:167;33748:3;33740:5;:11;33520:233;;33835:3;33818:13;;:20;33814:34;;33840:8;;;33814:34;33406:458;;33381:483;33201:681;;;:::o;48915:147::-;49052:6;48915:147;;;;;:::o;34155:1529::-;34220:20;34243:13;;34220:36;;34285:1;34271:16;;:2;:16;;;34267:48;;34296:19;;;;;;;;;;;;;;34267:48;34342:1;34330:8;:13;34326:44;;34352:18;;;;;;;;;;;;;;34326:44;34383:61;34413:1;34417:2;34421:12;34435:8;34383:21;:61::i;:::-;34926:1;18302:2;34897:1;:25;;34896:31;34884:8;:44;34858:18;:22;34877:2;34858:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;35205:139;35242:2;35296:33;35319:1;35323:2;35327:1;35296:14;:33::i;:::-;35263:30;35284:8;35263:20;:30::i;:::-;:66;35205:18;:139::i;:::-;35171:17;:31;35189:12;35171:31;;;;;;;;;;;:173;;;;35361:15;35379:12;35361:30;;35406:11;35435:8;35420:12;:23;35406:37;;35458:101;35510:9;;;;;;35506:2;35485:35;;35502:1;35485:35;;;;;;;;;;;;35554:3;35544:7;:13;35458:101;;35591:3;35575:13;:19;;;;34632:974;;35616:60;35645:1;35649:2;35653:12;35667:8;35616:20;:60::i;:::-;34209:1475;34155:1529;;:::o;29688:322::-;29758:14;29989:1;29979:8;29976:15;29951:23;29947:45;29937:55;;29688:322;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:474::-;5358:6;5366;5415:2;5403:9;5394:7;5390:23;5386:32;5383:119;;;5421:79;;:::i;:::-;5383:119;5541:1;5566:53;5611:7;5602:6;5591:9;5587:22;5566:53;:::i;:::-;5556:63;;5512:117;5668:2;5694:53;5739:7;5730:6;5719:9;5715:22;5694:53;:::i;:::-;5684:63;;5639:118;5290:474;;;;;:::o;5770:619::-;5847:6;5855;5863;5912:2;5900:9;5891:7;5887:23;5883:32;5880:119;;;5918:79;;:::i;:::-;5880:119;6038:1;6063:53;6108:7;6099:6;6088:9;6084:22;6063:53;:::i;:::-;6053:63;;6009:117;6165:2;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6136:118;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5770:619;;;;;:::o;6395:329::-;6454:6;6503:2;6491:9;6482:7;6478:23;6474:32;6471:119;;;6509:79;;:::i;:::-;6471:119;6629:1;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6600:117;6395:329;;;;:::o;6730:117::-;6839:1;6836;6829:12;6853:117;6962:1;6959;6952:12;6976:180;7024:77;7021:1;7014:88;7121:4;7118:1;7111:15;7145:4;7142:1;7135:15;7162:281;7245:27;7267:4;7245:27;:::i;:::-;7237:6;7233:40;7375:6;7363:10;7360:22;7339:18;7327:10;7324:34;7321:62;7318:88;;;7386:18;;:::i;:::-;7318:88;7426:10;7422:2;7415:22;7205:238;7162:281;;:::o;7449:129::-;7483:6;7510:20;;:::i;:::-;7500:30;;7539:33;7567:4;7559:6;7539:33;:::i;:::-;7449:129;;;:::o;7584:308::-;7646:4;7736:18;7728:6;7725:30;7722:56;;;7758:18;;:::i;:::-;7722:56;7796:29;7818:6;7796:29;:::i;:::-;7788:37;;7880:4;7874;7870:15;7862:23;;7584:308;;;:::o;7898:154::-;7982:6;7977:3;7972;7959:30;8044:1;8035:6;8030:3;8026:16;8019:27;7898:154;;;:::o;8058:412::-;8136:5;8161:66;8177:49;8219:6;8177:49;:::i;:::-;8161:66;:::i;:::-;8152:75;;8250:6;8243:5;8236:21;8288:4;8281:5;8277:16;8326:3;8317:6;8312:3;8308:16;8305:25;8302:112;;;8333:79;;:::i;:::-;8302:112;8423:41;8457:6;8452:3;8447;8423:41;:::i;:::-;8142:328;8058:412;;;;;:::o;8490:340::-;8546:5;8595:3;8588:4;8580:6;8576:17;8572:27;8562:122;;8603:79;;:::i;:::-;8562:122;8720:6;8707:20;8745:79;8820:3;8812:6;8805:4;8797:6;8793:17;8745:79;:::i;:::-;8736:88;;8552:278;8490:340;;;;:::o;8836:509::-;8905:6;8954:2;8942:9;8933:7;8929:23;8925:32;8922:119;;;8960:79;;:::i;:::-;8922:119;9108:1;9097:9;9093:17;9080:31;9138:18;9130:6;9127:30;9124:117;;;9160:79;;:::i;:::-;9124:117;9265:63;9320:7;9311:6;9300:9;9296:22;9265:63;:::i;:::-;9255:73;;9051:287;8836:509;;;;:::o;9351:180::-;9399:77;9396:1;9389:88;9496:4;9493:1;9486:15;9520:4;9517:1;9510:15;9537:115;9620:1;9613:5;9610:12;9600:46;;9626:18;;:::i;:::-;9600:46;9537:115;:::o;9658:131::-;9705:7;9734:5;9723:16;;9740:43;9777:5;9740:43;:::i;:::-;9658:131;;;:::o;9795:::-;9853:9;9886:34;9914:5;9886:34;:::i;:::-;9873:47;;9795:131;;;:::o;9932:147::-;10027:45;10066:5;10027:45;:::i;:::-;10022:3;10015:58;9932:147;;:::o;10085:238::-;10186:4;10224:2;10213:9;10209:18;10201:26;;10237:79;10313:1;10302:9;10298:17;10289:6;10237:79;:::i;:::-;10085:238;;;;:::o;10329:116::-;10399:21;10414:5;10399:21;:::i;:::-;10392:5;10389:32;10379:60;;10435:1;10432;10425:12;10379:60;10329:116;:::o;10451:133::-;10494:5;10532:6;10519:20;10510:29;;10548:30;10572:5;10548:30;:::i;:::-;10451:133;;;;:::o;10590:468::-;10655:6;10663;10712:2;10700:9;10691:7;10687:23;10683:32;10680:119;;;10718:79;;:::i;:::-;10680:119;10838:1;10863:53;10908:7;10899:6;10888:9;10884:22;10863:53;:::i;:::-;10853:63;;10809:117;10965:2;10991:50;11033:7;11024:6;11013:9;11009:22;10991:50;:::i;:::-;10981:60;;10936:115;10590:468;;;;;:::o;11064:307::-;11125:4;11215:18;11207:6;11204:30;11201:56;;;11237:18;;:::i;:::-;11201:56;11275:29;11297:6;11275:29;:::i;:::-;11267:37;;11359:4;11353;11349:15;11341:23;;11064:307;;;:::o;11377:410::-;11454:5;11479:65;11495:48;11536:6;11495:48;:::i;:::-;11479:65;:::i;:::-;11470:74;;11567:6;11560:5;11553:21;11605:4;11598:5;11594:16;11643:3;11634:6;11629:3;11625:16;11622:25;11619:112;;;11650:79;;:::i;:::-;11619:112;11740:41;11774:6;11769:3;11764;11740:41;:::i;:::-;11460:327;11377:410;;;;;:::o;11806:338::-;11861:5;11910:3;11903:4;11895:6;11891:17;11887:27;11877:122;;11918:79;;:::i;:::-;11877:122;12035:6;12022:20;12060:78;12134:3;12126:6;12119:4;12111:6;12107:17;12060:78;:::i;:::-;12051:87;;11867:277;11806:338;;;;:::o;12150:943::-;12245:6;12253;12261;12269;12318:3;12306:9;12297:7;12293:23;12289:33;12286:120;;;12325:79;;:::i;:::-;12286:120;12445:1;12470:53;12515:7;12506:6;12495:9;12491:22;12470:53;:::i;:::-;12460:63;;12416:117;12572:2;12598:53;12643:7;12634:6;12623:9;12619:22;12598:53;:::i;:::-;12588:63;;12543:118;12700:2;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12671:118;12856:2;12845:9;12841:18;12828:32;12887:18;12879:6;12876:30;12873:117;;;12909:79;;:::i;:::-;12873:117;13014:62;13068:7;13059:6;13048:9;13044:22;13014:62;:::i;:::-;13004:72;;12799:287;12150:943;;;;;;;:::o;13099:474::-;13167:6;13175;13224:2;13212:9;13203:7;13199:23;13195:32;13192:119;;;13230:79;;:::i;:::-;13192:119;13350:1;13375:53;13420:7;13411:6;13400:9;13396:22;13375:53;:::i;:::-;13365:63;;13321:117;13477:2;13503:53;13548:7;13539:6;13528:9;13524:22;13503:53;:::i;:::-;13493:63;;13448:118;13099:474;;;;;:::o;13579:180::-;13627:77;13624:1;13617:88;13724:4;13721:1;13714:15;13748:4;13745:1;13738:15;13765:320;13809:6;13846:1;13840:4;13836:12;13826:22;;13893:1;13887:4;13883:12;13914:18;13904:81;;13970:4;13962:6;13958:17;13948:27;;13904:81;14032:2;14024:6;14021:14;14001:18;13998:38;13995:84;;14051:18;;:::i;:::-;13995:84;13816:269;13765:320;;;:::o;14091:182::-;14231:34;14227:1;14219:6;14215:14;14208:58;14091:182;:::o;14279:366::-;14421:3;14442:67;14506:2;14501:3;14442:67;:::i;:::-;14435:74;;14518:93;14607:3;14518:93;:::i;:::-;14636:2;14631:3;14627:12;14620:19;;14279:366;;;:::o;14651:419::-;14817:4;14855:2;14844:9;14840:18;14832:26;;14904:9;14898:4;14894:20;14890:1;14879:9;14875:17;14868:47;14932:131;15058:4;14932:131;:::i;:::-;14924:139;;14651:419;;;:::o;15076:169::-;15216:21;15212:1;15204:6;15200:14;15193:45;15076:169;:::o;15251:366::-;15393:3;15414:67;15478:2;15473:3;15414:67;:::i;:::-;15407:74;;15490:93;15579:3;15490:93;:::i;:::-;15608:2;15603:3;15599:12;15592:19;;15251:366;;;:::o;15623:419::-;15789:4;15827:2;15816:9;15812:18;15804:26;;15876:9;15870:4;15866:20;15862:1;15851:9;15847:17;15840:47;15904:131;16030:4;15904:131;:::i;:::-;15896:139;;15623:419;;;:::o;16048:181::-;16188:33;16184:1;16176:6;16172:14;16165:57;16048:181;:::o;16235:366::-;16377:3;16398:67;16462:2;16457:3;16398:67;:::i;:::-;16391:74;;16474:93;16563:3;16474:93;:::i;:::-;16592:2;16587:3;16583:12;16576:19;;16235:366;;;:::o;16607:419::-;16773:4;16811:2;16800:9;16796:18;16788:26;;16860:9;16854:4;16850:20;16846:1;16835:9;16831:17;16824:47;16888:131;17014:4;16888:131;:::i;:::-;16880:139;;16607:419;;;:::o;17032:220::-;17172:34;17168:1;17160:6;17156:14;17149:58;17241:3;17236:2;17228:6;17224:15;17217:28;17032:220;:::o;17258:366::-;17400:3;17421:67;17485:2;17480:3;17421:67;:::i;:::-;17414:74;;17497:93;17586:3;17497:93;:::i;:::-;17615:2;17610:3;17606:12;17599:19;;17258:366;;;:::o;17630:419::-;17796:4;17834:2;17823:9;17819:18;17811:26;;17883:9;17877:4;17873:20;17869:1;17858:9;17854:17;17847:47;17911:131;18037:4;17911:131;:::i;:::-;17903:139;;17630:419;;;:::o;18055:178::-;18195:30;18191:1;18183:6;18179:14;18172:54;18055:178;:::o;18239:366::-;18381:3;18402:67;18466:2;18461:3;18402:67;:::i;:::-;18395:74;;18478:93;18567:3;18478:93;:::i;:::-;18596:2;18591:3;18587:12;18580:19;;18239:366;;;:::o;18611:419::-;18777:4;18815:2;18804:9;18800:18;18792:26;;18864:9;18858:4;18854:20;18850:1;18839:9;18835:17;18828:47;18892:131;19018:4;18892:131;:::i;:::-;18884:139;;18611:419;;;:::o;19036:180::-;19084:77;19081:1;19074:88;19181:4;19178:1;19171:15;19205:4;19202:1;19195:15;19222:191;19262:4;19282:20;19300:1;19282:20;:::i;:::-;19277:25;;19316:20;19334:1;19316:20;:::i;:::-;19311:25;;19355:1;19352;19349:8;19346:34;;;19360:18;;:::i;:::-;19346:34;19405:1;19402;19398:9;19390:17;;19222:191;;;;:::o;19419:180::-;19559:32;19555:1;19547:6;19543:14;19536:56;19419:180;:::o;19605:366::-;19747:3;19768:67;19832:2;19827:3;19768:67;:::i;:::-;19761:74;;19844:93;19933:3;19844:93;:::i;:::-;19962:2;19957:3;19953:12;19946:19;;19605:366;;;:::o;19977:419::-;20143:4;20181:2;20170:9;20166:18;20158:26;;20230:9;20224:4;20220:20;20216:1;20205:9;20201:17;20194:47;20258:131;20384:4;20258:131;:::i;:::-;20250:139;;19977:419;;;:::o;20402:221::-;20542:34;20538:1;20530:6;20526:14;20519:58;20611:4;20606:2;20598:6;20594:15;20587:29;20402:221;:::o;20629:366::-;20771:3;20792:67;20856:2;20851:3;20792:67;:::i;:::-;20785:74;;20868:93;20957:3;20868:93;:::i;:::-;20986:2;20981:3;20977:12;20970:19;;20629:366;;;:::o;21001:419::-;21167:4;21205:2;21194:9;21190:18;21182:26;;21254:9;21248:4;21244:20;21240:1;21229:9;21225:17;21218:47;21282:131;21408:4;21282:131;:::i;:::-;21274:139;;21001:419;;;:::o;21426:305::-;21466:3;21485:20;21503:1;21485:20;:::i;:::-;21480:25;;21519:20;21537:1;21519:20;:::i;:::-;21514:25;;21673:1;21605:66;21601:74;21598:1;21595:81;21592:107;;;21679:18;;:::i;:::-;21592:107;21723:1;21720;21716:9;21709:16;;21426:305;;;;:::o;21737:226::-;21877:34;21873:1;21865:6;21861:14;21854:58;21946:9;21941:2;21933:6;21929:15;21922:34;21737:226;:::o;21969:366::-;22111:3;22132:67;22196:2;22191:3;22132:67;:::i;:::-;22125:74;;22208:93;22297:3;22208:93;:::i;:::-;22326:2;22321:3;22317:12;22310:19;;21969:366;;;:::o;22341:419::-;22507:4;22545:2;22534:9;22530:18;22522:26;;22594:9;22588:4;22584:20;22580:1;22569:9;22565:17;22558:47;22622:131;22748:4;22622:131;:::i;:::-;22614:139;;22341:419;;;:::o;22766:141::-;22815:4;22838:3;22830:11;;22861:3;22858:1;22851:14;22895:4;22892:1;22882:18;22874:26;;22766:141;;;:::o;22913:93::-;22950:6;22997:2;22992;22985:5;22981:14;22977:23;22967:33;;22913:93;;;:::o;23012:107::-;23056:8;23106:5;23100:4;23096:16;23075:37;;23012:107;;;;:::o;23125:393::-;23194:6;23244:1;23232:10;23228:18;23267:97;23297:66;23286:9;23267:97;:::i;:::-;23385:39;23415:8;23404:9;23385:39;:::i;:::-;23373:51;;23457:4;23453:9;23446:5;23442:21;23433:30;;23506:4;23496:8;23492:19;23485:5;23482:30;23472:40;;23201:317;;23125:393;;;;;:::o;23524:60::-;23552:3;23573:5;23566:12;;23524:60;;;:::o;23590:142::-;23640:9;23673:53;23691:34;23700:24;23718:5;23700:24;:::i;:::-;23691:34;:::i;:::-;23673:53;:::i;:::-;23660:66;;23590:142;;;:::o;23738:75::-;23781:3;23802:5;23795:12;;23738:75;;;:::o;23819:269::-;23929:39;23960:7;23929:39;:::i;:::-;23990:91;24039:41;24063:16;24039:41;:::i;:::-;24031:6;24024:4;24018:11;23990:91;:::i;:::-;23984:4;23977:105;23895:193;23819:269;;;:::o;24094:73::-;24139:3;24094:73;:::o;24173:189::-;24250:32;;:::i;:::-;24291:65;24349:6;24341;24335:4;24291:65;:::i;:::-;24226:136;24173:189;;:::o;24368:186::-;24428:120;24445:3;24438:5;24435:14;24428:120;;;24499:39;24536:1;24529:5;24499:39;:::i;:::-;24472:1;24465:5;24461:13;24452:22;;24428:120;;;24368:186;;:::o;24560:543::-;24661:2;24656:3;24653:11;24650:446;;;24695:38;24727:5;24695:38;:::i;:::-;24779:29;24797:10;24779:29;:::i;:::-;24769:8;24765:44;24962:2;24950:10;24947:18;24944:49;;;24983:8;24968:23;;24944:49;25006:80;25062:22;25080:3;25062:22;:::i;:::-;25052:8;25048:37;25035:11;25006:80;:::i;:::-;24665:431;;24650:446;24560:543;;;:::o;25109:117::-;25163:8;25213:5;25207:4;25203:16;25182:37;;25109:117;;;;:::o;25232:169::-;25276:6;25309:51;25357:1;25353:6;25345:5;25342:1;25338:13;25309:51;:::i;:::-;25305:56;25390:4;25384;25380:15;25370:25;;25283:118;25232:169;;;;:::o;25406:295::-;25482:4;25628:29;25653:3;25647:4;25628:29;:::i;:::-;25620:37;;25690:3;25687:1;25683:11;25677:4;25674:21;25666:29;;25406:295;;;;:::o;25706:1395::-;25823:37;25856:3;25823:37;:::i;:::-;25925:18;25917:6;25914:30;25911:56;;;25947:18;;:::i;:::-;25911:56;25991:38;26023:4;26017:11;25991:38;:::i;:::-;26076:67;26136:6;26128;26122:4;26076:67;:::i;:::-;26170:1;26194:4;26181:17;;26226:2;26218:6;26215:14;26243:1;26238:618;;;;26900:1;26917:6;26914:77;;;26966:9;26961:3;26957:19;26951:26;26942:35;;26914:77;27017:67;27077:6;27070:5;27017:67;:::i;:::-;27011:4;27004:81;26873:222;26208:887;;26238:618;26290:4;26286:9;26278:6;26274:22;26324:37;26356:4;26324:37;:::i;:::-;26383:1;26397:208;26411:7;26408:1;26405:14;26397:208;;;26490:9;26485:3;26481:19;26475:26;26467:6;26460:42;26541:1;26533:6;26529:14;26519:24;;26588:2;26577:9;26573:18;26560:31;;26434:4;26431:1;26427:12;26422:17;;26397:208;;;26633:6;26624:7;26621:19;26618:179;;;26691:9;26686:3;26682:19;26676:26;26734:48;26776:4;26768:6;26764:17;26753:9;26734:48;:::i;:::-;26726:6;26719:64;26641:156;26618:179;26843:1;26839;26831:6;26827:14;26823:22;26817:4;26810:36;26245:611;;;26208:887;;25798:1303;;;25706:1395;;:::o;27107:221::-;27247:34;27243:1;27235:6;27231:14;27224:58;27316:4;27311:2;27303:6;27299:15;27292:29;27107:221;:::o;27334:366::-;27476:3;27497:67;27561:2;27556:3;27497:67;:::i;:::-;27490:74;;27573:93;27662:3;27573:93;:::i;:::-;27691:2;27686:3;27682:12;27675:19;;27334:366;;;:::o;27706:419::-;27872:4;27910:2;27899:9;27895:18;27887:26;;27959:9;27953:4;27949:20;27945:1;27934:9;27930:17;27923:47;27987:131;28113:4;27987:131;:::i;:::-;27979:139;;27706:419;;;:::o;28131:234::-;28271:34;28267:1;28259:6;28255:14;28248:58;28340:17;28335:2;28327:6;28323:15;28316:42;28131:234;:::o;28371:366::-;28513:3;28534:67;28598:2;28593:3;28534:67;:::i;:::-;28527:74;;28610:93;28699:3;28610:93;:::i;:::-;28728:2;28723:3;28719:12;28712:19;;28371:366;;;:::o;28743:419::-;28909:4;28947:2;28936:9;28932:18;28924:26;;28996:9;28990:4;28986:20;28982:1;28971:9;28967:17;28960:47;29024:131;29150:4;29024:131;:::i;:::-;29016:139;;28743:419;;;:::o;29168:148::-;29270:11;29307:3;29292:18;;29168:148;;;;:::o;29322:377::-;29428:3;29456:39;29489:5;29456:39;:::i;:::-;29511:89;29593:6;29588:3;29511:89;:::i;:::-;29504:96;;29609:52;29654:6;29649:3;29642:4;29635:5;29631:16;29609:52;:::i;:::-;29686:6;29681:3;29677:16;29670:23;;29432:267;29322:377;;;;:::o;29705:155::-;29845:7;29841:1;29833:6;29829:14;29822:31;29705:155;:::o;29866:400::-;30026:3;30047:84;30129:1;30124:3;30047:84;:::i;:::-;30040:91;;30140:93;30229:3;30140:93;:::i;:::-;30258:1;30253:3;30249:11;30242:18;;29866:400;;;:::o;30272:701::-;30553:3;30575:95;30666:3;30657:6;30575:95;:::i;:::-;30568:102;;30687:95;30778:3;30769:6;30687:95;:::i;:::-;30680:102;;30799:148;30943:3;30799:148;:::i;:::-;30792:155;;30964:3;30957:10;;30272:701;;;;;:::o;30979:225::-;31119:34;31115:1;31107:6;31103:14;31096:58;31188:8;31183:2;31175:6;31171:15;31164:33;30979:225;:::o;31210:366::-;31352:3;31373:67;31437:2;31432:3;31373:67;:::i;:::-;31366:74;;31449:93;31538:3;31449:93;:::i;:::-;31567:2;31562:3;31558:12;31551:19;;31210:366;;;:::o;31582:419::-;31748:4;31786:2;31775:9;31771:18;31763:26;;31835:9;31829:4;31825:20;31821:1;31810:9;31806:17;31799:47;31863:131;31989:4;31863:131;:::i;:::-;31855:139;;31582:419;;;:::o;32007:147::-;32108:11;32145:3;32130:18;;32007:147;;;;:::o;32160:114::-;;:::o;32280:398::-;32439:3;32460:83;32541:1;32536:3;32460:83;:::i;:::-;32453:90;;32552:93;32641:3;32552:93;:::i;:::-;32670:1;32665:3;32661:11;32654:18;;32280:398;;;:::o;32684:379::-;32868:3;32890:147;33033:3;32890:147;:::i;:::-;32883:154;;33054:3;33047:10;;32684:379;;;:::o;33069:170::-;33209:22;33205:1;33197:6;33193:14;33186:46;33069:170;:::o;33245:366::-;33387:3;33408:67;33472:2;33467:3;33408:67;:::i;:::-;33401:74;;33484:93;33573:3;33484:93;:::i;:::-;33602:2;33597:3;33593:12;33586:19;;33245:366;;;:::o;33617:419::-;33783:4;33821:2;33810:9;33806:18;33798:26;;33870:9;33864:4;33860:20;33856:1;33845:9;33841:17;33834:47;33898:131;34024:4;33898:131;:::i;:::-;33890:139;;33617:419;;;:::o;34042:98::-;34093:6;34127:5;34121:12;34111:22;;34042:98;;;:::o;34146:168::-;34229:11;34263:6;34258:3;34251:19;34303:4;34298:3;34294:14;34279:29;;34146:168;;;;:::o;34320:360::-;34406:3;34434:38;34466:5;34434:38;:::i;:::-;34488:70;34551:6;34546:3;34488:70;:::i;:::-;34481:77;;34567:52;34612:6;34607:3;34600:4;34593:5;34589:16;34567:52;:::i;:::-;34644:29;34666:6;34644:29;:::i;:::-;34639:3;34635:39;34628:46;;34410:270;34320:360;;;;:::o;34686:640::-;34881:4;34919:3;34908:9;34904:19;34896:27;;34933:71;35001:1;34990:9;34986:17;34977:6;34933:71;:::i;:::-;35014:72;35082:2;35071:9;35067:18;35058:6;35014:72;:::i;:::-;35096;35164:2;35153:9;35149:18;35140:6;35096:72;:::i;:::-;35215:9;35209:4;35205:20;35200:2;35189:9;35185:18;35178:48;35243:76;35314:4;35305:6;35243:76;:::i;:::-;35235:84;;34686:640;;;;;;;:::o;35332:141::-;35388:5;35419:6;35413:13;35404:22;;35435:32;35461:5;35435:32;:::i;:::-;35332:141;;;;:::o;35479:349::-;35548:6;35597:2;35585:9;35576:7;35572:23;35568:32;35565:119;;;35603:79;;:::i;:::-;35565:119;35723:1;35748:63;35803:7;35794:6;35783:9;35779:22;35748:63;:::i;:::-;35738:73;;35694:127;35479:349;;;;:::o;35834:233::-;35873:3;35896:24;35914:5;35896:24;:::i;:::-;35887:33;;35942:66;35935:5;35932:77;35929:103;;36012:18;;:::i;:::-;35929:103;36059:1;36052:5;36048:13;36041:20;;35834:233;;;:::o;36073:180::-;36121:77;36118:1;36111:88;36218:4;36215:1;36208:15;36242:4;36239:1;36232:15;36259:185;36299:1;36316:20;36334:1;36316:20;:::i;:::-;36311:25;;36350:20;36368:1;36350:20;:::i;:::-;36345:25;;36389:1;36379:35;;36394:18;;:::i;:::-;36379:35;36436:1;36433;36429:9;36424:14;;36259:185;;;;:::o;36450:176::-;36482:1;36499:20;36517:1;36499:20;:::i;:::-;36494:25;;36533:20;36551:1;36533:20;:::i;:::-;36528:25;;36572:1;36562:35;;36577:18;;:::i;:::-;36562:35;36618:1;36615;36611:9;36606:14;;36450:176;;;;:::o;36632:180::-;36680:77;36677:1;36670:88;36777:4;36774:1;36767:15;36801:4;36798:1;36791:15
Swarm Source
ipfs://cdc1387e4d14f0a33b1649d8ec3ae12f298073f6a8191ed2ccb6aad5840983d1
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.