ERC-721
Source Code
Overview
Max Total Supply
100 CRYPTOART
Holders
47
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CRYPTOARTLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
CryptoArt
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at optimistic.etherscan.io on 2022-08-13 */ // SPDX-License-Identifier: MIT // Sources flattened with hardhat v2.10.1 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // 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 erc721a/contracts/[email protected] // ERC721A Contracts v4.2.0 // 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File erc721a/contracts/[email protected] // ERC721A Contracts v4.2.0 // 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 { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File contracts/CryptoArt.sol pragma solidity ^0.8.4; // Thanks Apetimism (-/|\-) contract CryptoArt is ERC721A, Ownable { string private _baseURIExtended; // // SYMBOL // constructor() ERC721A("CryptoArt", "CRYPTOART") {} // // BASE_URI // function _baseURI() internal view virtual override returns (string memory) { return _baseURIExtended; } function setBaseURI(string memory baseURI) external onlyOwner { _baseURIExtended = baseURI; } // // MINT <3 // function mint(uint256 quantity) external payable onlyOwner { // `_mint`'s second argument now takes in a `quantity`, not a `tokenId`. _mint(msg.sender, quantity); } // // WITHDRAW // function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600981526020017f43727970746f41727400000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f43525950544f4152540000000000000000000000000000000000000000000000815250816002908051906020019062000096929190620001c1565b508060039080519060200190620000af929190620001c1565b50620000c0620000ee60201b60201c565b6000819055505050620000e8620000dc620000f360201b60201c565b620000fb60201b60201c565b620002d6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf9062000271565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b600060028204905060018216806200028a57607f821691505b60208210811415620002a157620002a0620002a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6121fb80620002e66000396000f3fe60806040526004361061011f5760003560e01c806370a08231116100a0578063a22cb46511610064578063a22cb465146103b2578063b88d4fde146103db578063c87b56dd14610404578063e985e9c514610441578063f2fde38b1461047e5761011f565b806370a08231146102ec578063715018a6146103295780638da5cb5b1461034057806395d89b411461036b578063a0712d68146103965761011f565b806323b872dd116100e757806323b872dd1461021d5780633ccfd60b1461024657806342842e0e1461025d57806355f804b3146102865780636352211e146102af5761011f565b806301ffc9a71461012457806306fdde0314610161578063081812fc1461018c578063095ea7b3146101c957806318160ddd146101f2575b600080fd5b34801561013057600080fd5b5061014b60048036038101906101469190611baa565b6104a7565b6040516101589190611e07565b60405180910390f35b34801561016d57600080fd5b50610176610539565b6040516101839190611e22565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae9190611c3d565b6105cb565b6040516101c09190611da0565b60405180910390f35b3480156101d557600080fd5b506101f060048036038101906101eb9190611b6e565b61064a565b005b3480156101fe57600080fd5b5061020761078e565b6040516102149190611e84565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f9190611a68565b6107a5565b005b34801561025257600080fd5b5061025b610aca565b005b34801561026957600080fd5b50610284600480360381019061027f9190611a68565b610b21565b005b34801561029257600080fd5b506102ad60048036038101906102a89190611bfc565b610b41565b005b3480156102bb57600080fd5b506102d660048036038101906102d19190611c3d565b610b63565b6040516102e39190611da0565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190611a03565b610b75565b6040516103209190611e84565b60405180910390f35b34801561033557600080fd5b5061033e610c2e565b005b34801561034c57600080fd5b50610355610c42565b6040516103629190611da0565b60405180910390f35b34801561037757600080fd5b50610380610c6c565b60405161038d9190611e22565b60405180910390f35b6103b060048036038101906103ab9190611c3d565b610cfe565b005b3480156103be57600080fd5b506103d960048036038101906103d49190611b32565b610d13565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190611ab7565b610e8b565b005b34801561041057600080fd5b5061042b60048036038101906104269190611c3d565b610efe565b6040516104389190611e22565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190611a2c565b610f9d565b6040516104759190611e07565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190611a03565b611031565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105489061201f565b80601f01602080910402602001604051908101604052809291908181526020018280546105749061201f565b80156105c15780601f10610596576101008083540402835291602001916105c1565b820191906000526020600020905b8154815290600101906020018083116105a457829003601f168201915b5050505050905090565b60006105d6826110b5565b61060c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065582610b63565b90508073ffffffffffffffffffffffffffffffffffffffff16610676611114565b73ffffffffffffffffffffffffffffffffffffffff16146106d9576106a28161069d611114565b610f9d565b6106d8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061079861111c565b6001546000540303905090565b60006107b082611121565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610817576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610823846111ef565b915091506108398187610834611114565b611216565b6108855761084e86610849611114565b610f9d565b610884576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156108ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108f9868686600161125a565b801561090457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109d2856109ae888887611260565b7c020000000000000000000000000000000000000000000000000000000017611288565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a5a576000600185019050600060046000838152602001908152602001600020541415610a58576000548114610a57578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ac286868660016112b3565b505050505050565b610ad26112b9565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b1d573d6000803e3d6000fd5b5050565b610b3c83838360405180602001604052806000815250610e8b565b505050565b610b496112b9565b8060099080519060200190610b5f929190611827565b5050565b6000610b6e82611121565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c366112b9565b610c406000611337565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c7b9061201f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca79061201f565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b5050505050905090565b610d066112b9565b610d1033826113fd565b50565b610d1b611114565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d80576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d8d611114565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e3a611114565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e7f9190611e07565b60405180910390a35050565b610e968484846107a5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610ef857610ec1848484846115ba565b610ef7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610f09826110b5565b610f3f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f4961171a565b9050600081511415610f6a5760405180602001604052806000815250610f95565b80610f74846117ac565b604051602001610f85929190611d7c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110396112b9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090611e44565b60405180910390fd5b6110b281611337565b50565b6000816110c061111c565b111580156110cf575060005482105b801561110d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061113061111c565b116111b8576000548110156111b75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156111b5575b60008114156111ab576004600083600190039350838152602001908152602001600020549050611180565b80925050506111ea565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611277868684611806565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6112c161180f565b73ffffffffffffffffffffffffffffffffffffffff166112df610c42565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90611e64565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082141561143e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144b600084838561125a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506114c2836114b36000866000611260565b6114bc85611817565b17611288565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461156357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611528565b50600082141561159f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506115b560008483856112b3565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026115e0611114565b8786866040518563ffffffff1660e01b81526004016116029493929190611dbb565b602060405180830381600087803b15801561161c57600080fd5b505af192505050801561164d57506040513d601f19601f8201168201806040525081019061164a9190611bd3565b60015b6116c7573d806000811461167d576040519150601f19603f3d011682016040523d82523d6000602084013e611682565b606091505b506000815114156116bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546117299061201f565b80601f01602080910402602001604051908101604052809291908181526020018280546117559061201f565b80156117a25780601f10611777576101008083540402835291602001916117a2565b820191906000526020600020905b81548152906001019060200180831161178557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156117f257600183039250600a81066030018353600a810490506117d2565b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b8280546118339061201f565b90600052602060002090601f016020900481019282611855576000855561189c565b82601f1061186e57805160ff191683800117855561189c565b8280016001018555821561189c579182015b8281111561189b578251825591602001919060010190611880565b5b5090506118a991906118ad565b5090565b5b808211156118c65760008160009055506001016118ae565b5090565b60006118dd6118d884611ec4565b611e9f565b9050828152602081018484840111156118f557600080fd5b611900848285611fdd565b509392505050565b600061191b61191684611ef5565b611e9f565b90508281526020810184848401111561193357600080fd5b61193e848285611fdd565b509392505050565b60008135905061195581612169565b92915050565b60008135905061196a81612180565b92915050565b60008135905061197f81612197565b92915050565b60008151905061199481612197565b92915050565b600082601f8301126119ab57600080fd5b81356119bb8482602086016118ca565b91505092915050565b600082601f8301126119d557600080fd5b81356119e5848260208601611908565b91505092915050565b6000813590506119fd816121ae565b92915050565b600060208284031215611a1557600080fd5b6000611a2384828501611946565b91505092915050565b60008060408385031215611a3f57600080fd5b6000611a4d85828601611946565b9250506020611a5e85828601611946565b9150509250929050565b600080600060608486031215611a7d57600080fd5b6000611a8b86828701611946565b9350506020611a9c86828701611946565b9250506040611aad868287016119ee565b9150509250925092565b60008060008060808587031215611acd57600080fd5b6000611adb87828801611946565b9450506020611aec87828801611946565b9350506040611afd878288016119ee565b925050606085013567ffffffffffffffff811115611b1a57600080fd5b611b268782880161199a565b91505092959194509250565b60008060408385031215611b4557600080fd5b6000611b5385828601611946565b9250506020611b648582860161195b565b9150509250929050565b60008060408385031215611b8157600080fd5b6000611b8f85828601611946565b9250506020611ba0858286016119ee565b9150509250929050565b600060208284031215611bbc57600080fd5b6000611bca84828501611970565b91505092915050565b600060208284031215611be557600080fd5b6000611bf384828501611985565b91505092915050565b600060208284031215611c0e57600080fd5b600082013567ffffffffffffffff811115611c2857600080fd5b611c34848285016119c4565b91505092915050565b600060208284031215611c4f57600080fd5b6000611c5d848285016119ee565b91505092915050565b611c6f81611f69565b82525050565b611c7e81611f7b565b82525050565b6000611c8f82611f26565b611c998185611f3c565b9350611ca9818560208601611fec565b611cb2816120e0565b840191505092915050565b6000611cc882611f31565b611cd28185611f4d565b9350611ce2818560208601611fec565b611ceb816120e0565b840191505092915050565b6000611d0182611f31565b611d0b8185611f5e565b9350611d1b818560208601611fec565b80840191505092915050565b6000611d34602683611f4d565b9150611d3f826120f1565b604082019050919050565b6000611d57602083611f4d565b9150611d6282612140565b602082019050919050565b611d7681611fd3565b82525050565b6000611d888285611cf6565b9150611d948284611cf6565b91508190509392505050565b6000602082019050611db56000830184611c66565b92915050565b6000608082019050611dd06000830187611c66565b611ddd6020830186611c66565b611dea6040830185611d6d565b8181036060830152611dfc8184611c84565b905095945050505050565b6000602082019050611e1c6000830184611c75565b92915050565b60006020820190508181036000830152611e3c8184611cbd565b905092915050565b60006020820190508181036000830152611e5d81611d27565b9050919050565b60006020820190508181036000830152611e7d81611d4a565b9050919050565b6000602082019050611e996000830184611d6d565b92915050565b6000611ea9611eba565b9050611eb58282612051565b919050565b6000604051905090565b600067ffffffffffffffff821115611edf57611ede6120b1565b5b611ee8826120e0565b9050602081019050919050565b600067ffffffffffffffff821115611f1057611f0f6120b1565b5b611f19826120e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611f7482611fb3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561200a578082015181840152602081019050611fef565b83811115612019576000848401525b50505050565b6000600282049050600182168061203757607f821691505b6020821081141561204b5761204a612082565b5b50919050565b61205a826120e0565b810181811067ffffffffffffffff82111715612079576120786120b1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61217281611f69565b811461217d57600080fd5b50565b61218981611f7b565b811461219457600080fd5b50565b6121a081611f87565b81146121ab57600080fd5b50565b6121b781611fd3565b81146121c257600080fd5b5056fea26469706673582212200955a774f466acd98d918693b4ea3cf64efb18c0d1fa264b55c70318dc5a39b964736f6c63430008040033
Deployed Bytecode
0x60806040526004361061011f5760003560e01c806370a08231116100a0578063a22cb46511610064578063a22cb465146103b2578063b88d4fde146103db578063c87b56dd14610404578063e985e9c514610441578063f2fde38b1461047e5761011f565b806370a08231146102ec578063715018a6146103295780638da5cb5b1461034057806395d89b411461036b578063a0712d68146103965761011f565b806323b872dd116100e757806323b872dd1461021d5780633ccfd60b1461024657806342842e0e1461025d57806355f804b3146102865780636352211e146102af5761011f565b806301ffc9a71461012457806306fdde0314610161578063081812fc1461018c578063095ea7b3146101c957806318160ddd146101f2575b600080fd5b34801561013057600080fd5b5061014b60048036038101906101469190611baa565b6104a7565b6040516101589190611e07565b60405180910390f35b34801561016d57600080fd5b50610176610539565b6040516101839190611e22565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae9190611c3d565b6105cb565b6040516101c09190611da0565b60405180910390f35b3480156101d557600080fd5b506101f060048036038101906101eb9190611b6e565b61064a565b005b3480156101fe57600080fd5b5061020761078e565b6040516102149190611e84565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f9190611a68565b6107a5565b005b34801561025257600080fd5b5061025b610aca565b005b34801561026957600080fd5b50610284600480360381019061027f9190611a68565b610b21565b005b34801561029257600080fd5b506102ad60048036038101906102a89190611bfc565b610b41565b005b3480156102bb57600080fd5b506102d660048036038101906102d19190611c3d565b610b63565b6040516102e39190611da0565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190611a03565b610b75565b6040516103209190611e84565b60405180910390f35b34801561033557600080fd5b5061033e610c2e565b005b34801561034c57600080fd5b50610355610c42565b6040516103629190611da0565b60405180910390f35b34801561037757600080fd5b50610380610c6c565b60405161038d9190611e22565b60405180910390f35b6103b060048036038101906103ab9190611c3d565b610cfe565b005b3480156103be57600080fd5b506103d960048036038101906103d49190611b32565b610d13565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190611ab7565b610e8b565b005b34801561041057600080fd5b5061042b60048036038101906104269190611c3d565b610efe565b6040516104389190611e22565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190611a2c565b610f9d565b6040516104759190611e07565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190611a03565b611031565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105489061201f565b80601f01602080910402602001604051908101604052809291908181526020018280546105749061201f565b80156105c15780601f10610596576101008083540402835291602001916105c1565b820191906000526020600020905b8154815290600101906020018083116105a457829003601f168201915b5050505050905090565b60006105d6826110b5565b61060c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065582610b63565b90508073ffffffffffffffffffffffffffffffffffffffff16610676611114565b73ffffffffffffffffffffffffffffffffffffffff16146106d9576106a28161069d611114565b610f9d565b6106d8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061079861111c565b6001546000540303905090565b60006107b082611121565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610817576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610823846111ef565b915091506108398187610834611114565b611216565b6108855761084e86610849611114565b610f9d565b610884576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156108ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108f9868686600161125a565b801561090457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109d2856109ae888887611260565b7c020000000000000000000000000000000000000000000000000000000017611288565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a5a576000600185019050600060046000838152602001908152602001600020541415610a58576000548114610a57578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ac286868660016112b3565b505050505050565b610ad26112b9565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b1d573d6000803e3d6000fd5b5050565b610b3c83838360405180602001604052806000815250610e8b565b505050565b610b496112b9565b8060099080519060200190610b5f929190611827565b5050565b6000610b6e82611121565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c366112b9565b610c406000611337565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c7b9061201f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca79061201f565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b5050505050905090565b610d066112b9565b610d1033826113fd565b50565b610d1b611114565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d80576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d8d611114565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e3a611114565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e7f9190611e07565b60405180910390a35050565b610e968484846107a5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610ef857610ec1848484846115ba565b610ef7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610f09826110b5565b610f3f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f4961171a565b9050600081511415610f6a5760405180602001604052806000815250610f95565b80610f74846117ac565b604051602001610f85929190611d7c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110396112b9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090611e44565b60405180910390fd5b6110b281611337565b50565b6000816110c061111c565b111580156110cf575060005482105b801561110d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061113061111c565b116111b8576000548110156111b75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156111b5575b60008114156111ab576004600083600190039350838152602001908152602001600020549050611180565b80925050506111ea565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611277868684611806565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6112c161180f565b73ffffffffffffffffffffffffffffffffffffffff166112df610c42565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90611e64565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082141561143e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144b600084838561125a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506114c2836114b36000866000611260565b6114bc85611817565b17611288565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461156357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611528565b50600082141561159f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506115b560008483856112b3565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026115e0611114565b8786866040518563ffffffff1660e01b81526004016116029493929190611dbb565b602060405180830381600087803b15801561161c57600080fd5b505af192505050801561164d57506040513d601f19601f8201168201806040525081019061164a9190611bd3565b60015b6116c7573d806000811461167d576040519150601f19603f3d011682016040523d82523d6000602084013e611682565b606091505b506000815114156116bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546117299061201f565b80601f01602080910402602001604051908101604052809291908181526020018280546117559061201f565b80156117a25780601f10611777576101008083540402835291602001916117a2565b820191906000526020600020905b81548152906001019060200180831161178557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156117f257600183039250600a81066030018353600a810490506117d2565b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b8280546118339061201f565b90600052602060002090601f016020900481019282611855576000855561189c565b82601f1061186e57805160ff191683800117855561189c565b8280016001018555821561189c579182015b8281111561189b578251825591602001919060010190611880565b5b5090506118a991906118ad565b5090565b5b808211156118c65760008160009055506001016118ae565b5090565b60006118dd6118d884611ec4565b611e9f565b9050828152602081018484840111156118f557600080fd5b611900848285611fdd565b509392505050565b600061191b61191684611ef5565b611e9f565b90508281526020810184848401111561193357600080fd5b61193e848285611fdd565b509392505050565b60008135905061195581612169565b92915050565b60008135905061196a81612180565b92915050565b60008135905061197f81612197565b92915050565b60008151905061199481612197565b92915050565b600082601f8301126119ab57600080fd5b81356119bb8482602086016118ca565b91505092915050565b600082601f8301126119d557600080fd5b81356119e5848260208601611908565b91505092915050565b6000813590506119fd816121ae565b92915050565b600060208284031215611a1557600080fd5b6000611a2384828501611946565b91505092915050565b60008060408385031215611a3f57600080fd5b6000611a4d85828601611946565b9250506020611a5e85828601611946565b9150509250929050565b600080600060608486031215611a7d57600080fd5b6000611a8b86828701611946565b9350506020611a9c86828701611946565b9250506040611aad868287016119ee565b9150509250925092565b60008060008060808587031215611acd57600080fd5b6000611adb87828801611946565b9450506020611aec87828801611946565b9350506040611afd878288016119ee565b925050606085013567ffffffffffffffff811115611b1a57600080fd5b611b268782880161199a565b91505092959194509250565b60008060408385031215611b4557600080fd5b6000611b5385828601611946565b9250506020611b648582860161195b565b9150509250929050565b60008060408385031215611b8157600080fd5b6000611b8f85828601611946565b9250506020611ba0858286016119ee565b9150509250929050565b600060208284031215611bbc57600080fd5b6000611bca84828501611970565b91505092915050565b600060208284031215611be557600080fd5b6000611bf384828501611985565b91505092915050565b600060208284031215611c0e57600080fd5b600082013567ffffffffffffffff811115611c2857600080fd5b611c34848285016119c4565b91505092915050565b600060208284031215611c4f57600080fd5b6000611c5d848285016119ee565b91505092915050565b611c6f81611f69565b82525050565b611c7e81611f7b565b82525050565b6000611c8f82611f26565b611c998185611f3c565b9350611ca9818560208601611fec565b611cb2816120e0565b840191505092915050565b6000611cc882611f31565b611cd28185611f4d565b9350611ce2818560208601611fec565b611ceb816120e0565b840191505092915050565b6000611d0182611f31565b611d0b8185611f5e565b9350611d1b818560208601611fec565b80840191505092915050565b6000611d34602683611f4d565b9150611d3f826120f1565b604082019050919050565b6000611d57602083611f4d565b9150611d6282612140565b602082019050919050565b611d7681611fd3565b82525050565b6000611d888285611cf6565b9150611d948284611cf6565b91508190509392505050565b6000602082019050611db56000830184611c66565b92915050565b6000608082019050611dd06000830187611c66565b611ddd6020830186611c66565b611dea6040830185611d6d565b8181036060830152611dfc8184611c84565b905095945050505050565b6000602082019050611e1c6000830184611c75565b92915050565b60006020820190508181036000830152611e3c8184611cbd565b905092915050565b60006020820190508181036000830152611e5d81611d27565b9050919050565b60006020820190508181036000830152611e7d81611d4a565b9050919050565b6000602082019050611e996000830184611d6d565b92915050565b6000611ea9611eba565b9050611eb58282612051565b919050565b6000604051905090565b600067ffffffffffffffff821115611edf57611ede6120b1565b5b611ee8826120e0565b9050602081019050919050565b600067ffffffffffffffff821115611f1057611f0f6120b1565b5b611f19826120e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611f7482611fb3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561200a578082015181840152602081019050611fef565b83811115612019576000848401525b50505050565b6000600282049050600182168061203757607f821691505b6020821081141561204b5761204a612082565b5b50919050565b61205a826120e0565b810181811067ffffffffffffffff82111715612079576120786120b1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61217281611f69565b811461217d57600080fd5b50565b61218981611f7b565b811461219457600080fd5b50565b6121a081611f87565b81146121ab57600080fd5b50565b6121b781611fd3565b81146121c257600080fd5b5056fea26469706673582212200955a774f466acd98d918693b4ea3cf64efb18c0d1fa264b55c70318dc5a39b964736f6c63430008040033
Deployed Bytecode Sourcemap
55053:856:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22146:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23048:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29531:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28972:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18799:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33238:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55761:143;;;;;;;;;;;;;:::i;:::-;;36151:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55386:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24441:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19983:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2884:103;;;;;;;;;;;;;:::i;:::-;;2236:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23224:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55533:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30089:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36934:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23434:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30554:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3142:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22146:639;22231:4;22570:10;22555:25;;:11;:25;;;;:102;;;;22647:10;22632:25;;:11;:25;;;;22555:102;:179;;;;22724:10;22709:25;;:11;:25;;;;22555:179;22535:199;;22146:639;;;:::o;23048:100::-;23102:13;23135:5;23128:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23048:100;:::o;29531:218::-;29607:7;29632:16;29640:7;29632;:16::i;:::-;29627:64;;29657:34;;;;;;;;;;;;;;29627:64;29711:15;:24;29727:7;29711:24;;;;;;;;;;;:30;;;;;;;;;;;;29704:37;;29531:218;;;:::o;28972:400::-;29053:13;29069:16;29077:7;29069;:16::i;:::-;29053:32;;29125:5;29102:28;;:19;:17;:19::i;:::-;:28;;;29098:175;;29150:44;29167:5;29174:19;:17;:19::i;:::-;29150:16;:44::i;:::-;29145:128;;29222:35;;;;;;;;;;;;;;29145:128;29098:175;29318:2;29285:15;:24;29301:7;29285:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29356:7;29352:2;29336:28;;29345:5;29336:28;;;;;;;;;;;;28972:400;;;:::o;18799:323::-;18860:7;19088:15;:13;:15::i;:::-;19073:12;;19057:13;;:28;:46;19050:53;;18799:323;:::o;33238:2817::-;33372:27;33402;33421:7;33402:18;:27::i;:::-;33372:57;;33487:4;33446:45;;33462:19;33446:45;;;33442:86;;33500:28;;;;;;;;;;;;;;33442:86;33542:27;33571:23;33598:35;33625:7;33598:26;:35::i;:::-;33541:92;;;;33733:68;33758:15;33775:4;33781:19;:17;:19::i;:::-;33733:24;:68::i;:::-;33728:180;;33821:43;33838:4;33844:19;:17;:19::i;:::-;33821:16;:43::i;:::-;33816:92;;33873:35;;;;;;;;;;;;;;33816:92;33728:180;33939:1;33925:16;;:2;:16;;;33921:52;;;33950:23;;;;;;;;;;;;;;33921:52;33986:43;34008:4;34014:2;34018:7;34027:1;33986:21;:43::i;:::-;34122:15;34119:2;;;34262:1;34241:19;34234:30;34119:2;34659:18;:24;34678:4;34659:24;;;;;;;;;;;;;;;;34657:26;;;;;;;;;;;;34728:18;:22;34747:2;34728:22;;;;;;;;;;;;;;;;34726:24;;;;;;;;;;;35050:146;35087:2;35136:45;35151:4;35157:2;35161:19;35136:14;:45::i;:::-;15198:8;35108:73;35050:18;:146::i;:::-;35021:17;:26;35039:7;35021:26;;;;;;;;;;;:175;;;;35367:1;15198:8;35316:19;:47;:52;35312:627;;;35389:19;35421:1;35411:7;:11;35389:33;;35578:1;35544:17;:30;35562:11;35544:30;;;;;;;;;;;;:35;35540:384;;;35682:13;;35667:11;:28;35663:242;;35862:19;35829:17;:30;35847:11;35829:30;;;;;;;;;;;:52;;;;35663:242;35540:384;35312:627;;35986:7;35982:2;35967:27;;35976:4;35967:27;;;;;;;;;;;;36005:42;36026:4;36032:2;36036:7;36045:1;36005:20;:42::i;:::-;33238:2817;;;;;;:::o;55761:143::-;2122:13;:11;:13::i;:::-;55809:15:::1;55827:21;55809:39;;55867:10;55859:28;;:37;55888:7;55859:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2146:1;55761:143::o:0;36151:185::-;36289:39;36306:4;36312:2;36316:7;36289:39;;;;;;;;;;;;:16;:39::i;:::-;36151:185;;;:::o;55386:107::-;2122:13;:11;:13::i;:::-;55478:7:::1;55459:16;:26;;;;;;;;;;;;:::i;:::-;;55386:107:::0;:::o;24441:152::-;24513:7;24556:27;24575:7;24556:18;:27::i;:::-;24533:52;;24441:152;;;:::o;19983:233::-;20055:7;20096:1;20079:19;;:5;:19;;;20075:60;;;20107:28;;;;;;;;;;;;;;20075:60;14142:13;20153:18;:25;20172:5;20153:25;;;;;;;;;;;;;;;;:55;20146:62;;19983:233;;;:::o;2884:103::-;2122:13;:11;:13::i;:::-;2949:30:::1;2976:1;2949:18;:30::i;:::-;2884:103::o:0;2236:87::-;2282:7;2309:6;;;;;;;;;;;2302:13;;2236:87;:::o;23224:104::-;23280:13;23313:7;23306:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23224:104;:::o;55533:187::-;2122:13;:11;:13::i;:::-;55685:27:::1;55691:10;55703:8;55685:5;:27::i;:::-;55533:187:::0;:::o;30089:308::-;30200:19;:17;:19::i;:::-;30188:31;;:8;:31;;;30184:61;;;30228:17;;;;;;;;;;;;;;30184:61;30310:8;30258:18;:39;30277:19;:17;:19::i;:::-;30258:39;;;;;;;;;;;;;;;:49;30298:8;30258:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30370:8;30334:55;;30349:19;:17;:19::i;:::-;30334:55;;;30380:8;30334:55;;;;;;:::i;:::-;;;;;;;;30089:308;;:::o;36934:399::-;37101:31;37114:4;37120:2;37124:7;37101:12;:31::i;:::-;37165:1;37147:2;:14;;;:19;37143:183;;37186:56;37217:4;37223:2;37227:7;37236:5;37186:30;:56::i;:::-;37181:145;;37270:40;;;;;;;;;;;;;;37181:145;37143:183;36934:399;;;;:::o;23434:318::-;23507:13;23538:16;23546:7;23538;:16::i;:::-;23533:59;;23563:29;;;;;;;;;;;;;;23533:59;23605:21;23629:10;:8;:10::i;:::-;23605:34;;23682:1;23663:7;23657:21;:26;;:87;;;;;;;;;;;;;;;;;23710:7;23719:18;23729:7;23719:9;:18::i;:::-;23693:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23657:87;23650:94;;;23434:318;;;:::o;30554:164::-;30651:4;30675:18;:25;30694:5;30675:25;;;;;;;;;;;;;;;:35;30701:8;30675:35;;;;;;;;;;;;;;;;;;;;;;;;;30668:42;;30554:164;;;;:::o;3142:201::-;2122:13;:11;:13::i;:::-;3251:1:::1;3231:22;;:8;:22;;;;3223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3307:28;3326:8;3307:18;:28::i;:::-;3142:201:::0;:::o;30976:282::-;31041:4;31097:7;31078:15;:13;:15::i;:::-;:26;;:66;;;;;31131:13;;31121:7;:23;31078:66;:153;;;;;31230:1;14918:8;31182:17;:26;31200:7;31182:26;;;;;;;;;;;;:44;:49;31078:153;31058:173;;30976:282;;;:::o;52742:105::-;52802:7;52829:10;52822:17;;52742:105;:::o;18315:92::-;18371:7;18315:92;:::o;25596:1275::-;25663:7;25683:12;25698:7;25683:22;;25766:4;25747:15;:13;:15::i;:::-;:23;25743:1061;;25800:13;;25793:4;:20;25789:1015;;;25838:14;25855:17;:23;25873:4;25855:23;;;;;;;;;;;;25838:40;;25972:1;14918:8;25944:6;:24;:29;25940:845;;;26609:113;26626:1;26616:6;:11;26609:113;;;26669:17;:25;26687:6;;;;;;;26669:25;;;;;;;;;;;;26660:34;;26609:113;;;26755:6;26748:13;;;;;;25940:845;25789:1015;;25743:1061;26832:31;;;;;;;;;;;;;;25596:1275;;;;:::o;32139:479::-;32241:27;32270:23;32311:38;32352:15;:24;32368:7;32352:24;;;;;;;;;;;32311:65;;32523:18;32500:41;;32580:19;32574:26;32555:45;;32485:126;;;;:::o;31367:659::-;31516:11;31681:16;31674:5;31670:28;31661:37;;31841:16;31830:9;31826:32;31813:45;;31991:15;31980:9;31977:30;31969:5;31958:9;31955:20;31952:56;31942:66;;31549:470;;;;;:::o;37995:159::-;;;;;:::o;52051:311::-;52186:7;52206:16;15322:3;52232:19;:41;;52206:68;;15322:3;52300:31;52311:4;52317:2;52321:9;52300:10;:31::i;:::-;52292:40;;:62;;52285:69;;;52051:311;;;;;:::o;27419:450::-;27499:14;27667:16;27660:5;27656:28;27647:37;;27844:5;27830:11;27805:23;27801:41;27798:52;27791:5;27788:63;27778:73;;27535:327;;;;:::o;38819:158::-;;;;;:::o;2401:132::-;2476:12;:10;:12::i;:::-;2465:23;;:7;:5;:7::i;:::-;:23;;;2457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2401:132::o;3503:191::-;3577:16;3596:6;;;;;;;;;;;3577:25;;3622:8;3613:6;;:17;;;;;;;;;;;;;;;;;;3677:8;3646:40;;3667:8;3646:40;;;;;;;;;;;;3503:191;;:::o;40595:2454::-;40668:20;40691:13;;40668:36;;40731:1;40719:8;:13;40715:44;;;40741:18;;;;;;;;;;;;;;40715:44;40772:61;40802:1;40806:2;40810:12;40824:8;40772:21;:61::i;:::-;41316:1;14280:2;41286:1;:26;;41285:32;41273:8;:45;41247:18;:22;41266:2;41247:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41595:139;41632:2;41686:33;41709:1;41713:2;41717:1;41686:14;:33::i;:::-;41653:30;41674:8;41653:20;:30::i;:::-;:66;41595:18;:139::i;:::-;41561:17;:31;41579:12;41561:31;;;;;;;;;;;:173;;;;41751:16;41782:11;41811:8;41796:12;:23;41782:37;;42066:16;42062:2;42058:25;42046:37;;42438:12;42398:8;42357:1;42295:25;42236:1;42175;42148:335;42563:1;42549:12;42545:20;42503:346;42604:3;42595:7;42592:16;42503:346;;42822:7;42812:8;42809:1;42782:25;42779:1;42776;42771:59;42657:1;42648:7;42644:15;42633:26;;42503:346;;;42507:77;42894:1;42882:8;:13;42878:45;;;42904:19;;;;;;;;;;;;;;42878:45;42956:3;42940:13;:19;;;;40595:2454;;42981:60;43010:1;43014:2;43018:12;43032:8;42981:20;:60::i;:::-;40595:2454;;;:::o;39417:716::-;39580:4;39626:2;39601:45;;;39647:19;:17;:19::i;:::-;39668:4;39674:7;39683:5;39601:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39597:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39901:1;39884:6;:13;:18;39880:235;;;39930:40;;;;;;;;;;;;;;39880:235;40073:6;40067:13;40058:6;40054:2;40050:15;40043:38;39597:529;39770:54;;;39760:64;;;:6;:64;;;;39753:71;;;39417:716;;;;;;:::o;55263:117::-;55323:13;55356:16;55349:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55263:117;:::o;52949:2002::-;53014:17;53433:3;53426:4;53420:11;53416:21;53409:28;;53524:3;53518:4;53511:17;53630:3;54086:5;54216:1;54211:3;54207:11;54200:18;;54387:2;54381:4;54377:13;54373:2;54369:22;54364:3;54356:36;54428:2;54422:4;54418:13;54410:21;;53978:731;54447:4;53978:731;;;54638:1;54633:3;54629:11;54622:18;;54689:2;54683:4;54679:13;54675:2;54671:22;54666:3;54658:36;54542:2;54536:4;54532:13;54524:21;;53978:731;;;53982:464;54748:3;54743;54739:13;54863:2;54858:3;54854:12;54847:19;;54926:6;54921:3;54914:19;53053:1891;;;;;:::o;51752:147::-;51889:6;51752:147;;;;;:::o;783:98::-;836:7;863:10;856:17;;783:98;:::o;27971:324::-;28041:14;28274:1;28264:8;28261:15;28235:24;28231:46;28221:56;;28143:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:118::-;8275:24;8293:5;8275:24;:::i;:::-;8270:3;8263:37;8253:53;;:::o;8312:435::-;8492:3;8514:95;8605:3;8596:6;8514:95;:::i;:::-;8507:102;;8626:95;8717:3;8708:6;8626:95;:::i;:::-;8619:102;;8738:3;8731:10;;8496:251;;;;;:::o;8753:222::-;8846:4;8884:2;8873:9;8869:18;8861:26;;8897:71;8965:1;8954:9;8950:17;8941:6;8897:71;:::i;:::-;8851:124;;;;:::o;8981:640::-;9176:4;9214:3;9203:9;9199:19;9191:27;;9228:71;9296:1;9285:9;9281:17;9272:6;9228:71;:::i;:::-;9309:72;9377:2;9366:9;9362:18;9353:6;9309:72;:::i;:::-;9391;9459:2;9448:9;9444:18;9435:6;9391:72;:::i;:::-;9510:9;9504:4;9500:20;9495:2;9484:9;9480:18;9473:48;9538:76;9609:4;9600:6;9538:76;:::i;:::-;9530:84;;9181:440;;;;;;;:::o;9627:210::-;9714:4;9752:2;9741:9;9737:18;9729:26;;9765:65;9827:1;9816:9;9812:17;9803:6;9765:65;:::i;:::-;9719:118;;;;:::o;9843:313::-;9956:4;9994:2;9983:9;9979:18;9971:26;;10043:9;10037:4;10033:20;10029:1;10018:9;10014:17;10007:47;10071:78;10144:4;10135:6;10071:78;:::i;:::-;10063:86;;9961:195;;;;:::o;10162:419::-;10328:4;10366:2;10355:9;10351:18;10343:26;;10415:9;10409:4;10405:20;10401:1;10390:9;10386:17;10379:47;10443:131;10569:4;10443:131;:::i;:::-;10435:139;;10333:248;;;:::o;10587:419::-;10753:4;10791:2;10780:9;10776:18;10768:26;;10840:9;10834:4;10830:20;10826:1;10815:9;10811:17;10804:47;10868:131;10994:4;10868:131;:::i;:::-;10860:139;;10758:248;;;:::o;11012:222::-;11105:4;11143:2;11132:9;11128:18;11120:26;;11156:71;11224:1;11213:9;11209:17;11200:6;11156:71;:::i;:::-;11110:124;;;;:::o;11240:129::-;11274:6;11301:20;;:::i;:::-;11291:30;;11330:33;11358:4;11350:6;11330:33;:::i;:::-;11281:88;;;:::o;11375:75::-;11408:6;11441:2;11435:9;11425:19;;11415:35;:::o;11456:307::-;11517:4;11607:18;11599:6;11596:30;11593:2;;;11629:18;;:::i;:::-;11593:2;11667:29;11689:6;11667:29;:::i;:::-;11659:37;;11751:4;11745;11741:15;11733:23;;11522:241;;;:::o;11769:308::-;11831:4;11921:18;11913:6;11910:30;11907:2;;;11943:18;;:::i;:::-;11907:2;11981:29;12003:6;11981:29;:::i;:::-;11973:37;;12065:4;12059;12055:15;12047:23;;11836:241;;;:::o;12083:98::-;12134:6;12168:5;12162:12;12152:22;;12141:40;;;:::o;12187:99::-;12239:6;12273:5;12267:12;12257:22;;12246:40;;;:::o;12292:168::-;12375:11;12409:6;12404:3;12397:19;12449:4;12444:3;12440:14;12425:29;;12387:73;;;;:::o;12466:169::-;12550:11;12584:6;12579:3;12572:19;12624:4;12619:3;12615:14;12600:29;;12562:73;;;;:::o;12641:148::-;12743:11;12780:3;12765:18;;12755:34;;;;:::o;12795:96::-;12832:7;12861:24;12879:5;12861:24;:::i;:::-;12850:35;;12840:51;;;:::o;12897:90::-;12931:7;12974:5;12967:13;12960:21;12949:32;;12939:48;;;:::o;12993:149::-;13029:7;13069:66;13062:5;13058:78;13047:89;;13037:105;;;:::o;13148:126::-;13185:7;13225:42;13218:5;13214:54;13203:65;;13193:81;;;:::o;13280:77::-;13317:7;13346:5;13335:16;;13325:32;;;:::o;13363:154::-;13447:6;13442:3;13437;13424:30;13509:1;13500:6;13495:3;13491:16;13484:27;13414:103;;;:::o;13523:307::-;13591:1;13601:113;13615:6;13612:1;13609:13;13601:113;;;13700:1;13695:3;13691:11;13685:18;13681:1;13676:3;13672:11;13665:39;13637:2;13634:1;13630:10;13625:15;;13601:113;;;13732:6;13729:1;13726:13;13723:2;;;13812:1;13803:6;13798:3;13794:16;13787:27;13723:2;13572:258;;;;:::o;13836:320::-;13880:6;13917:1;13911:4;13907:12;13897:22;;13964:1;13958:4;13954:12;13985:18;13975:2;;14041:4;14033:6;14029:17;14019:27;;13975:2;14103;14095:6;14092:14;14072:18;14069:38;14066:2;;;14122:18;;:::i;:::-;14066:2;13887:269;;;;:::o;14162:281::-;14245:27;14267:4;14245:27;:::i;:::-;14237:6;14233:40;14375:6;14363:10;14360:22;14339:18;14327:10;14324:34;14321:62;14318:2;;;14386:18;;:::i;:::-;14318:2;14426:10;14422:2;14415:22;14205:238;;;:::o;14449:180::-;14497:77;14494:1;14487:88;14594:4;14591:1;14584:15;14618:4;14615:1;14608:15;14635:180;14683:77;14680:1;14673:88;14780:4;14777:1;14770:15;14804:4;14801:1;14794:15;14821:102;14862:6;14913:2;14909:7;14904:2;14897:5;14893:14;14889:28;14879:38;;14869:54;;;:::o;14929:225::-;15069:34;15065:1;15057:6;15053:14;15046:58;15138:8;15133:2;15125:6;15121:15;15114:33;15035:119;:::o;15160:182::-;15300:34;15296:1;15288:6;15284:14;15277:58;15266:76;:::o;15348:122::-;15421:24;15439:5;15421:24;:::i;:::-;15414:5;15411:35;15401:2;;15460:1;15457;15450:12;15401:2;15391:79;:::o;15476:116::-;15546:21;15561:5;15546:21;:::i;:::-;15539:5;15536:32;15526:2;;15582:1;15579;15572:12;15526:2;15516:76;:::o;15598:120::-;15670:23;15687:5;15670:23;:::i;:::-;15663:5;15660:34;15650:2;;15708:1;15705;15698:12;15650:2;15640:78;:::o;15724:122::-;15797:24;15815:5;15797:24;:::i;:::-;15790:5;15787:35;15777:2;;15836:1;15833;15826:12;15777:2;15767:79;:::o
Swarm Source
ipfs://0955a774f466acd98d918693b4ea3cf64efb18c0d1fa264b55c70318dc5a39b9
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.