ERC-721
Overview
Max Total Supply
5,000 NKEMGOS
Holders
731
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
30 NKEMGOSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Nakenemigos
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-05 */ // SPDX-License-Identifier: MIT // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores 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 via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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](https://eips.ethereum.org/EIPS/eip-2309) 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.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 virtual { 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; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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 ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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); } /** * @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 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)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 virtual { uint256 startTokenId = _currentIndex; 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 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _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 virtual { 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 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 virtual { _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 Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { 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 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 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; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev 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: lib/Constants.sol pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: Nakenemigos.sol pragma solidity ^0.8.13; contract Nakenemigos is ERC721A, DefaultOperatorFilterer, Ownable { uint256 MAX_SUPPLY = 5000; uint256 TOTAL_FREE = 1000; uint256 MAX_MINT_PER_TX = 10; uint256 MAX_MINT_PER_WALLET = 50; uint256 MAX_FREE = 2; uint256 Price = 0.002 ether; bool public Active; string public baseURI; mapping(address => uint) public amountMinted; constructor(string memory _baseUri) ERC721A("Nakenemigos", "NKEMGOS") {baseURI = _baseUri; Active = false;} function Mint(uint256 quantity) external payable { // _safeMint's second argument now takes in a quantity, not a tokenId. //Mint must be active uint256 minted = amountMinted[msg.sender]; require(Active, "Sale is not active"); //Max per tx and per wallet require(quantity <= MAX_MINT_PER_TX, "Exceeded the limit per tx"); require(quantity + minted <= MAX_MINT_PER_WALLET, "Exceeded the max amount of mints"); //Not exceeding supply require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); uint256 pay = quantity; if(totalSupply() <= TOTAL_FREE){ pay = 0; } else if(minted < MAX_FREE){ if(MAX_FREE - minted > quantity){ pay = 0; } else { pay = quantity - (MAX_FREE - minted); } } require(msg.value >= pay * Price, "Not enough ether sent"); _safeMint(msg.sender, quantity); amountMinted[msg.sender] += quantity; } function adjustConfig(uint256 _maxFree, uint256 _mintPrice, uint256 _totalFree) external onlyOwner{ MAX_FREE = _maxFree; Price = _mintPrice * 10**15; TOTAL_FREE = _totalFree; } function devMint(uint256 quantity) external payable onlyOwner { require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); _safeMint(msg.sender, quantity); } function setState() public onlyOwner{ if(Active){ Active = false; }else{ Active = true; } } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function getMintRate() external view returns(uint256){ return Price; } function getMaxFree() external view returns(uint256){ return MAX_FREE; } function getTotalFree() external view returns(uint256){ return TOTAL_FREE; } function setMintRate(uint256 _mintRate) public onlyOwner { Price = _mintRate * 10**15; } function setMaxFree(uint256 _max) public onlyOwner { MAX_FREE = _max; } function setTotalFree(uint256 _total) public onlyOwner { TOTAL_FREE = _total; } function setBaseURI(string calldata _base) public onlyOwner { baseURI = _base; } ///////////////////////////// // OPENSEA FILTER REGISTRY ///////////////////////////// function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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"},{"inputs":[],"name":"Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFree","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_totalFree","type":"uint256"}],"name":"adjustConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"setTotalFree","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526113886009556103e8600a55600a600b556032600c556002600d5566071afd498d0000600e553480156200003757600080fd5b50604051620038003803806200380083398181016040528101906200005d91906200069c565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f4e616b656e656d69676f730000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4e4b454d474f53000000000000000000000000000000000000000000000000008152508160029080519060200190620000f89291906200044f565b508060039080519060200190620001119291906200044f565b50620001226200037c60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200031f578015620001e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ab92919062000732565b600060405180830381600087803b158015620001c657600080fd5b505af1158015620001db573d6000803e3d6000fd5b505050506200031e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200029f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200026592919062000732565b600060405180830381600087803b1580156200028057600080fd5b505af115801562000295573d6000803e3d6000fd5b505050506200031d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e891906200075f565b600060405180830381600087803b1580156200030357600080fd5b505af115801562000318573d6000803e3d6000fd5b505050505b5b5b505062000341620003356200038160201b60201c565b6200038960201b60201c565b8060109080519060200190620003599291906200044f565b506000600f60006101000a81548160ff02191690831515021790555050620007e0565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200045d90620007ab565b90600052602060002090601f016020900481019282620004815760008555620004cd565b82601f106200049c57805160ff1916838001178555620004cd565b82800160010185558215620004cd579182015b82811115620004cc578251825591602001919060010190620004af565b5b509050620004dc9190620004e0565b5090565b5b80821115620004fb576000816000905550600101620004e1565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000568826200051d565b810181811067ffffffffffffffff821117156200058a57620005896200052e565b5b80604052505050565b60006200059f620004ff565b9050620005ad82826200055d565b919050565b600067ffffffffffffffff821115620005d057620005cf6200052e565b5b620005db826200051d565b9050602081019050919050565b60005b8381101562000608578082015181840152602081019050620005eb565b8381111562000618576000848401525b50505050565b6000620006356200062f84620005b2565b62000593565b90508281526020810184848401111562000654576200065362000518565b5b62000661848285620005e8565b509392505050565b600082601f83011262000681576200068062000513565b5b8151620006938482602086016200061e565b91505092915050565b600060208284031215620006b557620006b462000509565b5b600082015167ffffffffffffffff811115620006d657620006d56200050e565b5b620006e48482850162000669565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200071a82620006ed565b9050919050565b6200072c816200070d565b82525050565b600060408201905062000749600083018562000721565b62000758602083018462000721565b9392505050565b600060208201905062000776600083018462000721565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c457607f821691505b602082108103620007da57620007d96200077c565b5b50919050565b61301080620007f06000396000f3fe6080604052600436106101ee5760003560e01c8063563aaf111161010d57806396f0bd61116100a0578063c9b0a2a71161006f578063c9b0a2a714610668578063d755bf9914610693578063dbe2193f146106bc578063e985e9c5146106e5578063f2fde38b14610722576101ee565b806396f0bd61146105bb578063a22cb465146105e6578063b88d4fde1461060f578063c87b56dd1461062b576101ee565b806370a08231116100dc57806370a0823114610511578063715018a61461054e5780638da5cb5b1461056557806395d89b4114610590576101ee565b8063563aaf11146104575780636352211e14610480578063657e818c146104bd5780636c0360eb146104e6576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103aa578063438a67e7146103c657806347aa9a5b1461040357806355f804b31461042e576101ee565b806323b872dd1461033d578063375a069a146103595780633ccfd60b1461037557806341f434341461037f576101ee565b8063095ea7b3116101c1578063095ea7b3146102b45780631203402f146102d057806315ef3061146102e757806318160ddd14610312576101ee565b806301ffc9a7146101f357806306fdde0314610230578063078837031461025b578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906122ce565b61074b565b6040516102279190612316565b60405180910390f35b34801561023c57600080fd5b506102456107dd565b60405161025291906123ca565b60405180910390f35b61027560048036038101906102709190612422565b61086f565b005b34801561028357600080fd5b5061029e60048036038101906102999190612422565b610b07565b6040516102ab9190612490565b60405180910390f35b6102ce60048036038101906102c991906124d7565b610b86565b005b3480156102dc57600080fd5b506102e5610b9f565b005b3480156102f357600080fd5b506102fc610bfa565b6040516103099190612526565b60405180910390f35b34801561031e57600080fd5b50610327610c04565b6040516103349190612526565b60405180910390f35b61035760048036038101906103529190612541565b610c1b565b005b610373600480360381019061036e9190612422565b610c6a565b005b61037d610cd6565b005b34801561038b57600080fd5b50610394610d2e565b6040516103a191906125f3565b60405180910390f35b6103c460048036038101906103bf9190612541565b610d40565b005b3480156103d257600080fd5b506103ed60048036038101906103e8919061260e565b610d8f565b6040516103fa9190612526565b60405180910390f35b34801561040f57600080fd5b50610418610da7565b6040516104259190612526565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906126a0565b610db1565b005b34801561046357600080fd5b5061047e60048036038101906104799190612422565b610dcf565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612422565b610de1565b6040516104b49190612490565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906126ed565b610df3565b005b3480156104f257600080fd5b506104fb610e27565b60405161050891906123ca565b60405180910390f35b34801561051d57600080fd5b506105386004803603810190610533919061260e565b610eb5565b6040516105459190612526565b60405180910390f35b34801561055a57600080fd5b50610563610f6d565b005b34801561057157600080fd5b5061057a610f81565b6040516105879190612490565b60405180910390f35b34801561059c57600080fd5b506105a5610fab565b6040516105b291906123ca565b60405180910390f35b3480156105c757600080fd5b506105d061103d565b6040516105dd9190612526565b60405180910390f35b3480156105f257600080fd5b5061060d6004803603810190610608919061276c565b611047565b005b610629600480360381019061062491906128dc565b611060565b005b34801561063757600080fd5b50610652600480360381019061064d9190612422565b6110b1565b60405161065f91906123ca565b60405180910390f35b34801561067457600080fd5b5061067d61114f565b60405161068a9190612316565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190612422565b611162565b005b3480156106c857600080fd5b506106e360048036038101906106de9190612422565b611174565b005b3480156106f157600080fd5b5061070c6004803603810190610707919061295f565b611198565b6040516107199190612316565b60405180910390f35b34801561072e57600080fd5b506107496004803603810190610744919061260e565b61122c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ec906129ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610818906129ce565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff16610902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f990612a4b565b60405180910390fd5b600b54821115610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612ab7565b60405180910390fd5b600c5481836109569190612b06565b1115610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612ba8565b60405180910390fd5b600954826109a3610c04565b6109ad9190612b06565b11156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590612c14565b60405180910390fd5b6000829050600a546109fe610c04565b11610a0c5760009050610a52565b600d54821015610a51578282600d54610a259190612c34565b1115610a345760009050610a50565b81600d54610a429190612c34565b83610a4d9190612c34565b90505b5b5b600e5481610a609190612c68565b341015610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990612d0e565b60405180910390fd5b610aac33846112af565b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610afb9190612b06565b92505081905550505050565b6000610b12826112cd565b610b48576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b908161132c565b610b9a8383611429565b505050565b610ba761156d565b600f60009054906101000a900460ff1615610bdc576000600f60006101000a81548160ff021916908315150217905550610bf8565b6001600f60006101000a81548160ff0219169083151502179055505b565b6000600d54905090565b6000610c0e6115eb565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5957610c583361132c565b5b610c648484846115f0565b50505050565b610c7261156d565b60095481610c7e610c04565b610c889190612b06565b1115610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090612c14565b60405180910390fd5b610cd333826112af565b50565b610cde61156d565b610ce6610f81565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d7e57610d7d3361132c565b5b610d89848484611912565b50505050565b60116020528060005260406000206000915090505481565b6000600a54905090565b610db961156d565b818160109190610dca9291906121bf565b505050565b610dd761156d565b80600a8190555050565b6000610dec82611932565b9050919050565b610dfb61156d565b82600d8190555066038d7ea4c6800082610e159190612c68565b600e8190555080600a81905550505050565b60108054610e34906129ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610e60906129ce565b8015610ead5780601f10610e8257610100808354040283529160200191610ead565b820191906000526020600020905b815481529060010190602001808311610e9057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f1c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7561156d565b610f7f60006119fe565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fba906129ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe6906129ce565b80156110335780601f1061100857610100808354040283529160200191611033565b820191906000526020600020905b81548152906001019060200180831161101657829003601f168201915b5050505050905090565b6000600e54905090565b816110518161132c565b61105b8383611ac4565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461109e5761109d3361132c565b5b6110aa85858585611bcf565b5050505050565b60606110bc826112cd565b6110f2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110fc611c42565b9050600081510361111c5760405180602001604052806000815250611147565b8061112684611cd4565b604051602001611137929190612d6a565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b61116a61156d565b80600d8190555050565b61117c61156d565b66038d7ea4c680008161118f9190612c68565b600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61123461156d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612e00565b60405180910390fd5b6112ac816119fe565b50565b6112c9828260405180602001604052806000815250611d24565b5050565b6000816112d86115eb565b111580156112e7575060005482105b8015611325575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611426576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016113a3929190612e20565b602060405180830381865afa1580156113c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e49190612e5e565b61142557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161141c9190612490565b60405180910390fd5b5b50565b600061143482610de1565b90508073ffffffffffffffffffffffffffffffffffffffff16611455611dc1565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576114818161147c611dc1565b611198565b6114b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611575611dc9565b73ffffffffffffffffffffffffffffffffffffffff16611593610f81565b73ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090612ed7565b60405180910390fd5b565b600090565b60006115fb82611932565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611662576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061166e84611dd1565b91509150611684818761167f611dc1565b611df8565b6116d05761169986611694611dc1565b611198565b6116cf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611736576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117438686866001611e3c565b801561174e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061181c856117f8888887611e42565b7c020000000000000000000000000000000000000000000000000000000017611e6a565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118a257600060018501905060006004600083815260200190815260200160002054036118a057600054811461189f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461190a8686866001611e95565b505050505050565b61192d83838360405180602001604052806000815250611060565b505050565b600080829050806119416115eb565b116119c7576000548110156119c65760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036119c4575b600081036119ba576004600083600190039350838152602001908152602001600020549050611990565b80925050506119f9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611ad1611dc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b7e611dc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bc39190612316565b60405180910390a35050565b611bda848484610c1b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c3c57611c0584848484611e9b565b611c3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060108054611c51906129ce565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7d906129ce565b8015611cca5780601f10611c9f57610100808354040283529160200191611cca565b820191906000526020600020905b815481529060010190602001808311611cad57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d0f57600184039350600a81066030018453600a8104905080611ced575b50828103602084039350808452505050919050565b611d2e8383611feb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dbc57600080549050600083820390505b611d6e6000868380600101945086611e9b565b611da4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d5b578160005414611db957600080fd5b50505b505050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e598686846121a6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec1611dc1565b8786866040518563ffffffff1660e01b8152600401611ee39493929190612f4c565b6020604051808303816000875af1925050508015611f1f57506040513d601f19601f82011682018060405250810190611f1c9190612fad565b60015b611f98573d8060008114611f4f576040519150601f19603f3d011682016040523d82523d6000602084013e611f54565b606091505b506000815103611f90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000820361202b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120386000848385611e3c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120af836120a06000866000611e42565b6120a9856121af565b17611e6a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461215057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612115565b506000820361218b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121a16000848385611e95565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546121cb906129ce565b90600052602060002090601f0160209004810192826121ed5760008555612234565b82601f1061220657803560ff1916838001178555612234565b82800160010185558215612234579182015b82811115612233578235825591602001919060010190612218565b5b5090506122419190612245565b5090565b5b8082111561225e576000816000905550600101612246565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122ab81612276565b81146122b657600080fd5b50565b6000813590506122c8816122a2565b92915050565b6000602082840312156122e4576122e361226c565b5b60006122f2848285016122b9565b91505092915050565b60008115159050919050565b612310816122fb565b82525050565b600060208201905061232b6000830184612307565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561236b578082015181840152602081019050612350565b8381111561237a576000848401525b50505050565b6000601f19601f8301169050919050565b600061239c82612331565b6123a6818561233c565b93506123b681856020860161234d565b6123bf81612380565b840191505092915050565b600060208201905081810360008301526123e48184612391565b905092915050565b6000819050919050565b6123ff816123ec565b811461240a57600080fd5b50565b60008135905061241c816123f6565b92915050565b6000602082840312156124385761243761226c565b5b60006124468482850161240d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061247a8261244f565b9050919050565b61248a8161246f565b82525050565b60006020820190506124a56000830184612481565b92915050565b6124b48161246f565b81146124bf57600080fd5b50565b6000813590506124d1816124ab565b92915050565b600080604083850312156124ee576124ed61226c565b5b60006124fc858286016124c2565b925050602061250d8582860161240d565b9150509250929050565b612520816123ec565b82525050565b600060208201905061253b6000830184612517565b92915050565b60008060006060848603121561255a5761255961226c565b5b6000612568868287016124c2565b9350506020612579868287016124c2565b925050604061258a8682870161240d565b9150509250925092565b6000819050919050565b60006125b96125b46125af8461244f565b612594565b61244f565b9050919050565b60006125cb8261259e565b9050919050565b60006125dd826125c0565b9050919050565b6125ed816125d2565b82525050565b600060208201905061260860008301846125e4565b92915050565b6000602082840312156126245761262361226c565b5b6000612632848285016124c2565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126126605761265f61263b565b5b8235905067ffffffffffffffff81111561267d5761267c612640565b5b60208301915083600182028301111561269957612698612645565b5b9250929050565b600080602083850312156126b7576126b661226c565b5b600083013567ffffffffffffffff8111156126d5576126d4612271565b5b6126e18582860161264a565b92509250509250929050565b6000806000606084860312156127065761270561226c565b5b60006127148682870161240d565b93505060206127258682870161240d565b92505060406127368682870161240d565b9150509250925092565b612749816122fb565b811461275457600080fd5b50565b60008135905061276681612740565b92915050565b600080604083850312156127835761278261226c565b5b6000612791858286016124c2565b92505060206127a285828601612757565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127e982612380565b810181811067ffffffffffffffff82111715612808576128076127b1565b5b80604052505050565b600061281b612262565b905061282782826127e0565b919050565b600067ffffffffffffffff821115612847576128466127b1565b5b61285082612380565b9050602081019050919050565b82818337600083830152505050565b600061287f61287a8461282c565b612811565b90508281526020810184848401111561289b5761289a6127ac565b5b6128a684828561285d565b509392505050565b600082601f8301126128c3576128c261263b565b5b81356128d384826020860161286c565b91505092915050565b600080600080608085870312156128f6576128f561226c565b5b6000612904878288016124c2565b9450506020612915878288016124c2565b93505060406129268782880161240d565b925050606085013567ffffffffffffffff81111561294757612946612271565b5b612953878288016128ae565b91505092959194509250565b600080604083850312156129765761297561226c565b5b6000612984858286016124c2565b9250506020612995858286016124c2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129e657607f821691505b6020821081036129f9576129f861299f565b5b50919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612a3560128361233c565b9150612a40826129ff565b602082019050919050565b60006020820190508181036000830152612a6481612a28565b9050919050565b7f457863656564656420746865206c696d69742070657220747800000000000000600082015250565b6000612aa160198361233c565b9150612aac82612a6b565b602082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b11826123ec565b9150612b1c836123ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5157612b50612ad7565b5b828201905092915050565b7f457863656564656420746865206d617820616d6f756e74206f66206d696e7473600082015250565b6000612b9260208361233c565b9150612b9d82612b5c565b602082019050919050565b60006020820190508181036000830152612bc181612b85565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000612bfe60168361233c565b9150612c0982612bc8565b602082019050919050565b60006020820190508181036000830152612c2d81612bf1565b9050919050565b6000612c3f826123ec565b9150612c4a836123ec565b925082821015612c5d57612c5c612ad7565b5b828203905092915050565b6000612c73826123ec565b9150612c7e836123ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cb757612cb6612ad7565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612cf860158361233c565b9150612d0382612cc2565b602082019050919050565b60006020820190508181036000830152612d2781612ceb565b9050919050565b600081905092915050565b6000612d4482612331565b612d4e8185612d2e565b9350612d5e81856020860161234d565b80840191505092915050565b6000612d768285612d39565b9150612d828284612d39565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dea60268361233c565b9150612df582612d8e565b604082019050919050565b60006020820190508181036000830152612e1981612ddd565b9050919050565b6000604082019050612e356000830185612481565b612e426020830184612481565b9392505050565b600081519050612e5881612740565b92915050565b600060208284031215612e7457612e7361226c565b5b6000612e8284828501612e49565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ec160208361233c565b9150612ecc82612e8b565b602082019050919050565b60006020820190508181036000830152612ef081612eb4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f1e82612ef7565b612f288185612f02565b9350612f3881856020860161234d565b612f4181612380565b840191505092915050565b6000608082019050612f616000830187612481565b612f6e6020830186612481565b612f7b6040830185612517565b8181036060830152612f8d8184612f13565b905095945050505050565b600081519050612fa7816122a2565b92915050565b600060208284031215612fc357612fc261226c565b5b6000612fd184828501612f98565b9150509291505056fea26469706673582212204fafa4e56d1d5a3a10f1e6cfb740142478b5aaa6a457fc5ed28c13ab1539b40e64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55786a7a466865444a484c3573644c75426931396b47644361754457636d334c425a32485833586e7a7472532f00000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063563aaf111161010d57806396f0bd61116100a0578063c9b0a2a71161006f578063c9b0a2a714610668578063d755bf9914610693578063dbe2193f146106bc578063e985e9c5146106e5578063f2fde38b14610722576101ee565b806396f0bd61146105bb578063a22cb465146105e6578063b88d4fde1461060f578063c87b56dd1461062b576101ee565b806370a08231116100dc57806370a0823114610511578063715018a61461054e5780638da5cb5b1461056557806395d89b4114610590576101ee565b8063563aaf11146104575780636352211e14610480578063657e818c146104bd5780636c0360eb146104e6576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103aa578063438a67e7146103c657806347aa9a5b1461040357806355f804b31461042e576101ee565b806323b872dd1461033d578063375a069a146103595780633ccfd60b1461037557806341f434341461037f576101ee565b8063095ea7b3116101c1578063095ea7b3146102b45780631203402f146102d057806315ef3061146102e757806318160ddd14610312576101ee565b806301ffc9a7146101f357806306fdde0314610230578063078837031461025b578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906122ce565b61074b565b6040516102279190612316565b60405180910390f35b34801561023c57600080fd5b506102456107dd565b60405161025291906123ca565b60405180910390f35b61027560048036038101906102709190612422565b61086f565b005b34801561028357600080fd5b5061029e60048036038101906102999190612422565b610b07565b6040516102ab9190612490565b60405180910390f35b6102ce60048036038101906102c991906124d7565b610b86565b005b3480156102dc57600080fd5b506102e5610b9f565b005b3480156102f357600080fd5b506102fc610bfa565b6040516103099190612526565b60405180910390f35b34801561031e57600080fd5b50610327610c04565b6040516103349190612526565b60405180910390f35b61035760048036038101906103529190612541565b610c1b565b005b610373600480360381019061036e9190612422565b610c6a565b005b61037d610cd6565b005b34801561038b57600080fd5b50610394610d2e565b6040516103a191906125f3565b60405180910390f35b6103c460048036038101906103bf9190612541565b610d40565b005b3480156103d257600080fd5b506103ed60048036038101906103e8919061260e565b610d8f565b6040516103fa9190612526565b60405180910390f35b34801561040f57600080fd5b50610418610da7565b6040516104259190612526565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906126a0565b610db1565b005b34801561046357600080fd5b5061047e60048036038101906104799190612422565b610dcf565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612422565b610de1565b6040516104b49190612490565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906126ed565b610df3565b005b3480156104f257600080fd5b506104fb610e27565b60405161050891906123ca565b60405180910390f35b34801561051d57600080fd5b506105386004803603810190610533919061260e565b610eb5565b6040516105459190612526565b60405180910390f35b34801561055a57600080fd5b50610563610f6d565b005b34801561057157600080fd5b5061057a610f81565b6040516105879190612490565b60405180910390f35b34801561059c57600080fd5b506105a5610fab565b6040516105b291906123ca565b60405180910390f35b3480156105c757600080fd5b506105d061103d565b6040516105dd9190612526565b60405180910390f35b3480156105f257600080fd5b5061060d6004803603810190610608919061276c565b611047565b005b610629600480360381019061062491906128dc565b611060565b005b34801561063757600080fd5b50610652600480360381019061064d9190612422565b6110b1565b60405161065f91906123ca565b60405180910390f35b34801561067457600080fd5b5061067d61114f565b60405161068a9190612316565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190612422565b611162565b005b3480156106c857600080fd5b506106e360048036038101906106de9190612422565b611174565b005b3480156106f157600080fd5b5061070c6004803603810190610707919061295f565b611198565b6040516107199190612316565b60405180910390f35b34801561072e57600080fd5b506107496004803603810190610744919061260e565b61122c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ec906129ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610818906129ce565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff16610902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f990612a4b565b60405180910390fd5b600b54821115610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612ab7565b60405180910390fd5b600c5481836109569190612b06565b1115610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612ba8565b60405180910390fd5b600954826109a3610c04565b6109ad9190612b06565b11156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590612c14565b60405180910390fd5b6000829050600a546109fe610c04565b11610a0c5760009050610a52565b600d54821015610a51578282600d54610a259190612c34565b1115610a345760009050610a50565b81600d54610a429190612c34565b83610a4d9190612c34565b90505b5b5b600e5481610a609190612c68565b341015610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990612d0e565b60405180910390fd5b610aac33846112af565b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610afb9190612b06565b92505081905550505050565b6000610b12826112cd565b610b48576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b908161132c565b610b9a8383611429565b505050565b610ba761156d565b600f60009054906101000a900460ff1615610bdc576000600f60006101000a81548160ff021916908315150217905550610bf8565b6001600f60006101000a81548160ff0219169083151502179055505b565b6000600d54905090565b6000610c0e6115eb565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5957610c583361132c565b5b610c648484846115f0565b50505050565b610c7261156d565b60095481610c7e610c04565b610c889190612b06565b1115610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090612c14565b60405180910390fd5b610cd333826112af565b50565b610cde61156d565b610ce6610f81565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d7e57610d7d3361132c565b5b610d89848484611912565b50505050565b60116020528060005260406000206000915090505481565b6000600a54905090565b610db961156d565b818160109190610dca9291906121bf565b505050565b610dd761156d565b80600a8190555050565b6000610dec82611932565b9050919050565b610dfb61156d565b82600d8190555066038d7ea4c6800082610e159190612c68565b600e8190555080600a81905550505050565b60108054610e34906129ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610e60906129ce565b8015610ead5780601f10610e8257610100808354040283529160200191610ead565b820191906000526020600020905b815481529060010190602001808311610e9057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f1c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7561156d565b610f7f60006119fe565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fba906129ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe6906129ce565b80156110335780601f1061100857610100808354040283529160200191611033565b820191906000526020600020905b81548152906001019060200180831161101657829003601f168201915b5050505050905090565b6000600e54905090565b816110518161132c565b61105b8383611ac4565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461109e5761109d3361132c565b5b6110aa85858585611bcf565b5050505050565b60606110bc826112cd565b6110f2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110fc611c42565b9050600081510361111c5760405180602001604052806000815250611147565b8061112684611cd4565b604051602001611137929190612d6a565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b61116a61156d565b80600d8190555050565b61117c61156d565b66038d7ea4c680008161118f9190612c68565b600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61123461156d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612e00565b60405180910390fd5b6112ac816119fe565b50565b6112c9828260405180602001604052806000815250611d24565b5050565b6000816112d86115eb565b111580156112e7575060005482105b8015611325575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611426576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016113a3929190612e20565b602060405180830381865afa1580156113c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e49190612e5e565b61142557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161141c9190612490565b60405180910390fd5b5b50565b600061143482610de1565b90508073ffffffffffffffffffffffffffffffffffffffff16611455611dc1565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576114818161147c611dc1565b611198565b6114b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611575611dc9565b73ffffffffffffffffffffffffffffffffffffffff16611593610f81565b73ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090612ed7565b60405180910390fd5b565b600090565b60006115fb82611932565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611662576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061166e84611dd1565b91509150611684818761167f611dc1565b611df8565b6116d05761169986611694611dc1565b611198565b6116cf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611736576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117438686866001611e3c565b801561174e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061181c856117f8888887611e42565b7c020000000000000000000000000000000000000000000000000000000017611e6a565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118a257600060018501905060006004600083815260200190815260200160002054036118a057600054811461189f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461190a8686866001611e95565b505050505050565b61192d83838360405180602001604052806000815250611060565b505050565b600080829050806119416115eb565b116119c7576000548110156119c65760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036119c4575b600081036119ba576004600083600190039350838152602001908152602001600020549050611990565b80925050506119f9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611ad1611dc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b7e611dc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bc39190612316565b60405180910390a35050565b611bda848484610c1b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c3c57611c0584848484611e9b565b611c3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060108054611c51906129ce565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7d906129ce565b8015611cca5780601f10611c9f57610100808354040283529160200191611cca565b820191906000526020600020905b815481529060010190602001808311611cad57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d0f57600184039350600a81066030018453600a8104905080611ced575b50828103602084039350808452505050919050565b611d2e8383611feb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dbc57600080549050600083820390505b611d6e6000868380600101945086611e9b565b611da4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d5b578160005414611db957600080fd5b50505b505050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e598686846121a6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec1611dc1565b8786866040518563ffffffff1660e01b8152600401611ee39493929190612f4c565b6020604051808303816000875af1925050508015611f1f57506040513d601f19601f82011682018060405250810190611f1c9190612fad565b60015b611f98573d8060008114611f4f576040519150601f19603f3d011682016040523d82523d6000602084013e611f54565b606091505b506000815103611f90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000820361202b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120386000848385611e3c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120af836120a06000866000611e42565b6120a9856121af565b17611e6a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461215057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612115565b506000820361218b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121a16000848385611e95565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546121cb906129ce565b90600052602060002090601f0160209004810192826121ed5760008555612234565b82601f1061220657803560ff1916838001178555612234565b82800160010185558215612234579182015b82811115612233578235825591602001919060010190612218565b5b5090506122419190612245565b5090565b5b8082111561225e576000816000905550600101612246565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122ab81612276565b81146122b657600080fd5b50565b6000813590506122c8816122a2565b92915050565b6000602082840312156122e4576122e361226c565b5b60006122f2848285016122b9565b91505092915050565b60008115159050919050565b612310816122fb565b82525050565b600060208201905061232b6000830184612307565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561236b578082015181840152602081019050612350565b8381111561237a576000848401525b50505050565b6000601f19601f8301169050919050565b600061239c82612331565b6123a6818561233c565b93506123b681856020860161234d565b6123bf81612380565b840191505092915050565b600060208201905081810360008301526123e48184612391565b905092915050565b6000819050919050565b6123ff816123ec565b811461240a57600080fd5b50565b60008135905061241c816123f6565b92915050565b6000602082840312156124385761243761226c565b5b60006124468482850161240d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061247a8261244f565b9050919050565b61248a8161246f565b82525050565b60006020820190506124a56000830184612481565b92915050565b6124b48161246f565b81146124bf57600080fd5b50565b6000813590506124d1816124ab565b92915050565b600080604083850312156124ee576124ed61226c565b5b60006124fc858286016124c2565b925050602061250d8582860161240d565b9150509250929050565b612520816123ec565b82525050565b600060208201905061253b6000830184612517565b92915050565b60008060006060848603121561255a5761255961226c565b5b6000612568868287016124c2565b9350506020612579868287016124c2565b925050604061258a8682870161240d565b9150509250925092565b6000819050919050565b60006125b96125b46125af8461244f565b612594565b61244f565b9050919050565b60006125cb8261259e565b9050919050565b60006125dd826125c0565b9050919050565b6125ed816125d2565b82525050565b600060208201905061260860008301846125e4565b92915050565b6000602082840312156126245761262361226c565b5b6000612632848285016124c2565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126126605761265f61263b565b5b8235905067ffffffffffffffff81111561267d5761267c612640565b5b60208301915083600182028301111561269957612698612645565b5b9250929050565b600080602083850312156126b7576126b661226c565b5b600083013567ffffffffffffffff8111156126d5576126d4612271565b5b6126e18582860161264a565b92509250509250929050565b6000806000606084860312156127065761270561226c565b5b60006127148682870161240d565b93505060206127258682870161240d565b92505060406127368682870161240d565b9150509250925092565b612749816122fb565b811461275457600080fd5b50565b60008135905061276681612740565b92915050565b600080604083850312156127835761278261226c565b5b6000612791858286016124c2565b92505060206127a285828601612757565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127e982612380565b810181811067ffffffffffffffff82111715612808576128076127b1565b5b80604052505050565b600061281b612262565b905061282782826127e0565b919050565b600067ffffffffffffffff821115612847576128466127b1565b5b61285082612380565b9050602081019050919050565b82818337600083830152505050565b600061287f61287a8461282c565b612811565b90508281526020810184848401111561289b5761289a6127ac565b5b6128a684828561285d565b509392505050565b600082601f8301126128c3576128c261263b565b5b81356128d384826020860161286c565b91505092915050565b600080600080608085870312156128f6576128f561226c565b5b6000612904878288016124c2565b9450506020612915878288016124c2565b93505060406129268782880161240d565b925050606085013567ffffffffffffffff81111561294757612946612271565b5b612953878288016128ae565b91505092959194509250565b600080604083850312156129765761297561226c565b5b6000612984858286016124c2565b9250506020612995858286016124c2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129e657607f821691505b6020821081036129f9576129f861299f565b5b50919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612a3560128361233c565b9150612a40826129ff565b602082019050919050565b60006020820190508181036000830152612a6481612a28565b9050919050565b7f457863656564656420746865206c696d69742070657220747800000000000000600082015250565b6000612aa160198361233c565b9150612aac82612a6b565b602082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b11826123ec565b9150612b1c836123ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5157612b50612ad7565b5b828201905092915050565b7f457863656564656420746865206d617820616d6f756e74206f66206d696e7473600082015250565b6000612b9260208361233c565b9150612b9d82612b5c565b602082019050919050565b60006020820190508181036000830152612bc181612b85565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000612bfe60168361233c565b9150612c0982612bc8565b602082019050919050565b60006020820190508181036000830152612c2d81612bf1565b9050919050565b6000612c3f826123ec565b9150612c4a836123ec565b925082821015612c5d57612c5c612ad7565b5b828203905092915050565b6000612c73826123ec565b9150612c7e836123ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cb757612cb6612ad7565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612cf860158361233c565b9150612d0382612cc2565b602082019050919050565b60006020820190508181036000830152612d2781612ceb565b9050919050565b600081905092915050565b6000612d4482612331565b612d4e8185612d2e565b9350612d5e81856020860161234d565b80840191505092915050565b6000612d768285612d39565b9150612d828284612d39565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dea60268361233c565b9150612df582612d8e565b604082019050919050565b60006020820190508181036000830152612e1981612ddd565b9050919050565b6000604082019050612e356000830185612481565b612e426020830184612481565b9392505050565b600081519050612e5881612740565b92915050565b600060208284031215612e7457612e7361226c565b5b6000612e8284828501612e49565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ec160208361233c565b9150612ecc82612e8b565b602082019050919050565b60006020820190508181036000830152612ef081612eb4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f1e82612ef7565b612f288185612f02565b9350612f3881856020860161234d565b612f4181612380565b840191505092915050565b6000608082019050612f616000830187612481565b612f6e6020830186612481565b612f7b6040830185612517565b8181036060830152612f8d8184612f13565b905095945050505050565b600081519050612fa7816122a2565b92915050565b600060208284031215612fc357612fc261226c565b5b6000612fd184828501612f98565b9150509291505056fea26469706673582212204fafa4e56d1d5a3a10f1e6cfb740142478b5aaa6a457fc5ed28c13ab1539b40e64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55786a7a466865444a484c3573644c75426931396b47644361754457636d334c425a32485833586e7a7472532f00000000000000000000
-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://QmUxjzFheDJHL5sdLuBi19kGdCauDWcm3LBZ2HX3XnztrS/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d55786a7a466865444a484c3573644c75426931396b4764
Arg [3] : 4361754457636d334c425a32485833586e7a7472532f00000000000000000000
Deployed Bytecode Sourcemap
75670:4275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18439:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19341:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76187:1135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25832:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79158:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77768:149;;;;;;;;;;;;;:::i;:::-;;78255:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15092:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79331:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77562:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77931:116;;;:::i;:::-;;72272:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79510:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76005:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78347:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78759:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78660:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20734:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77342:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75973:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16276:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63807:103;;;;;;;;;;;;;:::i;:::-;;63159:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19517:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78165:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78974:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79697:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19727:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75948:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78569:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78451:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26781:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64065:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18439:639;18524:4;18863:10;18848:25;;:11;:25;;;;:102;;;;18940:10;18925:25;;:11;:25;;;;18848:102;:179;;;;19017:10;19002:25;;:11;:25;;;;18848:179;18828:199;;18439:639;;;:::o;19341:100::-;19395:13;19428:5;19421:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19341:100;:::o;76187:1135::-;76358:14;76375:12;:24;76388:10;76375:24;;;;;;;;;;;;;;;;76358:41;;76418:6;;;;;;;;;;;76410:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;76519:15;;76507:8;:27;;76499:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;76604:19;;76594:6;76583:8;:17;;;;:::i;:::-;:40;;76575:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;76741:10;;76729:8;76713:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;76705:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;76809:11;76823:8;76809:22;;76862:10;;76845:13;:11;:13::i;:::-;:27;76842:293;;76894:1;76888:7;;76842:293;;;76936:8;;76927:6;:17;76924:211;;;76983:8;76974:6;76963:8;;:17;;;;:::i;:::-;:28;76960:164;;;77017:1;77011:7;;76960:164;;;77101:6;77090:8;;:17;;;;:::i;:::-;77078:8;:30;;;;:::i;:::-;77072:36;;76960:164;76924:211;76842:293;77174:5;;77168:3;:11;;;;:::i;:::-;77155:9;:24;;77147:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;77218:31;77228:10;77240:8;77218:9;:31::i;:::-;77288:8;77260:12;:24;77273:10;77260:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;76236:1086;;76187:1135;:::o;25832:218::-;25908:7;25933:16;25941:7;25933;:16::i;:::-;25928:64;;25958:34;;;;;;;;;;;;;;25928:64;26012:15;:24;26028:7;26012:24;;;;;;;;;;;:30;;;;;;;;;;;;26005:37;;25832:218;;;:::o;79158:165::-;79262:8;74054:30;74075:8;74054:20;:30::i;:::-;79283:32:::1;79297:8;79307:7;79283:13;:32::i;:::-;79158:165:::0;;;:::o;77768:149::-;63045:13;:11;:13::i;:::-;77818:6:::1;;;;;;;;;;;77815:95;;;77849:5;77840:6;;:14;;;;;;;;;;;;;;;;;;77815:95;;;77894:4;77885:6;;:13;;;;;;;;;;;;;;;;;;77815:95;77768:149::o:0;78255:86::-;78299:7;78325:8;;78318:15;;78255:86;:::o;15092:323::-;15153:7;15381:15;:13;:15::i;:::-;15366:12;;15350:13;;:28;:46;15343:53;;15092:323;:::o;79331:171::-;79440:4;73788:10;73780:18;;:4;:18;;;73776:83;;73815:32;73836:10;73815:20;:32::i;:::-;73776:83;79457:37:::1;79476:4;79482:2;79486:7;79457:18;:37::i;:::-;79331:171:::0;;;;:::o;77562:196::-;63045:13;:11;:13::i;:::-;77671:10:::1;;77659:8;77643:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;77635:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;77719:31;77729:10;77741:8;77719:9;:31::i;:::-;77562:196:::0;:::o;77931:116::-;63045:13;:11;:13::i;:::-;77999:7:::1;:5;:7::i;:::-;77991:25;;:48;78017:21;77991:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77931:116::o:0;72272:143::-;64746:42;72272:143;:::o;79510:179::-;79623:4;73788:10;73780:18;;:4;:18;;;73776:83;;73815:32;73836:10;73815:20;:32::i;:::-;73776:83;79640:41:::1;79663:4;79669:2;79673:7;79640:22;:41::i;:::-;79510:179:::0;;;;:::o;76005:44::-;;;;;;;;;;;;;;;;;:::o;78347:90::-;78393:7;78419:10;;78412:17;;78347:90;:::o;78759:94::-;63045:13;:11;:13::i;:::-;78840:5:::1;;78830:7;:15;;;;;;;:::i;:::-;;78759:94:::0;;:::o;78660:93::-;63045:13;:11;:13::i;:::-;78739:6:::1;78726:10;:19;;;;78660:93:::0;:::o;20734:152::-;20806:7;20849:27;20868:7;20849:18;:27::i;:::-;20826:52;;20734:152;;;:::o;77342:210::-;63045:13;:11;:13::i;:::-;77462:8:::1;77451;:19;;;;77502:6;77489:10;:19;;;;:::i;:::-;77481:5;:27;;;;77532:10;77519;:23;;;;77342:210:::0;;;:::o;75973:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16276:233::-;16348:7;16389:1;16372:19;;:5;:19;;;16368:60;;16400:28;;;;;;;;;;;;;;16368:60;10435:13;16446:18;:25;16465:5;16446:25;;;;;;;;;;;;;;;;:55;16439:62;;16276:233;;;:::o;63807:103::-;63045:13;:11;:13::i;:::-;63872:30:::1;63899:1;63872:18;:30::i;:::-;63807:103::o:0;63159:87::-;63205:7;63232:6;;;;;;;;;;;63225:13;;63159:87;:::o;19517:104::-;19573:13;19606:7;19599:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19517:104;:::o;78165:84::-;78210:7;78236:5;;78229:12;;78165:84;:::o;78974:176::-;79078:8;74054:30;74075:8;74054:20;:30::i;:::-;79099:43:::1;79123:8;79133;79099:23;:43::i;:::-;78974:176:::0;;;:::o;79697:245::-;79865:4;73788:10;73780:18;;:4;:18;;;73776:83;;73815:32;73836:10;73815:20;:32::i;:::-;73776:83;79887:47:::1;79910:4;79916:2;79920:7;79929:4;79887:22;:47::i;:::-;79697:245:::0;;;;;:::o;19727:318::-;19800:13;19831:16;19839:7;19831;:16::i;:::-;19826:59;;19856:29;;;;;;;;;;;;;;19826:59;19898:21;19922:10;:8;:10::i;:::-;19898:34;;19975:1;19956:7;19950:21;:26;:87;;;;;;;;;;;;;;;;;20003:7;20012:18;20022:7;20012:9;:18::i;:::-;19986:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19950:87;19943:94;;;19727:318;;;:::o;75948:18::-;;;;;;;;;;;;;:::o;78569:85::-;63045:13;:11;:13::i;:::-;78642:4:::1;78631:8;:15;;;;78569:85:::0;:::o;78451:112::-;63045:13;:11;:13::i;:::-;78549:6:::1;78537:9;:18;;;;:::i;:::-;78529:5;:26;;;;78451:112:::0;:::o;26781:164::-;26878:4;26902:18;:25;26921:5;26902:25;;;;;;;;;;;;;;;:35;26928:8;26902:35;;;;;;;;;;;;;;;;;;;;;;;;;26895:42;;26781:164;;;;:::o;64065:201::-;63045:13;:11;:13::i;:::-;64174:1:::1;64154:22;;:8;:22;;::::0;64146:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64230:28;64249:8;64230:18;:28::i;:::-;64065:201:::0;:::o;43343:112::-;43420:27;43430:2;43434:8;43420:27;;;;;;;;;;;;:9;:27::i;:::-;43343:112;;:::o;27203:282::-;27268:4;27324:7;27305:15;:13;:15::i;:::-;:26;;:66;;;;;27358:13;;27348:7;:23;27305:66;:153;;;;;27457:1;11211:8;27409:17;:26;27427:7;27409:26;;;;;;;;;;;;:44;:49;27305:153;27285:173;;27203:282;;;:::o;74197:647::-;74436:1;64746:42;74388:45;;;:49;74384:453;;;64746:42;74687;;;74738:4;74745:8;74687:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;74682:144;;74801:8;74782:28;;;;;;;;;;;:::i;:::-;;;;;;;;74682:144;74384:453;74197:647;:::o;25265:408::-;25354:13;25370:16;25378:7;25370;:16::i;:::-;25354:32;;25426:5;25403:28;;:19;:17;:19::i;:::-;:28;;;25399:175;;25451:44;25468:5;25475:19;:17;:19::i;:::-;25451:16;:44::i;:::-;25446:128;;25523:35;;;;;;;;;;;;;;25446:128;25399:175;25619:2;25586:15;:24;25602:7;25586:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25657:7;25653:2;25637:28;;25646:5;25637:28;;;;;;;;;;;;25343:330;25265:408;;:::o;63324:132::-;63399:12;:10;:12::i;:::-;63388:23;;:7;:5;:7::i;:::-;:23;;;63380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63324:132::o;14608:92::-;14664:7;14608:92;:::o;29471:2825::-;29613:27;29643;29662:7;29643:18;:27::i;:::-;29613:57;;29728:4;29687:45;;29703:19;29687:45;;;29683:86;;29741:28;;;;;;;;;;;;;;29683:86;29783:27;29812:23;29839:35;29866:7;29839:26;:35::i;:::-;29782:92;;;;29974:68;29999:15;30016:4;30022:19;:17;:19::i;:::-;29974:24;:68::i;:::-;29969:180;;30062:43;30079:4;30085:19;:17;:19::i;:::-;30062:16;:43::i;:::-;30057:92;;30114:35;;;;;;;;;;;;;;30057:92;29969:180;30180:1;30166:16;;:2;:16;;;30162:52;;30191:23;;;;;;;;;;;;;;30162:52;30227:43;30249:4;30255:2;30259:7;30268:1;30227:21;:43::i;:::-;30363:15;30360:160;;;30503:1;30482:19;30475:30;30360:160;30900:18;:24;30919:4;30900:24;;;;;;;;;;;;;;;;30898:26;;;;;;;;;;;;30969:18;:22;30988:2;30969:22;;;;;;;;;;;;;;;;30967:24;;;;;;;;;;;31291:146;31328:2;31377:45;31392:4;31398:2;31402:19;31377:14;:45::i;:::-;11491:8;31349:73;31291:18;:146::i;:::-;31262:17;:26;31280:7;31262:26;;;;;;;;;;;:175;;;;31608:1;11491:8;31557:19;:47;:52;31553:627;;31630:19;31662:1;31652:7;:11;31630:33;;31819:1;31785:17;:30;31803:11;31785:30;;;;;;;;;;;;:35;31781:384;;31923:13;;31908:11;:28;31904:242;;32103:19;32070:17;:30;32088:11;32070:30;;;;;;;;;;;:52;;;;31904:242;31781:384;31611:569;31553:627;32227:7;32223:2;32208:27;;32217:4;32208:27;;;;;;;;;;;;32246:42;32267:4;32273:2;32277:7;32286:1;32246:20;:42::i;:::-;29602:2694;;;29471:2825;;;:::o;32392:193::-;32538:39;32555:4;32561:2;32565:7;32538:39;;;;;;;;;;;;:16;:39::i;:::-;32392:193;;;:::o;21889:1275::-;21956:7;21976:12;21991:7;21976:22;;22059:4;22040:15;:13;:15::i;:::-;:23;22036:1061;;22093:13;;22086:4;:20;22082:1015;;;22131:14;22148:17;:23;22166:4;22148:23;;;;;;;;;;;;22131:40;;22265:1;11211:8;22237:6;:24;:29;22233:845;;22902:113;22919:1;22909:6;:11;22902:113;;22962:17;:25;22980:6;;;;;;;22962:25;;;;;;;;;;;;22953:34;;22902:113;;;23048:6;23041:13;;;;;;22233:845;22108:989;22082:1015;22036:1061;23125:31;;;;;;;;;;;;;;21889:1275;;;;:::o;64426:191::-;64500:16;64519:6;;;;;;;;;;;64500:25;;64545:8;64536:6;;:17;;;;;;;;;;;;;;;;;;64600:8;64569:40;;64590:8;64569:40;;;;;;;;;;;;64489:128;64426:191;:::o;26390:234::-;26537:8;26485:18;:39;26504:19;:17;:19::i;:::-;26485:39;;;;;;;;;;;;;;;:49;26525:8;26485:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26597:8;26561:55;;26576:19;:17;:19::i;:::-;26561:55;;;26607:8;26561:55;;;;;;:::i;:::-;;;;;;;;26390:234;;:::o;33183:407::-;33358:31;33371:4;33377:2;33381:7;33358:12;:31::i;:::-;33422:1;33404:2;:14;;;:19;33400:183;;33443:56;33474:4;33480:2;33484:7;33493:5;33443:30;:56::i;:::-;33438:145;;33527:40;;;;;;;;;;;;;;33438:145;33400:183;33183:407;;;;:::o;78057:100::-;78109:13;78142:7;78135:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78057:100;:::o;49718:1745::-;49783:17;50217:4;50210;50204:11;50200:22;50309:1;50303:4;50296:15;50384:4;50381:1;50377:12;50370:19;;50466:1;50461:3;50454:14;50570:3;50809:5;50791:428;50817:1;50791:428;;;50857:1;50852:3;50848:11;50841:18;;51028:2;51022:4;51018:13;51014:2;51010:22;51005:3;50997:36;51122:2;51116:4;51112:13;51104:21;;51189:4;50791:428;51179:25;50791:428;50795:21;51258:3;51253;51249:13;51373:4;51368:3;51364:14;51357:21;;51438:6;51433:3;51426:19;49822:1634;;;49718:1745;;;:::o;42570:689::-;42701:19;42707:2;42711:8;42701:5;:19::i;:::-;42780:1;42762:2;:14;;;:19;42758:483;;42802:11;42816:13;;42802:27;;42848:13;42870:8;42864:3;:14;42848:30;;42897:233;42928:62;42967:1;42971:2;42975:7;;;;;;42984:5;42928:30;:62::i;:::-;42923:167;;43026:40;;;;;;;;;;;;;;42923:167;43125:3;43117:5;:11;42897:233;;43212:3;43195:13;;:20;43191:34;;43217:8;;;43191:34;42783:458;;42758:483;42570:689;;;:::o;49511:105::-;49571:7;49598:10;49591:17;;49511:105;:::o;61710:98::-;61763:7;61790:10;61783:17;;61710:98;:::o;28366:485::-;28468:27;28497:23;28538:38;28579:15;:24;28595:7;28579:24;;;;;;;;;;;28538:65;;28756:18;28733:41;;28813:19;28807:26;28788:45;;28718:126;28366:485;;;:::o;27594:659::-;27743:11;27908:16;27901:5;27897:28;27888:37;;28068:16;28057:9;28053:32;28040:45;;28218:15;28207:9;28204:30;28196:5;28185:9;28182:20;28179:56;28169:66;;27594:659;;;;;:::o;34252:159::-;;;;;:::o;48820:311::-;48955:7;48975:16;11615:3;49001:19;:41;;48975:68;;11615:3;49069:31;49080:4;49086:2;49090:9;49069:10;:31::i;:::-;49061:40;;:62;;49054:69;;;48820:311;;;;;:::o;23712:450::-;23792:14;23960:16;23953:5;23949:28;23940:37;;24137:5;24123:11;24098:23;24094:41;24091:52;24084:5;24081:63;24071:73;;23712:450;;;;:::o;35076:158::-;;;;;:::o;35674:716::-;35837:4;35883:2;35858:45;;;35904:19;:17;:19::i;:::-;35925:4;35931:7;35940:5;35858:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35854:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36158:1;36141:6;:13;:18;36137:235;;36187:40;;;;;;;;;;;;;;36137:235;36330:6;36324:13;36315:6;36311:2;36307:15;36300:38;35854:529;36027:54;;;36017:64;;;:6;:64;;;;36010:71;;;35674:716;;;;;;:::o;36852:2966::-;36925:20;36948:13;;36925:36;;36988:1;36976:8;:13;36972:44;;36998:18;;;;;;;;;;;;;;36972:44;37029:61;37059:1;37063:2;37067:12;37081:8;37029:21;:61::i;:::-;37573:1;10573:2;37543:1;:26;;37542:32;37530:8;:45;37504:18;:22;37523:2;37504:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37852:139;37889:2;37943:33;37966:1;37970:2;37974:1;37943:14;:33::i;:::-;37910:30;37931:8;37910:20;:30::i;:::-;:66;37852:18;:139::i;:::-;37818:17;:31;37836:12;37818:31;;;;;;;;;;;:173;;;;38008:16;38039:11;38068:8;38053:12;:23;38039:37;;38589:16;38585:2;38581:25;38569:37;;38961:12;38921:8;38880:1;38818:25;38759:1;38698;38671:335;39332:1;39318:12;39314:20;39272:346;39373:3;39364:7;39361:16;39272:346;;39591:7;39581:8;39578:1;39551:25;39548:1;39545;39540:59;39426:1;39417:7;39413:15;39402:26;;39272:346;;;39276:77;39663:1;39651:8;:13;39647:45;;39673:19;;;;;;;;;;;;;;39647:45;39725:3;39709:13;:19;;;;37278:2462;;39750:60;39779:1;39783:2;39787:12;39801:8;39750:20;:60::i;:::-;36914:2904;36852:2966;;:::o;48521:147::-;48658:6;48521:147;;;;;:::o;24264:324::-;24334:14;24567:1;24557:8;24554:15;24528:24;24524:46;24514:56;;24264:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:60::-;5943:3;5964:5;5957:12;;5915:60;;;:::o;5981:142::-;6031:9;6064:53;6082:34;6091:24;6109:5;6091:24;:::i;:::-;6082:34;:::i;:::-;6064:53;:::i;:::-;6051:66;;5981:142;;;:::o;6129:126::-;6179:9;6212:37;6243:5;6212:37;:::i;:::-;6199:50;;6129:126;;;:::o;6261:158::-;6343:9;6376:37;6407:5;6376:37;:::i;:::-;6363:50;;6261:158;;;:::o;6425:195::-;6544:69;6607:5;6544:69;:::i;:::-;6539:3;6532:82;6425:195;;:::o;6626:286::-;6751:4;6789:2;6778:9;6774:18;6766:26;;6802:103;6902:1;6891:9;6887:17;6878:6;6802:103;:::i;:::-;6626:286;;;;:::o;6918:329::-;6977:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;6918:329;;;;:::o;7253:117::-;7362:1;7359;7352:12;7376:117;7485:1;7482;7475:12;7499:117;7608:1;7605;7598:12;7636:553;7694:8;7704:6;7754:3;7747:4;7739:6;7735:17;7731:27;7721:122;;7762:79;;:::i;:::-;7721:122;7875:6;7862:20;7852:30;;7905:18;7897:6;7894:30;7891:117;;;7927:79;;:::i;:::-;7891:117;8041:4;8033:6;8029:17;8017:29;;8095:3;8087:4;8079:6;8075:17;8065:8;8061:32;8058:41;8055:128;;;8102:79;;:::i;:::-;8055:128;7636:553;;;;;:::o;8195:529::-;8266:6;8274;8323:2;8311:9;8302:7;8298:23;8294:32;8291:119;;;8329:79;;:::i;:::-;8291:119;8477:1;8466:9;8462:17;8449:31;8507:18;8499:6;8496:30;8493:117;;;8529:79;;:::i;:::-;8493:117;8642:65;8699:7;8690:6;8679:9;8675:22;8642:65;:::i;:::-;8624:83;;;;8420:297;8195:529;;;;;:::o;8730:619::-;8807:6;8815;8823;8872:2;8860:9;8851:7;8847:23;8843:32;8840:119;;;8878:79;;:::i;:::-;8840:119;8998:1;9023:53;9068:7;9059:6;9048:9;9044:22;9023:53;:::i;:::-;9013:63;;8969:117;9125:2;9151:53;9196:7;9187:6;9176:9;9172:22;9151:53;:::i;:::-;9141:63;;9096:118;9253:2;9279:53;9324:7;9315:6;9304:9;9300:22;9279:53;:::i;:::-;9269:63;;9224:118;8730:619;;;;;:::o;9355:116::-;9425:21;9440:5;9425:21;:::i;:::-;9418:5;9415:32;9405:60;;9461:1;9458;9451:12;9405:60;9355:116;:::o;9477:133::-;9520:5;9558:6;9545:20;9536:29;;9574:30;9598:5;9574:30;:::i;:::-;9477:133;;;;:::o;9616:468::-;9681:6;9689;9738:2;9726:9;9717:7;9713:23;9709:32;9706:119;;;9744:79;;:::i;:::-;9706:119;9864:1;9889:53;9934:7;9925:6;9914:9;9910:22;9889:53;:::i;:::-;9879:63;;9835:117;9991:2;10017:50;10059:7;10050:6;10039:9;10035:22;10017:50;:::i;:::-;10007:60;;9962:115;9616:468;;;;;:::o;10090:117::-;10199:1;10196;10189:12;10213:180;10261:77;10258:1;10251:88;10358:4;10355:1;10348:15;10382:4;10379:1;10372:15;10399:281;10482:27;10504:4;10482:27;:::i;:::-;10474:6;10470:40;10612:6;10600:10;10597:22;10576:18;10564:10;10561:34;10558:62;10555:88;;;10623:18;;:::i;:::-;10555:88;10663:10;10659:2;10652:22;10442:238;10399:281;;:::o;10686:129::-;10720:6;10747:20;;:::i;:::-;10737:30;;10776:33;10804:4;10796:6;10776:33;:::i;:::-;10686:129;;;:::o;10821:307::-;10882:4;10972:18;10964:6;10961:30;10958:56;;;10994:18;;:::i;:::-;10958:56;11032:29;11054:6;11032:29;:::i;:::-;11024:37;;11116:4;11110;11106:15;11098:23;;10821:307;;;:::o;11134:154::-;11218:6;11213:3;11208;11195:30;11280:1;11271:6;11266:3;11262:16;11255:27;11134:154;;;:::o;11294:410::-;11371:5;11396:65;11412:48;11453:6;11412:48;:::i;:::-;11396:65;:::i;:::-;11387:74;;11484:6;11477:5;11470:21;11522:4;11515:5;11511:16;11560:3;11551:6;11546:3;11542:16;11539:25;11536:112;;;11567:79;;:::i;:::-;11536:112;11657:41;11691:6;11686:3;11681;11657:41;:::i;:::-;11377:327;11294:410;;;;;:::o;11723:338::-;11778:5;11827:3;11820:4;11812:6;11808:17;11804:27;11794:122;;11835:79;;:::i;:::-;11794:122;11952:6;11939:20;11977:78;12051:3;12043:6;12036:4;12028:6;12024:17;11977:78;:::i;:::-;11968:87;;11784:277;11723:338;;;;:::o;12067:943::-;12162:6;12170;12178;12186;12235:3;12223:9;12214:7;12210:23;12206:33;12203:120;;;12242:79;;:::i;:::-;12203:120;12362:1;12387:53;12432:7;12423:6;12412:9;12408:22;12387:53;:::i;:::-;12377:63;;12333:117;12489:2;12515:53;12560:7;12551:6;12540:9;12536:22;12515:53;:::i;:::-;12505:63;;12460:118;12617:2;12643:53;12688:7;12679:6;12668:9;12664:22;12643:53;:::i;:::-;12633:63;;12588:118;12773:2;12762:9;12758:18;12745:32;12804:18;12796:6;12793:30;12790:117;;;12826:79;;:::i;:::-;12790:117;12931:62;12985:7;12976:6;12965:9;12961:22;12931:62;:::i;:::-;12921:72;;12716:287;12067:943;;;;;;;:::o;13016:474::-;13084:6;13092;13141:2;13129:9;13120:7;13116:23;13112:32;13109:119;;;13147:79;;:::i;:::-;13109:119;13267:1;13292:53;13337:7;13328:6;13317:9;13313:22;13292:53;:::i;:::-;13282:63;;13238:117;13394:2;13420:53;13465:7;13456:6;13445:9;13441:22;13420:53;:::i;:::-;13410:63;;13365:118;13016:474;;;;;:::o;13496:180::-;13544:77;13541:1;13534:88;13641:4;13638:1;13631:15;13665:4;13662:1;13655:15;13682:320;13726:6;13763:1;13757:4;13753:12;13743:22;;13810:1;13804:4;13800:12;13831:18;13821:81;;13887:4;13879:6;13875:17;13865:27;;13821:81;13949:2;13941:6;13938:14;13918:18;13915:38;13912:84;;13968:18;;:::i;:::-;13912:84;13733:269;13682:320;;;:::o;14008:168::-;14148:20;14144:1;14136:6;14132:14;14125:44;14008:168;:::o;14182:366::-;14324:3;14345:67;14409:2;14404:3;14345:67;:::i;:::-;14338:74;;14421:93;14510:3;14421:93;:::i;:::-;14539:2;14534:3;14530:12;14523:19;;14182:366;;;:::o;14554:419::-;14720:4;14758:2;14747:9;14743:18;14735:26;;14807:9;14801:4;14797:20;14793:1;14782:9;14778:17;14771:47;14835:131;14961:4;14835:131;:::i;:::-;14827:139;;14554:419;;;:::o;14979:175::-;15119:27;15115:1;15107:6;15103:14;15096:51;14979:175;:::o;15160:366::-;15302:3;15323:67;15387:2;15382:3;15323:67;:::i;:::-;15316:74;;15399:93;15488:3;15399:93;:::i;:::-;15517:2;15512:3;15508:12;15501:19;;15160:366;;;:::o;15532:419::-;15698:4;15736:2;15725:9;15721:18;15713:26;;15785:9;15779:4;15775:20;15771:1;15760:9;15756:17;15749:47;15813:131;15939:4;15813:131;:::i;:::-;15805:139;;15532:419;;;:::o;15957:180::-;16005:77;16002:1;15995:88;16102:4;16099:1;16092:15;16126:4;16123:1;16116:15;16143:305;16183:3;16202:20;16220:1;16202:20;:::i;:::-;16197:25;;16236:20;16254:1;16236:20;:::i;:::-;16231:25;;16390:1;16322:66;16318:74;16315:1;16312:81;16309:107;;;16396:18;;:::i;:::-;16309:107;16440:1;16437;16433:9;16426:16;;16143:305;;;;:::o;16454:182::-;16594:34;16590:1;16582:6;16578:14;16571:58;16454:182;:::o;16642:366::-;16784:3;16805:67;16869:2;16864:3;16805:67;:::i;:::-;16798:74;;16881:93;16970:3;16881:93;:::i;:::-;16999:2;16994:3;16990:12;16983:19;;16642:366;;;:::o;17014:419::-;17180:4;17218:2;17207:9;17203:18;17195:26;;17267:9;17261:4;17257:20;17253:1;17242:9;17238:17;17231:47;17295:131;17421:4;17295:131;:::i;:::-;17287:139;;17014:419;;;:::o;17439:172::-;17579:24;17575:1;17567:6;17563:14;17556:48;17439:172;:::o;17617:366::-;17759:3;17780:67;17844:2;17839:3;17780:67;:::i;:::-;17773:74;;17856:93;17945:3;17856:93;:::i;:::-;17974:2;17969:3;17965:12;17958:19;;17617:366;;;:::o;17989:419::-;18155:4;18193:2;18182:9;18178:18;18170:26;;18242:9;18236:4;18232:20;18228:1;18217:9;18213:17;18206:47;18270:131;18396:4;18270:131;:::i;:::-;18262:139;;17989:419;;;:::o;18414:191::-;18454:4;18474:20;18492:1;18474:20;:::i;:::-;18469:25;;18508:20;18526:1;18508:20;:::i;:::-;18503:25;;18547:1;18544;18541:8;18538:34;;;18552:18;;:::i;:::-;18538:34;18597:1;18594;18590:9;18582:17;;18414:191;;;;:::o;18611:348::-;18651:7;18674:20;18692:1;18674:20;:::i;:::-;18669:25;;18708:20;18726:1;18708:20;:::i;:::-;18703:25;;18896:1;18828:66;18824:74;18821:1;18818:81;18813:1;18806:9;18799:17;18795:105;18792:131;;;18903:18;;:::i;:::-;18792:131;18951:1;18948;18944:9;18933:20;;18611:348;;;;:::o;18965:171::-;19105:23;19101:1;19093:6;19089:14;19082:47;18965:171;:::o;19142:366::-;19284:3;19305:67;19369:2;19364:3;19305:67;:::i;:::-;19298:74;;19381:93;19470:3;19381:93;:::i;:::-;19499:2;19494:3;19490:12;19483:19;;19142:366;;;:::o;19514:419::-;19680:4;19718:2;19707:9;19703:18;19695:26;;19767:9;19761:4;19757:20;19753:1;19742:9;19738:17;19731:47;19795:131;19921:4;19795:131;:::i;:::-;19787:139;;19514:419;;;:::o;19939:148::-;20041:11;20078:3;20063:18;;19939:148;;;;:::o;20093:377::-;20199:3;20227:39;20260:5;20227:39;:::i;:::-;20282:89;20364:6;20359:3;20282:89;:::i;:::-;20275:96;;20380:52;20425:6;20420:3;20413:4;20406:5;20402:16;20380:52;:::i;:::-;20457:6;20452:3;20448:16;20441:23;;20203:267;20093:377;;;;:::o;20476:435::-;20656:3;20678:95;20769:3;20760:6;20678:95;:::i;:::-;20671:102;;20790:95;20881:3;20872:6;20790:95;:::i;:::-;20783:102;;20902:3;20895:10;;20476:435;;;;;:::o;20917:225::-;21057:34;21053:1;21045:6;21041:14;21034:58;21126:8;21121:2;21113:6;21109:15;21102:33;20917:225;:::o;21148:366::-;21290:3;21311:67;21375:2;21370:3;21311:67;:::i;:::-;21304:74;;21387:93;21476:3;21387:93;:::i;:::-;21505:2;21500:3;21496:12;21489:19;;21148:366;;;:::o;21520:419::-;21686:4;21724:2;21713:9;21709:18;21701:26;;21773:9;21767:4;21763:20;21759:1;21748:9;21744:17;21737:47;21801:131;21927:4;21801:131;:::i;:::-;21793:139;;21520:419;;;:::o;21945:332::-;22066:4;22104:2;22093:9;22089:18;22081:26;;22117:71;22185:1;22174:9;22170:17;22161:6;22117:71;:::i;:::-;22198:72;22266:2;22255:9;22251:18;22242:6;22198:72;:::i;:::-;21945:332;;;;;:::o;22283:137::-;22337:5;22368:6;22362:13;22353:22;;22384:30;22408:5;22384:30;:::i;:::-;22283:137;;;;:::o;22426:345::-;22493:6;22542:2;22530:9;22521:7;22517:23;22513:32;22510:119;;;22548:79;;:::i;:::-;22510:119;22668:1;22693:61;22746:7;22737:6;22726:9;22722:22;22693:61;:::i;:::-;22683:71;;22639:125;22426:345;;;;:::o;22777:182::-;22917:34;22913:1;22905:6;22901:14;22894:58;22777:182;:::o;22965:366::-;23107:3;23128:67;23192:2;23187:3;23128:67;:::i;:::-;23121:74;;23204:93;23293:3;23204:93;:::i;:::-;23322:2;23317:3;23313:12;23306:19;;22965:366;;;:::o;23337:419::-;23503:4;23541:2;23530:9;23526:18;23518:26;;23590:9;23584:4;23580:20;23576:1;23565:9;23561:17;23554:47;23618:131;23744:4;23618:131;:::i;:::-;23610:139;;23337:419;;;:::o;23762:98::-;23813:6;23847:5;23841:12;23831:22;;23762:98;;;:::o;23866:168::-;23949:11;23983:6;23978:3;23971:19;24023:4;24018:3;24014:14;23999:29;;23866:168;;;;:::o;24040:360::-;24126:3;24154:38;24186:5;24154:38;:::i;:::-;24208:70;24271:6;24266:3;24208:70;:::i;:::-;24201:77;;24287:52;24332:6;24327:3;24320:4;24313:5;24309:16;24287:52;:::i;:::-;24364:29;24386:6;24364:29;:::i;:::-;24359:3;24355:39;24348:46;;24130:270;24040:360;;;;:::o;24406:640::-;24601:4;24639:3;24628:9;24624:19;24616:27;;24653:71;24721:1;24710:9;24706:17;24697:6;24653:71;:::i;:::-;24734:72;24802:2;24791:9;24787:18;24778:6;24734:72;:::i;:::-;24816;24884:2;24873:9;24869:18;24860:6;24816:72;:::i;:::-;24935:9;24929:4;24925:20;24920:2;24909:9;24905:18;24898:48;24963:76;25034:4;25025:6;24963:76;:::i;:::-;24955:84;;24406:640;;;;;;;:::o;25052:141::-;25108:5;25139:6;25133:13;25124:22;;25155:32;25181:5;25155:32;:::i;:::-;25052:141;;;;:::o;25199:349::-;25268:6;25317:2;25305:9;25296:7;25292:23;25288:32;25285:119;;;25323:79;;:::i;:::-;25285:119;25443:1;25468:63;25523:7;25514:6;25503:9;25499:22;25468:63;:::i;:::-;25458:73;;25414:127;25199:349;;;;:::o
Swarm Source
ipfs://4fafa4e56d1d5a3a10f1e6cfb740142478b5aaa6a457fc5ed28c13ab1539b40e
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.