ERC-721
Overview
Max Total Supply
333 AnEnd
Holders
185
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 AnEndLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AnEnd
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-02 */ // SPDX-License-Identifier: MIT // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/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. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); 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)); } } } } 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); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } 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) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: https://github.com/chiru-labs/ERC721A/blob/main/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: https://github.com/chiru-labs/ERC721A/blob/main/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 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken(); // 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, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; return packed; } } // Otherwise, the data exists and is not burned. We can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. 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. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @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, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck) if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: AnEnd.sol pragma solidity ^0.8.13; contract AnEnd is ERC721A, Ownable, DefaultOperatorFilterer { using Strings for uint256; error MintInactive(); error ContractCaller(); error InvalidAmount(); error ExceedsSupply(); error InvalidValue(); error LengthsDoNotMatch(); error InvalidToken(); string public baseURI; uint256 public price = 0.005 ether; uint256 public constant MAX_SUPPLY = 333; uint256 public constant MAX_PER_TX = 5; bool public saleActive = false; mapping(address => bool) hasMinted; constructor() ERC721A("An End by Basquinot", "AnEnd") payable { _mint(msg.sender, 1); } function mint(uint256 mintAmount_) public payable { if (!saleActive) revert MintInactive(); if (msg.sender != tx.origin) revert ContractCaller(); if (mintAmount_ > MAX_PER_TX) revert InvalidAmount(); unchecked { if (mintAmount_ + totalSupply() > MAX_SUPPLY) revert ExceedsSupply(); if (hasMinted[msg.sender]) { if (msg.value != mintAmount_ * price) revert InvalidValue(); } else { if (msg.value != (mintAmount_ - 1) * price) revert InvalidValue(); } } hasMinted[msg.sender] = true; _mint(msg.sender, mintAmount_); } function mintForAddress(uint256 mintAmount_, address to_) external onlyOwner { _mint(to_, mintAmount_); } function batchMintForAddresses(address[] calldata addresses_, uint256[] calldata amounts_) external onlyOwner { if (addresses_.length != amounts_.length) revert LengthsDoNotMatch(); unchecked { for (uint32 i = 0; i < addresses_.length; i++) { _mint(addresses_[i], amounts_[i]); } } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function flipSaleActive() external onlyOwner { saleActive = !saleActive; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } function setBaseURI(string memory newBaseURI_) external onlyOwner { baseURI = newBaseURI_; } function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) { if (!_exists(tokenId_)) revert InvalidToken(); return string(abi.encodePacked(baseURI, tokenId_.toString(), ".json")); } 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":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractCaller","type":"error"},{"inputs":[],"name":"ExceedsSupply","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"InvalidValue","type":"error"},{"inputs":[],"name":"LengthsDoNotMatch","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintInactive","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":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"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":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"batchMintForAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"nonpayable","type":"function"}]
Contract Creation Code
6611c37937e08000600a55600b805460ff19169055601360808181527f416e20456e64206279204261737175696e6f740000000000000000000000000060a0908152610100604052600560c090815264105b915b9960da1b60e052733cc6cdda760b79bafa08df41ecfa224f810dceb6936001939262000083916002919062000339565b5080516200009990600390602084019062000339565b5050600160005550620000ac3362000207565b6daaeb6d7670e522a718067333cd4e3b15620001f15780156200013f57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200012057600080fd5b505af115801562000135573d6000803e3d6000fd5b50505050620001f1565b6001600160a01b03821615620001905760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000105565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001d757600080fd5b505af1158015620001ec573d6000803e3d6000fd5b505050505b5062000201905033600162000259565b6200041b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008054908290036200027f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602062001e7f8339815191528180a4600183015b8181146200030e578083600060008051602062001e7f833981519152600080a4600101620002e5565b50816000036200033057604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546200034790620003df565b90600052602060002090601f0160209004810192826200036b5760008555620003b6565b82601f106200038657805160ff1916838001178555620003b6565b82800160010185558215620003b6579182015b82811115620003b657825182559160200191906001019062000399565b50620003c4929150620003c8565b5090565b5b80821115620003c45760008155600101620003c9565b600181811c90821680620003f457607f821691505b6020821081036200041557634e487b7160e01b600052602260045260246000fd5b50919050565b611a54806200042b6000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104b8578063efbd73f414610501578063f2fde38b14610521578063f43a22dc1461054157600080fd5b8063b88d4fde14610450578063c87b56dd14610463578063de53f38a14610483578063de8b51e1146104a357600080fd5b806395d89b41116100d157806395d89b41146103f2578063a035b1fe14610407578063a0712d681461041d578063a22cb4651461043057600080fd5b8063715018a61461039f5780638da5cb5b146103b457806391b7f5ed146103d257600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e1461033057806368428a1b146103505780636c0360eb1461036a57806370a082311461037f57600080fd5b80633ccfd60b146102c657806341f43434146102db57806342842e0e146102fd57806355f804b31461031057600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461027657806323b872dd1461029d57806332cb6b0c146102b057600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461149d565b610556565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105a8565b6040516101fe9190611519565b34801561023557600080fd5b5061024961024436600461152c565b61063a565b6040516001600160a01b0390911681526020016101fe565b61027461026f36600461155c565b61067e565b005b34801561028257600080fd5b5060015460005403600019015b6040519081526020016101fe565b6102746102ab366004611586565b610697565b3480156102bc57600080fd5b5061028f61014d81565b3480156102d257600080fd5b506102746106c2565b3480156102e757600080fd5b506102496daaeb6d7670e522a718067333cd4e81565b61027461030b366004611586565b610706565b34801561031c57600080fd5b5061027461032b36600461164e565b61072b565b34801561033c57600080fd5b5061024961034b36600461152c565b61074a565b34801561035c57600080fd5b50600b546101f29060ff1681565b34801561037657600080fd5b5061021c610755565b34801561038b57600080fd5b5061028f61039a366004611697565b6107e3565b3480156103ab57600080fd5b50610274610832565b3480156103c057600080fd5b506008546001600160a01b0316610249565b3480156103de57600080fd5b506102746103ed36600461152c565b610846565b3480156103fe57600080fd5b5061021c610853565b34801561041357600080fd5b5061028f600a5481565b61027461042b36600461152c565b610862565b34801561043c57600080fd5b5061027461044b3660046116c0565b610984565b61027461045e3660046116f7565b610998565b34801561046f57600080fd5b5061021c61047e36600461152c565b6109c5565b34801561048f57600080fd5b5061027461049e3660046117bf565b610a1f565b3480156104af57600080fd5b50610274610ab4565b3480156104c457600080fd5b506101f26104d336600461182b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050d57600080fd5b5061027461051c36600461185e565b610ad0565b34801561052d57600080fd5b5061027461053c366004611697565b610ae2565b34801561054d57600080fd5b5061028f600581565b60006301ffc9a760e01b6001600160e01b03198316148061058757506380ac58cd60e01b6001600160e01b03198316145b806105a25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105b790611881565b80601f01602080910402602001604051908101604052809291908181526020018280546105e390611881565b80156106305780601f1061060557610100808354040283529160200191610630565b820191906000526020600020905b81548152906001019060200180831161061357829003601f168201915b5050505050905090565b600061064582610b5d565b610662576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b8161068881610b92565b6106928383610c4b565b505050565b826001600160a01b03811633146106b1576106b133610b92565b6106bc848484610c57565b50505050565b6106ca610def565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610703573d6000803e3d6000fd5b50565b826001600160a01b03811633146107205761072033610b92565b6106bc848484610e49565b610733610def565b80516107469060099060208401906113ee565b5050565b60006105a282610e64565b6009805461076290611881565b80601f016020809104026020016040519081016040528092919081815260200182805461078e90611881565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b505050505081565b60006001600160a01b03821661080c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61083a610def565b6108446000610ef0565b565b61084e610def565b600a55565b6060600380546105b790611881565b600b5460ff1661088557604051630d0ca57160e21b815260040160405180910390fd5b3332146108a557604051636844047f60e01b815260040160405180910390fd5b60058111156108c75760405163162908e360e11b815260040160405180910390fd5b60015460005461014d91900360001901820111156108f857604051632d573a5560e01b815260040160405180910390fd5b336000908152600c602052604090205460ff161561093957600a548102341461093457604051632a9ffab760e21b815260040160405180910390fd5b610960565b600a546001820302341461096057604051632a9ffab760e21b815260040160405180910390fd5b336000818152600c60205260409020805460ff191660011790556107039082610f42565b8161098e81610b92565b6106928383611040565b836001600160a01b03811633146109b2576109b233610b92565b6109be858585856110ac565b5050505050565b60606109d082610b5d565b6109ed5760405163c1ab6dc160e01b815260040160405180910390fd5b60096109f8836110f0565b604051602001610a099291906118d7565b6040516020818303038152906040529050919050565b610a27610def565b828114610a475760405163aa81c86160e01b815260040160405180910390fd5b60005b63ffffffff81168411156109be57610aac85858363ffffffff16818110610a7357610a73611991565b9050602002016020810190610a889190611697565b84848463ffffffff16818110610aa057610aa0611991565b90506020020135610f42565b600101610a4a565b610abc610def565b600b805460ff19811660ff90911615179055565b610ad8610def565b6107468183610f42565b610aea610def565b6001600160a01b038116610b545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61070381610ef0565b600081600111158015610b71575060005482105b80156105a2575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561070357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2391906119a7565b61070357604051633b79c77360e21b81526001600160a01b0382166004820152602401610b4b565b61074682826001611183565b6000610c6282610e64565b9050836001600160a01b0316816001600160a01b031614610c955760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ce257610cc586336104d3565b610ce257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d0957604051633a954ecd60e21b815260040160405180910390fd5b8015610d1457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610da657600184016000818152600460205260408120549003610da4576000548114610da45760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146108445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b61069283838360405180602001604052806000815250610998565b600081600111610ed7575060008181526004602052604081205490600160e01b82169003610ed75780600003610ed2576000548210610eb657604051636f96cda160e11b815260040160405180910390fd5b5b50600019016000818152600460205260409020548015610eb7575b919050565b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805490829003610f675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461101657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610fde565b508160000361103757604051622e076360e81b815260040160405180910390fd5b60005550505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110b7848484610697565b6001600160a01b0383163b156106bc576110d38484848461122a565b6106bc576040516368d2bf6b60e11b815260040160405180910390fd5b606060006110fd83611316565b600101905060008167ffffffffffffffff81111561111d5761111d6115c2565b6040519080825280601f01601f191660200182016040528015611147576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461115157509392505050565b600061118e8361074a565b905081156111cd57336001600160a01b038216146111cd576111b081336104d3565b6111cd576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061125f9033908990889088906004016119c4565b6020604051808303816000875af192505050801561129a575060408051601f3d908101601f1916820190925261129791810190611a01565b60015b6112f8573d8080156112c8576040519150601f19603f3d011682016040523d82523d6000602084013e6112cd565b606091505b5080516000036112f0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106113555772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611381576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061139f57662386f26fc10000830492506010015b6305f5e10083106113b7576305f5e100830492506008015b61271083106113cb57612710830492506004015b606483106113dd576064830492506002015b600a83106105a25760010192915050565b8280546113fa90611881565b90600052602060002090601f01602090048101928261141c5760008555611462565b82601f1061143557805160ff1916838001178555611462565b82800160010185558215611462579182015b82811115611462578251825591602001919060010190611447565b5061146e929150611472565b5090565b5b8082111561146e5760008155600101611473565b6001600160e01b03198116811461070357600080fd5b6000602082840312156114af57600080fd5b81356114ba81611487565b9392505050565b60005b838110156114dc5781810151838201526020016114c4565b838111156106bc5750506000910152565b600081518084526115058160208601602086016114c1565b601f01601f19169290920160200192915050565b6020815260006114ba60208301846114ed565b60006020828403121561153e57600080fd5b5035919050565b80356001600160a01b0381168114610ed257600080fd5b6000806040838503121561156f57600080fd5b61157883611545565b946020939093013593505050565b60008060006060848603121561159b57600080fd5b6115a484611545565b92506115b260208501611545565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156115f3576115f36115c2565b604051601f8501601f19908116603f0116810190828211818310171561161b5761161b6115c2565b8160405280935085815286868601111561163457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561166057600080fd5b813567ffffffffffffffff81111561167757600080fd5b8201601f8101841361168857600080fd5b61130e848235602084016115d8565b6000602082840312156116a957600080fd5b6114ba82611545565b801515811461070357600080fd5b600080604083850312156116d357600080fd5b6116dc83611545565b915060208301356116ec816116b2565b809150509250929050565b6000806000806080858703121561170d57600080fd5b61171685611545565b935061172460208601611545565b925060408501359150606085013567ffffffffffffffff81111561174757600080fd5b8501601f8101871361175857600080fd5b611767878235602084016115d8565b91505092959194509250565b60008083601f84011261178557600080fd5b50813567ffffffffffffffff81111561179d57600080fd5b6020830191508360208260051b85010111156117b857600080fd5b9250929050565b600080600080604085870312156117d557600080fd5b843567ffffffffffffffff808211156117ed57600080fd5b6117f988838901611773565b9096509450602087013591508082111561181257600080fd5b5061181f87828801611773565b95989497509550505050565b6000806040838503121561183e57600080fd5b61184783611545565b915061185560208401611545565b90509250929050565b6000806040838503121561187157600080fd5b8235915061185560208401611545565b600181811c9082168061189557607f821691505b6020821081036118b557634e487b7160e01b600052602260045260246000fd5b50919050565b600081516118cd8185602086016114c1565b9290920192915050565b600080845481600182811c9150808316806118f357607f831692505b6020808410820361191257634e487b7160e01b86526022600452602486fd5b818015611926576001811461193757611964565b60ff19861689528489019650611964565b60008b81526020902060005b8681101561195c5781548b820152908501908301611943565b505084890196505b50505050505061198861197782866118bb565b64173539b7b760d91b815260050190565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156119b957600080fd5b81516114ba816116b2565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119f7908301846114ed565b9695505050505050565b600060208284031215611a1357600080fd5b81516114ba8161148756fea26469706673582212207cf2d93bbcb17f2a67e81312ef5d7ecf0798bc779035b3524aa281e3d37e1d2864736f6c634300080d0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104b8578063efbd73f414610501578063f2fde38b14610521578063f43a22dc1461054157600080fd5b8063b88d4fde14610450578063c87b56dd14610463578063de53f38a14610483578063de8b51e1146104a357600080fd5b806395d89b41116100d157806395d89b41146103f2578063a035b1fe14610407578063a0712d681461041d578063a22cb4651461043057600080fd5b8063715018a61461039f5780638da5cb5b146103b457806391b7f5ed146103d257600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e1461033057806368428a1b146103505780636c0360eb1461036a57806370a082311461037f57600080fd5b80633ccfd60b146102c657806341f43434146102db57806342842e0e146102fd57806355f804b31461031057600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461027657806323b872dd1461029d57806332cb6b0c146102b057600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461149d565b610556565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105a8565b6040516101fe9190611519565b34801561023557600080fd5b5061024961024436600461152c565b61063a565b6040516001600160a01b0390911681526020016101fe565b61027461026f36600461155c565b61067e565b005b34801561028257600080fd5b5060015460005403600019015b6040519081526020016101fe565b6102746102ab366004611586565b610697565b3480156102bc57600080fd5b5061028f61014d81565b3480156102d257600080fd5b506102746106c2565b3480156102e757600080fd5b506102496daaeb6d7670e522a718067333cd4e81565b61027461030b366004611586565b610706565b34801561031c57600080fd5b5061027461032b36600461164e565b61072b565b34801561033c57600080fd5b5061024961034b36600461152c565b61074a565b34801561035c57600080fd5b50600b546101f29060ff1681565b34801561037657600080fd5b5061021c610755565b34801561038b57600080fd5b5061028f61039a366004611697565b6107e3565b3480156103ab57600080fd5b50610274610832565b3480156103c057600080fd5b506008546001600160a01b0316610249565b3480156103de57600080fd5b506102746103ed36600461152c565b610846565b3480156103fe57600080fd5b5061021c610853565b34801561041357600080fd5b5061028f600a5481565b61027461042b36600461152c565b610862565b34801561043c57600080fd5b5061027461044b3660046116c0565b610984565b61027461045e3660046116f7565b610998565b34801561046f57600080fd5b5061021c61047e36600461152c565b6109c5565b34801561048f57600080fd5b5061027461049e3660046117bf565b610a1f565b3480156104af57600080fd5b50610274610ab4565b3480156104c457600080fd5b506101f26104d336600461182b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050d57600080fd5b5061027461051c36600461185e565b610ad0565b34801561052d57600080fd5b5061027461053c366004611697565b610ae2565b34801561054d57600080fd5b5061028f600581565b60006301ffc9a760e01b6001600160e01b03198316148061058757506380ac58cd60e01b6001600160e01b03198316145b806105a25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105b790611881565b80601f01602080910402602001604051908101604052809291908181526020018280546105e390611881565b80156106305780601f1061060557610100808354040283529160200191610630565b820191906000526020600020905b81548152906001019060200180831161061357829003601f168201915b5050505050905090565b600061064582610b5d565b610662576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b8161068881610b92565b6106928383610c4b565b505050565b826001600160a01b03811633146106b1576106b133610b92565b6106bc848484610c57565b50505050565b6106ca610def565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610703573d6000803e3d6000fd5b50565b826001600160a01b03811633146107205761072033610b92565b6106bc848484610e49565b610733610def565b80516107469060099060208401906113ee565b5050565b60006105a282610e64565b6009805461076290611881565b80601f016020809104026020016040519081016040528092919081815260200182805461078e90611881565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b505050505081565b60006001600160a01b03821661080c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61083a610def565b6108446000610ef0565b565b61084e610def565b600a55565b6060600380546105b790611881565b600b5460ff1661088557604051630d0ca57160e21b815260040160405180910390fd5b3332146108a557604051636844047f60e01b815260040160405180910390fd5b60058111156108c75760405163162908e360e11b815260040160405180910390fd5b60015460005461014d91900360001901820111156108f857604051632d573a5560e01b815260040160405180910390fd5b336000908152600c602052604090205460ff161561093957600a548102341461093457604051632a9ffab760e21b815260040160405180910390fd5b610960565b600a546001820302341461096057604051632a9ffab760e21b815260040160405180910390fd5b336000818152600c60205260409020805460ff191660011790556107039082610f42565b8161098e81610b92565b6106928383611040565b836001600160a01b03811633146109b2576109b233610b92565b6109be858585856110ac565b5050505050565b60606109d082610b5d565b6109ed5760405163c1ab6dc160e01b815260040160405180910390fd5b60096109f8836110f0565b604051602001610a099291906118d7565b6040516020818303038152906040529050919050565b610a27610def565b828114610a475760405163aa81c86160e01b815260040160405180910390fd5b60005b63ffffffff81168411156109be57610aac85858363ffffffff16818110610a7357610a73611991565b9050602002016020810190610a889190611697565b84848463ffffffff16818110610aa057610aa0611991565b90506020020135610f42565b600101610a4a565b610abc610def565b600b805460ff19811660ff90911615179055565b610ad8610def565b6107468183610f42565b610aea610def565b6001600160a01b038116610b545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61070381610ef0565b600081600111158015610b71575060005482105b80156105a2575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561070357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2391906119a7565b61070357604051633b79c77360e21b81526001600160a01b0382166004820152602401610b4b565b61074682826001611183565b6000610c6282610e64565b9050836001600160a01b0316816001600160a01b031614610c955760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ce257610cc586336104d3565b610ce257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d0957604051633a954ecd60e21b815260040160405180910390fd5b8015610d1457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610da657600184016000818152600460205260408120549003610da4576000548114610da45760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146108445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b61069283838360405180602001604052806000815250610998565b600081600111610ed7575060008181526004602052604081205490600160e01b82169003610ed75780600003610ed2576000548210610eb657604051636f96cda160e11b815260040160405180910390fd5b5b50600019016000818152600460205260409020548015610eb7575b919050565b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805490829003610f675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461101657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610fde565b508160000361103757604051622e076360e81b815260040160405180910390fd5b60005550505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110b7848484610697565b6001600160a01b0383163b156106bc576110d38484848461122a565b6106bc576040516368d2bf6b60e11b815260040160405180910390fd5b606060006110fd83611316565b600101905060008167ffffffffffffffff81111561111d5761111d6115c2565b6040519080825280601f01601f191660200182016040528015611147576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461115157509392505050565b600061118e8361074a565b905081156111cd57336001600160a01b038216146111cd576111b081336104d3565b6111cd576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061125f9033908990889088906004016119c4565b6020604051808303816000875af192505050801561129a575060408051601f3d908101601f1916820190925261129791810190611a01565b60015b6112f8573d8080156112c8576040519150601f19603f3d011682016040523d82523d6000602084013e6112cd565b606091505b5080516000036112f0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106113555772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611381576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061139f57662386f26fc10000830492506010015b6305f5e10083106113b7576305f5e100830492506008015b61271083106113cb57612710830492506004015b606483106113dd576064830492506002015b600a83106105a25760010192915050565b8280546113fa90611881565b90600052602060002090601f01602090048101928261141c5760008555611462565b82601f1061143557805160ff1916838001178555611462565b82800160010185558215611462579182015b82811115611462578251825591602001919060010190611447565b5061146e929150611472565b5090565b5b8082111561146e5760008155600101611473565b6001600160e01b03198116811461070357600080fd5b6000602082840312156114af57600080fd5b81356114ba81611487565b9392505050565b60005b838110156114dc5781810151838201526020016114c4565b838111156106bc5750506000910152565b600081518084526115058160208601602086016114c1565b601f01601f19169290920160200192915050565b6020815260006114ba60208301846114ed565b60006020828403121561153e57600080fd5b5035919050565b80356001600160a01b0381168114610ed257600080fd5b6000806040838503121561156f57600080fd5b61157883611545565b946020939093013593505050565b60008060006060848603121561159b57600080fd5b6115a484611545565b92506115b260208501611545565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156115f3576115f36115c2565b604051601f8501601f19908116603f0116810190828211818310171561161b5761161b6115c2565b8160405280935085815286868601111561163457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561166057600080fd5b813567ffffffffffffffff81111561167757600080fd5b8201601f8101841361168857600080fd5b61130e848235602084016115d8565b6000602082840312156116a957600080fd5b6114ba82611545565b801515811461070357600080fd5b600080604083850312156116d357600080fd5b6116dc83611545565b915060208301356116ec816116b2565b809150509250929050565b6000806000806080858703121561170d57600080fd5b61171685611545565b935061172460208601611545565b925060408501359150606085013567ffffffffffffffff81111561174757600080fd5b8501601f8101871361175857600080fd5b611767878235602084016115d8565b91505092959194509250565b60008083601f84011261178557600080fd5b50813567ffffffffffffffff81111561179d57600080fd5b6020830191508360208260051b85010111156117b857600080fd5b9250929050565b600080600080604085870312156117d557600080fd5b843567ffffffffffffffff808211156117ed57600080fd5b6117f988838901611773565b9096509450602087013591508082111561181257600080fd5b5061181f87828801611773565b95989497509550505050565b6000806040838503121561183e57600080fd5b61184783611545565b915061185560208401611545565b90509250929050565b6000806040838503121561187157600080fd5b8235915061185560208401611545565b600181811c9082168061189557607f821691505b6020821081036118b557634e487b7160e01b600052602260045260246000fd5b50919050565b600081516118cd8185602086016114c1565b9290920192915050565b600080845481600182811c9150808316806118f357607f831692505b6020808410820361191257634e487b7160e01b86526022600452602486fd5b818015611926576001811461193757611964565b60ff19861689528489019650611964565b60008b81526020902060005b8681101561195c5781548b820152908501908301611943565b505084890196505b50505050505061198861197782866118bb565b64173539b7b760d91b815260050190565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156119b957600080fd5b81516114ba816116b2565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119f7908301846114ed565b9695505050505050565b600060208284031215611a1357600080fd5b81516114ba8161148756fea26469706673582212207cf2d93bbcb17f2a67e81312ef5d7ecf0798bc779035b3524aa281e3d37e1d2864736f6c634300080d0033
Deployed Bytecode Sourcemap
77378:3285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24074:639;;;;;;;;;;-1:-1:-1;24074:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24074:639:0;;;;;;;;24976:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31376:218::-;;;;;;;;;;-1:-1:-1;31376:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;31376:218:0;1550:203:1;79946:159:0;;;;;;:::i;:::-;;:::i;:::-;;20727:323;;;;;;;;;;-1:-1:-1;79141:1:0;21001:12;20788:7;20985:13;:28;-1:-1:-1;;20985:46:0;20727:323;;;2341:25:1;;;2329:2;2314:18;20727:323:0;2195:177:1;80111:165:0;;;;;;:::i;:::-;;:::i;77730:40::-;;;;;;;;;;;;77767:3;77730:40;;79328:100;;;;;;;;;;;;;:::i;3048:143::-;;;;;;;;;;;;3148:42;3048:143;;80282:173;;;;;;:::i;:::-;;:::i;79434:100::-;;;;;;;;;;-1:-1:-1;79434:100:0;;;;;:::i;:::-;;:::i;26369:152::-;;;;;;;;;;-1:-1:-1;26369:152:0;;;;;:::i;:::-;;:::i;77820:30::-;;;;;;;;;;-1:-1:-1;77820:30:0;;;;;;;;77663:21;;;;;;;;;;;;;:::i;21911:233::-;;;;;;;;;;-1:-1:-1;21911:233:0;;;;;:::i;:::-;;:::i;61194:103::-;;;;;;;;;;;;;:::i;60546:87::-;;;;;;;;;;-1:-1:-1;60619:6:0;;-1:-1:-1;;;;;60619:6:0;60546:87;;79242:80;;;;;;;;;;-1:-1:-1;79242:80:0;;;;;:::i;:::-;;:::i;25152:104::-;;;;;;;;;;;;;:::i;77691:34::-;;;;;;;;;;;;;;;;77999:599;;;;;;:::i;:::-;;:::i;79770:170::-;;;;;;;;;;-1:-1:-1;79770:170:0;;;;;:::i;:::-;;:::i;80461:197::-;;;;;;:::i;:::-;;:::i;79540:224::-;;;;;;;;;;-1:-1:-1;79540:224:0;;;;;:::i;:::-;;:::i;78723:324::-;;;;;;;;;;-1:-1:-1;78723:324:0;;;;;:::i;:::-;;:::i;79154:82::-;;;;;;;;;;;;;:::i;32325:164::-;;;;;;;;;;-1:-1:-1;32325:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32446:25:0;;;32422:4;32446:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32325:164;78604:113;;;;;;;;;;-1:-1:-1;78604:113:0;;;;;:::i;:::-;;:::i;61452:201::-;;;;;;;;;;-1:-1:-1;61452:201:0;;;;;:::i;:::-;;:::i;77775:38::-;;;;;;;;;;;;77812:1;77775:38;;24074:639;24159:4;-1:-1:-1;;;;;;;;;24483:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24560:25:0;;;24483:102;:179;;;-1:-1:-1;;;;;;;;;;24637:25:0;;;24483:179;24463:199;24074:639;-1:-1:-1;;24074:639:0:o;24976:100::-;25030:13;25063:5;25056:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24976:100;:::o;31376:218::-;31452:7;31477:16;31485:7;31477;:16::i;:::-;31472:64;;31502:34;;-1:-1:-1;;;31502:34:0;;;;;;;;;;;31472:64;-1:-1:-1;31556:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;31556:30:0;;31376:218::o;79946:159::-;80050:8;4569:30;4590:8;4569:20;:30::i;:::-;80067:32:::1;80081:8;80091:7;80067:13;:32::i;:::-;79946:159:::0;;;:::o;80111:165::-;80220:4;-1:-1:-1;;;;;4389:18:0;;4397:10;4389:18;4385:83;;4424:32;4445:10;4424:20;:32::i;:::-;80233:37:::1;80252:4;80258:2;80262:7;80233:18;:37::i;:::-;80111:165:::0;;;;:::o;79328:100::-;60432:13;:11;:13::i;:::-;60619:6;;79374:48:::1;::::0;-1:-1:-1;;;;;60619:6:0;;;;79400:21:::1;79374:48:::0;::::1;;;::::0;::::1;::::0;;;79400:21;60619:6;79374:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;79328:100::o:0;80282:173::-;80395:4;-1:-1:-1;;;;;4389:18:0;;4397:10;4389:18;4385:83;;4424:32;4445:10;4424:20;:32::i;:::-;80408:41:::1;80431:4;80437:2;80441:7;80408:22;:41::i;79434:100::-:0;60432:13;:11;:13::i;:::-;79507:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;79434:100:::0;:::o;26369:152::-;26441:7;26484:27;26503:7;26484:18;:27::i;77663:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21911:233::-;21983:7;-1:-1:-1;;;;;22007:19:0;;22003:60;;22035:28;;-1:-1:-1;;;22035:28:0;;;;;;;;;;;22003:60;-1:-1:-1;;;;;;22081:25:0;;;;;:18;:25;;;;;;16070:13;22081:55;;21911:233::o;61194:103::-;60432:13;:11;:13::i;:::-;61259:30:::1;61286:1;61259:18;:30::i;:::-;61194:103::o:0;79242:80::-;60432:13;:11;:13::i;:::-;79302:5:::1;:14:::0;79242:80::o;25152:104::-;25208:13;25241:7;25234:14;;;;;:::i;77999:599::-;78061:10;;;;78056:38;;78080:14;;-1:-1:-1;;;78080:14:0;;;;;;;;;;;78056:38;78105:10;78119:9;78105:23;78101:52;;78137:16;;-1:-1:-1;;;78137:16:0;;;;;;;;;;;78101:52;77812:1;78164:11;:24;78160:52;;;78197:15;;-1:-1:-1;;;78197:15:0;;;;;;;;;;;78160:52;79141:1;21001:12;20788:7;20985:13;77767:3;;20985:28;;-1:-1:-1;;20985:46:0;78242:11;:27;:40;78238:68;;;78291:15;;-1:-1:-1;;;78291:15:0;;;;;;;;;;;78238:68;78329:10;78319:21;;;;:9;:21;;;;;;;;78315:199;;;78384:5;;78370:11;:19;78357:9;:32;78353:59;;78398:14;;-1:-1:-1;;;78398:14:0;;;;;;;;;;;78353:59;78315:199;;;78476:5;;78471:1;78457:11;:15;78456:25;78443:9;:38;78439:65;;78490:14;;-1:-1:-1;;;78490:14:0;;;;;;;;;;;78439:65;78537:10;78527:21;;;;:9;:21;;;;;:28;;-1:-1:-1;;78527:28:0;78551:4;78527:28;;;78562:30;;78580:11;78562:5;:30::i;79770:170::-;79874:8;4569:30;4590:8;4569:20;:30::i;:::-;79891:43:::1;79915:8;79925;79891:23;:43::i;80461:197::-:0;80593:4;-1:-1:-1;;;;;4389:18:0;;4397:10;4389:18;4385:83;;4424:32;4445:10;4424:20;:32::i;:::-;80605:47:::1;80628:4;80634:2;80638:7;80647:4;80605:22;:47::i;:::-;80461:197:::0;;;;;:::o;79540:224::-;79614:13;79641:17;79649:8;79641:7;:17::i;:::-;79636:45;;79667:14;;-1:-1:-1;;;79667:14:0;;;;;;;;;;;79636:45;79719:7;79728:19;:8;:17;:19::i;:::-;79702:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79688:70;;79540:224;;;:::o;78723:324::-;60432:13;:11;:13::i;:::-;78844:36;;::::1;78840:68;;78889:19;;-1:-1:-1::0;;;78889:19:0::1;;;;;;;;;;;78840:68;78939:8;78934:101;78953:21;::::0;::::1;::::0;-1:-1:-1;78934:101:0::1;;;78992:33;78998:10;;79009:1;78998:13;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;79013:8;;79022:1;79013:11;;;;;;;;;:::i;:::-;;;;;;;78992:5;:33::i;:::-;78976:3;;78934:101;;79154:82:::0;60432:13;:11;:13::i;:::-;79220:10:::1;::::0;;-1:-1:-1;;79206:24:0;::::1;79220:10;::::0;;::::1;79219:11;79206:24;::::0;;79154:82::o;78604:113::-;60432:13;:11;:13::i;:::-;78688:23:::1;78694:3;78699:11;78688:5;:23::i;61452:201::-:0;60432:13;:11;:13::i;:::-;-1:-1:-1;;;;;61541:22:0;::::1;61533:73;;;::::0;-1:-1:-1;;;61533:73:0;;9613:2:1;61533:73:0::1;::::0;::::1;9595:21:1::0;9652:2;9632:18;;;9625:30;9691:34;9671:18;;;9664:62;-1:-1:-1;;;9742:18:1;;;9735:36;9788:19;;61533:73:0::1;;;;;;;;;61617:28;61636:8;61617:18;:28::i;32747:282::-:0;32812:4;32868:7;79141:1;32849:26;;:66;;;;;32902:13;;32892:7;:23;32849:66;:153;;;;-1:-1:-1;;32953:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;32953:44:0;:49;;32747:282::o;4627:419::-;3148:42;4818:45;:49;4814:225;;4889:67;;-1:-1:-1;;;4889:67:0;;4940:4;4889:67;;;10030:34:1;-1:-1:-1;;;;;10100:15:1;;10080:18;;;10073:43;3148:42:0;;4889;;9965:18:1;;4889:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4884:144;;4984:28;;-1:-1:-1;;;4984:28:0;;-1:-1:-1;;;;;1714:32:1;;4984:28:0;;;1696:51:1;1669:18;;4984:28:0;1550:203:1;31093:124:0;31182:27;31191:2;31195:7;31204:4;31182:8;:27::i;35015:2825::-;35157:27;35187;35206:7;35187:18;:27::i;:::-;35157:57;;35272:4;-1:-1:-1;;;;;35231:45:0;35247:19;-1:-1:-1;;;;;35231:45:0;;35227:86;;35285:28;;-1:-1:-1;;;35285:28:0;;;;;;;;;;;35227:86;35327:27;34123:24;;;:15;:24;;;;;34351:26;;56440:10;33748:30;;;-1:-1:-1;;;;;33441:28:0;;33726:20;;;33723:56;35513:180;;35606:43;35623:4;56440:10;32325:164;:::i;35606:43::-;35601:92;;35658:35;;-1:-1:-1;;;35658:35:0;;;;;;;;;;;35601:92;-1:-1:-1;;;;;35710:16:0;;35706:52;;35735:23;;-1:-1:-1;;;35735:23:0;;;;;;;;;;;35706:52;35907:15;35904:160;;;36047:1;36026:19;36019:30;35904:160;-1:-1:-1;;;;;36444:24:0;;;;;;;:18;:24;;;;;;36442:26;;-1:-1:-1;;36442:26:0;;;36513:22;;;;;;;;;36511:24;;-1:-1:-1;36511:24:0;;;30195:11;30170:23;30166:41;30153:63;-1:-1:-1;;;30153:63:0;36806:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;37101:47:0;;:52;;37097:627;;37206:1;37196:11;;37174:19;37329:30;;;:17;:30;;;;;;:35;;37325:384;;37467:13;;37452:11;:28;37448:242;;37614:30;;;;:17;:30;;;;;:52;;;37448:242;37155:569;37097:627;37771:7;37767:2;-1:-1:-1;;;;;37752:27:0;37761:4;-1:-1:-1;;;;;37752:27:0;;;;;;;;;;;35146:2694;;;35015:2825;;;:::o;60711:132::-;60619:6;;-1:-1:-1;;;;;60619:6:0;56440:10;60775:23;60767:68;;;;-1:-1:-1;;;60767:68:0;;10579:2:1;60767:68:0;;;10561:21:1;;;10598:18;;;10591:30;10657:34;10637:18;;;10630:62;10709:18;;60767:68:0;10377:356:1;37936:193:0;38082:39;38099:4;38105:2;38109:7;38082:39;;;;;;;;;;;;:16;:39::i;27524:1712::-;27591:14;27641:7;79141:1;27622:26;27618:1562;;-1:-1:-1;27674:26:0;;;;:17;:26;;;;;;;-1:-1:-1;;;27750:24:0;;:29;;27746:1423;;27889:6;27899:1;27889:11;27885:981;;27940:13;;27929:7;:24;27925:68;;27962:31;;-1:-1:-1;;;27962:31:0;;;;;;;;;;;27925:68;28590:257;-1:-1:-1;;;28694:9:0;28676:28;;;;:17;:28;;;;;;28758:25;;28590:257;28758:25;;27524:1712;;;:::o;27746:1423::-;29197:31;;-1:-1:-1;;;29197:31:0;;;;;;;;;;;61813:191;61906:6;;;-1:-1:-1;;;;;61923:17:0;;;-1:-1:-1;;;;;;61923:17:0;;;;;;;61956:40;;61906:6;;;61923:17;61906:6;;61956:40;;61887:16;;61956:40;61876:128;61813:191;:::o;42396:2966::-;42469:20;42492:13;;;42520;;;42516:44;;42542:18;;-1:-1:-1;;;42542:18:0;;;;;;;;;;;42516:44;-1:-1:-1;;;;;43048:22:0;;;;;;:18;:22;;;;16208:2;43048:22;;;:71;;43086:32;43074:45;;43048:71;;;43362:31;;;:17;:31;;;;;-1:-1:-1;30626:15:0;;30600:24;30596:46;30195:11;30170:23;30166:41;30163:52;30153:63;;43362:173;;43597:23;;;;43362:31;;43048:22;;44362:25;43048:22;;44215:335;44876:1;44862:12;44858:20;44816:346;44917:3;44908:7;44905:16;44816:346;;45135:7;45125:8;45122:1;45095:25;45092:1;45089;45084:59;44970:1;44957:15;44816:346;;;44820:77;45195:8;45207:1;45195:13;45191:45;;45217:19;;-1:-1:-1;;;45217:19:0;;;;;;;;;;;45191:45;45253:13;:19;-1:-1:-1;79946:159:0;;;:::o;31934:234::-;56440:10;32029:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32029:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32029:60:0;;;;;;;;;;32105:55;;540:41:1;;;32029:49:0;;56440:10;32105:55;;513:18:1;32105:55:0;;;;;;;31934:234;;:::o;38727:407::-;38902:31;38915:4;38921:2;38925:7;38902:12;:31::i;:::-;-1:-1:-1;;;;;38948:14:0;;;:19;38944:183;;38987:56;39018:4;39024:2;39028:7;39037:5;38987:30;:56::i;:::-;38982:145;;39071:40;;-1:-1:-1;;;39071:40:0;;;;;;;;;;;75422:716;75478:13;75529:14;75546:17;75557:5;75546:10;:17::i;:::-;75566:1;75546:21;75529:38;;75582:20;75616:6;75605:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75605:18:0;-1:-1:-1;75582:41:0;-1:-1:-1;75747:28:0;;;75763:2;75747:28;75804:288;-1:-1:-1;;75836:5:0;-1:-1:-1;;;75973:2:0;75962:14;;75957:30;75836:5;75944:44;76034:2;76025:11;;;-1:-1:-1;76055:21:0;75804:288;76055:21;-1:-1:-1;76113:6:0;75422:716;-1:-1:-1;;;75422:716:0:o;49805:492::-;49934:13;49950:16;49958:7;49950;:16::i;:::-;49934:32;;49983:13;49979:219;;;56440:10;-1:-1:-1;;;;;50015:28:0;;;50011:187;;50067:44;50084:5;56440:10;32325:164;:::i;50067:44::-;50062:136;;50143:35;;-1:-1:-1;;;50143:35:0;;;;;;;;;;;50062:136;50210:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;50210:35:0;-1:-1:-1;;;;;50210:35:0;;;;;;;;;50261:28;;50210:24;;50261:28;;;;;;;49923:374;49805:492;;;:::o;41218:716::-;41402:88;;-1:-1:-1;;;41402:88:0;;41381:4;;-1:-1:-1;;;;;41402:45:0;;;;;:88;;56440:10;;41469:4;;41475:7;;41484:5;;41402:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41402:88:0;;;;;;;;-1:-1:-1;;41402:88:0;;;;;;;;;;;;:::i;:::-;;;41398:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41685:6;:13;41702:1;41685:18;41681:235;;41731:40;;-1:-1:-1;;;41731:40:0;;;;;;;;;;;41681:235;41874:6;41868:13;41859:6;41855:2;41851:15;41844:38;41398:529;-1:-1:-1;;;;;;41561:64:0;-1:-1:-1;;;41561:64:0;;-1:-1:-1;41398:529:0;41218:716;;;;;;:::o;72235:922::-;72288:7;;-1:-1:-1;;;72366:15:0;;72362:102;;-1:-1:-1;;;72402:15:0;;;-1:-1:-1;72446:2:0;72436:12;72362:102;72491:6;72482:5;:15;72478:102;;72527:6;72518:15;;;-1:-1:-1;72562:2:0;72552:12;72478:102;72607:6;72598:5;:15;72594:102;;72643:6;72634:15;;;-1:-1:-1;72678:2:0;72668:12;72594:102;72723:5;72714;:14;72710:99;;72758:5;72749:14;;;-1:-1:-1;72792:1:0;72782:11;72710:99;72836:5;72827;:14;72823:99;;72871:5;72862:14;;;-1:-1:-1;72905:1:0;72895:11;72823:99;72949:5;72940;:14;72936:99;;72984:5;72975:14;;;-1:-1:-1;73018:1:0;73008:11;72936:99;73062:5;73053;:14;73049:66;;73098:1;73088:11;73143:6;72235:922;-1:-1:-1;;72235:922:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2949:127::-;3010:10;3005:3;3001:20;2998:1;2991:31;3041:4;3038:1;3031:15;3065:4;3062:1;3055:15;3081:632;3146:5;3176:18;3217:2;3209:6;3206:14;3203:40;;;3223:18;;:::i;:::-;3298:2;3292:9;3266:2;3352:15;;-1:-1:-1;;3348:24:1;;;3374:2;3344:33;3340:42;3328:55;;;3398:18;;;3418:22;;;3395:46;3392:72;;;3444:18;;:::i;:::-;3484:10;3480:2;3473:22;3513:6;3504:15;;3543:6;3535;3528:22;3583:3;3574:6;3569:3;3565:16;3562:25;3559:45;;;3600:1;3597;3590:12;3559:45;3650:6;3645:3;3638:4;3630:6;3626:17;3613:44;3705:1;3698:4;3689:6;3681;3677:19;3673:30;3666:41;;;;3081:632;;;;;:::o;3718:451::-;3787:6;3840:2;3828:9;3819:7;3815:23;3811:32;3808:52;;;3856:1;3853;3846:12;3808:52;3896:9;3883:23;3929:18;3921:6;3918:30;3915:50;;;3961:1;3958;3951:12;3915:50;3984:22;;4037:4;4029:13;;4025:27;-1:-1:-1;4015:55:1;;4066:1;4063;4056:12;4015:55;4089:74;4155:7;4150:2;4137:16;4132:2;4128;4124:11;4089:74;:::i;4174:186::-;4233:6;4286:2;4274:9;4265:7;4261:23;4257:32;4254:52;;;4302:1;4299;4292:12;4254:52;4325:29;4344:9;4325:29;:::i;4365:118::-;4451:5;4444:13;4437:21;4430:5;4427:32;4417:60;;4473:1;4470;4463:12;4488:315;4553:6;4561;4614:2;4602:9;4593:7;4589:23;4585:32;4582:52;;;4630:1;4627;4620:12;4582:52;4653:29;4672:9;4653:29;:::i;:::-;4643:39;;4732:2;4721:9;4717:18;4704:32;4745:28;4767:5;4745:28;:::i;:::-;4792:5;4782:15;;;4488:315;;;;;:::o;4808:667::-;4903:6;4911;4919;4927;4980:3;4968:9;4959:7;4955:23;4951:33;4948:53;;;4997:1;4994;4987:12;4948:53;5020:29;5039:9;5020:29;:::i;:::-;5010:39;;5068:38;5102:2;5091:9;5087:18;5068:38;:::i;:::-;5058:48;;5153:2;5142:9;5138:18;5125:32;5115:42;;5208:2;5197:9;5193:18;5180:32;5235:18;5227:6;5224:30;5221:50;;;5267:1;5264;5257:12;5221:50;5290:22;;5343:4;5335:13;;5331:27;-1:-1:-1;5321:55:1;;5372:1;5369;5362:12;5321:55;5395:74;5461:7;5456:2;5443:16;5438:2;5434;5430:11;5395:74;:::i;:::-;5385:84;;;4808:667;;;;;;;:::o;5480:367::-;5543:8;5553:6;5607:3;5600:4;5592:6;5588:17;5584:27;5574:55;;5625:1;5622;5615:12;5574:55;-1:-1:-1;5648:20:1;;5691:18;5680:30;;5677:50;;;5723:1;5720;5713:12;5677:50;5760:4;5752:6;5748:17;5736:29;;5820:3;5813:4;5803:6;5800:1;5796:14;5788:6;5784:27;5780:38;5777:47;5774:67;;;5837:1;5834;5827:12;5774:67;5480:367;;;;;:::o;5852:773::-;5974:6;5982;5990;5998;6051:2;6039:9;6030:7;6026:23;6022:32;6019:52;;;6067:1;6064;6057:12;6019:52;6107:9;6094:23;6136:18;6177:2;6169:6;6166:14;6163:34;;;6193:1;6190;6183:12;6163:34;6232:70;6294:7;6285:6;6274:9;6270:22;6232:70;:::i;:::-;6321:8;;-1:-1:-1;6206:96:1;-1:-1:-1;6409:2:1;6394:18;;6381:32;;-1:-1:-1;6425:16:1;;;6422:36;;;6454:1;6451;6444:12;6422:36;;6493:72;6557:7;6546:8;6535:9;6531:24;6493:72;:::i;:::-;5852:773;;;;-1:-1:-1;6584:8:1;-1:-1:-1;;;;5852:773:1:o;6630:260::-;6698:6;6706;6759:2;6747:9;6738:7;6734:23;6730:32;6727:52;;;6775:1;6772;6765:12;6727:52;6798:29;6817:9;6798:29;:::i;:::-;6788:39;;6846:38;6880:2;6869:9;6865:18;6846:38;:::i;:::-;6836:48;;6630:260;;;;;:::o;6895:254::-;6963:6;6971;7024:2;7012:9;7003:7;6999:23;6995:32;6992:52;;;7040:1;7037;7030:12;6992:52;7076:9;7063:23;7053:33;;7105:38;7139:2;7128:9;7124:18;7105:38;:::i;7154:380::-;7233:1;7229:12;;;;7276;;;7297:61;;7351:4;7343:6;7339:17;7329:27;;7297:61;7404:2;7396:6;7393:14;7373:18;7370:38;7367:161;;7450:10;7445:3;7441:20;7438:1;7431:31;7485:4;7482:1;7475:15;7513:4;7510:1;7503:15;7367:161;;7154:380;;;:::o;7665:185::-;7707:3;7745:5;7739:12;7760:52;7805:6;7800:3;7793:4;7786:5;7782:16;7760:52;:::i;:::-;7828:16;;;;;7665:185;-1:-1:-1;;7665:185:1:o;7973:1301::-;8250:3;8279:1;8312:6;8306:13;8342:3;8364:1;8392:9;8388:2;8384:18;8374:28;;8452:2;8441:9;8437:18;8474;8464:61;;8518:4;8510:6;8506:17;8496:27;;8464:61;8544:2;8592;8584:6;8581:14;8561:18;8558:38;8555:165;;-1:-1:-1;;;8619:33:1;;8675:4;8672:1;8665:15;8705:4;8626:3;8693:17;8555:165;8736:18;8763:104;;;;8881:1;8876:320;;;;8729:467;;8763:104;-1:-1:-1;;8796:24:1;;8784:37;;8841:16;;;;-1:-1:-1;8763:104:1;;8876:320;7612:1;7605:14;;;7649:4;7636:18;;8971:1;8985:165;8999:6;8996:1;8993:13;8985:165;;;9077:14;;9064:11;;;9057:35;9120:16;;;;9014:10;;8985:165;;;8989:3;;9179:6;9174:3;9170:16;9163:23;;8729:467;;;;;;;9212:56;9237:30;9263:3;9255:6;9237:30;:::i;:::-;-1:-1:-1;;;7915:20:1;;7960:1;7951:11;;7855:113;9212:56;9205:63;7973:1301;-1:-1:-1;;;;;7973:1301:1:o;9279:127::-;9340:10;9335:3;9331:20;9328:1;9321:31;9371:4;9368:1;9361:15;9395:4;9392:1;9385:15;10127:245;10194:6;10247:2;10235:9;10226:7;10222:23;10218:32;10215:52;;;10263:1;10260;10253:12;10215:52;10295:9;10289:16;10314:28;10336:5;10314:28;:::i;10870:500::-;-1:-1:-1;;;;;11139:15:1;;;11121:34;;11191:15;;11186:2;11171:18;;11164:43;11238:2;11223:18;;11216:34;;;11286:3;11281:2;11266:18;;11259:31;;;11064:4;;11307:57;;11344:19;;11336:6;11307:57;:::i;:::-;11299:65;10870:500;-1:-1:-1;;;;;;10870:500:1:o;11375:249::-;11444:6;11497:2;11485:9;11476:7;11472:23;11468:32;11465:52;;;11513:1;11510;11503:12;11465:52;11545:9;11539:16;11564:30;11588:5;11564:30;:::i
Swarm Source
ipfs://7cf2d93bbcb17f2a67e81312ef5d7ecf0798bc779035b3524aa281e3d37e1d28
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.