Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,000 BlackMoon
Holders
61
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 BlackMoonLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WeStandWithIsrael
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-06 */ /** *Submitted for verification at Etherscan.io on 2023-10-07 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) // File: contracts/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: contracts/OperatorFilterer.sol pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } // File: contracts/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: contracts/ReMyth.sol pragma solidity ^0.8.13; contract WeStandWithIsrael is ERC721A, Ownable, DefaultOperatorFilterer { using Strings for uint; string public baseURI = " ipfs://QmWQ2ZhibcSKxXUVphfkmg8wcsLuY7Pcxj2VsxWUJFCvfU/"; uint public MAX_SUPPLY = 1000; // uint public MAX_TEAM = 222; constructor() ERC721A("We From The Moon", "BlackMoon") { } function PublicMint(address _account, uint _quantity) external { require(totalSupply() + _quantity <= MAX_SUPPLY, "NFT can't be mint anymore"); // require(_quantity <= MAX_TX, "Exceeded Max per TX"); _safeMint(_account, _quantity); } function setBaseUri(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"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":"_newBaseURI","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"}]
Contract Creation Code
60e06040526037608081815290620018fe60a039600990620000229082620002fb565b506103e8600a5534801562000035575f80fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020016f2bb290233937b6902a34329026b7b7b760811b81525060405180604001604052806009815260200168213630b1b5a6b7b7b760b91b8152508160029081620000a99190620002fb565b506003620000b88282620002fb565b50505f805550620000c9336200020c565b6daaeb6d7670e522a718067333cd4e3b15620002045780156200015757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b5f604051808303815f87803b1580156200013a575f80fd5b505af11580156200014d573d5f803e3d5ffd5b5050505062000204565b6001600160a01b03821615620001a85760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000122565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e486906024015f604051808303815f87803b158015620001ec575f80fd5b505af1158015620001ff573d5f803e3d5ffd5b505050505b5050620003c7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200028657607f821691505b602082108103620002a557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002f657805f5260205f20601f840160051c81016020851015620002d25750805b601f840160051c820191505b81811015620002f3575f8155600101620002de565b50505b505050565b81516001600160401b038111156200031757620003176200025d565b6200032f8162000328845462000271565b84620002ab565b602080601f83116001811462000365575f84156200034d5750858301515b5f19600386901b1c1916600185901b178555620003bf565b5f85815260208120601f198616915b82811015620003955788860151825594840194600190910190840162000374565b5085821015620003b357878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b61152980620003d55f395ff3fe608060405234801561000f575f80fd5b5060043610610132575f3560e01c806370a08231116100b4578063a0bcfc7f11610079578063a0bcfc7f14610259578063a22cb4651461026c578063b88d4fde1461027f578063c87b56dd14610292578063e985e9c5146102a5578063f2fde38b146102b8575f80fd5b806370a0823114610212578063715018a614610225578063748a29861461022d5780638da5cb5b1461024057806395d89b4114610251575f80fd5b806323b872dd116100fa57806323b872dd146101c857806332cb6b0c146101db57806342842e0e146101e45780636352211e146101f75780636c0360eb1461020a575f80fd5b806301ffc9a71461013657806306fdde031461015e578063081812fc14610173578063095ea7b31461019e57806318160ddd146101b3575b5f80fd5b610149610144366004610f32565b6102cb565b60405190151581526020015b60405180910390f35b61016661031c565b6040516101559190610f9a565b610186610181366004610fac565b6103ac565b6040516001600160a01b039091168152602001610155565b6101b16101ac366004610fde565b6103ee565b005b6001545f54035b604051908152602001610155565b6101b16101d6366004611006565b6104be565b6101ba600a5481565b6101b16101f2366004611006565b6104ce565b610186610205366004610fac565b6104e8565b6101666104f2565b6101ba61022036600461103f565b61057e565b6101b16105c4565b6101b161023b366004610fde565b610602565b6008546001600160a01b0316610186565b610166610678565b6101b16102673660046110df565b610687565b6101b161027a366004611124565b6106bd565b6101b161028d36600461115d565b610751565b6101666102a0366004610fac565b61079b565b6101496102b33660046111d4565b610864565b6101b16102c636600461103f565b610891565b5f6301ffc9a760e01b6001600160e01b0319831614806102fb57506380ac58cd60e01b6001600160e01b03198316145b806103165750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461032b90611205565b80601f016020809104026020016040519081016040528092919081815260200182805461035790611205565b80156103a25780601f10610379576101008083540402835291602001916103a2565b820191905f5260205f20905b81548152906001019060200180831161038557829003601f168201915b5050505050905090565b5f6103b68261092c565b6103d3576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6103f882610951565b9050806001600160a01b0316836001600160a01b03160361042c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610463576104468133610864565b610463576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6104c98383836109b9565b505050565b6104c983838360405180602001604052805f815250610751565b5f61031682610951565b600980546104ff90611205565b80601f016020809104026020016040519081016040528092919081815260200182805461052b90611205565b80156105765780601f1061054d57610100808354040283529160200191610576565b820191905f5260205f20905b81548152906001019060200180831161055957829003601f168201915b505050505081565b5f815f0361059f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146105f75760405162461bcd60e51b81526004016105ee9061123d565b60405180910390fd5b6106005f610b6a565b565b600a54816106126001545f540390565b61061c9190611286565b111561066a5760405162461bcd60e51b815260206004820152601960248201527f4e46542063616e2774206265206d696e7420616e796d6f72650000000000000060448201526064016105ee565b6106748282610bbb565b5050565b60606003805461032b90611205565b6008546001600160a01b031633146106b15760405162461bcd60e51b81526004016105ee9061123d565b600961067482826112e4565b336001600160a01b038316036106e65760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61075c8484846109b9565b6001600160a01b0383163b156107955761077884848484610bd4565b610795576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606107a68261092c565b61080a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ee565b5f6009805461081890611205565b9050116108335760405180602001604052805f815250610316565b600961083e83610cbc565b60405160200161084f9291906113a0565b60405160208183030381529060405292915050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146108bb5760405162461bcd60e51b81526004016105ee9061123d565b6001600160a01b0381166109205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b61092981610b6a565b50565b5f8054821080156103165750505f90815260046020526040902054600160e01b161590565b5f815f548110156109a0575f8181526004602052604081205490600160e01b8216900361099e575b805f0361099757505f19015f81815260046020526040902054610979565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b5f6109c382610951565b9050836001600160a01b0316816001600160a01b0316146109f65760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610a255750610a258633610864565b80610a3857506001600160a01b03821633145b905080610a5857604051632ce44b5f60e11b815260040160405180910390fd5b845f03610a7857604051633a954ecd60e21b815260040160405180910390fd5b8115610a9a575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610b2057600184015f818152600460205260408120549003610b1e575f548114610b1e575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610674828260405180602001604052805f815250610db9565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290610c08903390899088908890600401611423565b6020604051808303815f875af1925050508015610c42575060408051601f3d908101601f19168201909252610c3f9181019061145f565b60015b610c9e573d808015610c6f576040519150601f19603f3d011682016040523d82523d5f602084013e610c74565b606091505b5080515f03610c96576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060815f03610ce25750506040805180820190915260018152600360fc1b602082015290565b815f5b8115610d0b5780610cf58161147a565b9150610d049050600a836114a6565b9150610ce5565b5f8167ffffffffffffffff811115610d2557610d25611058565b6040519080825280601f01601f191660200182016040528015610d4f576020820181803683370190505b5090505b8415610cb457610d646001836114b9565b9150610d71600a866114cc565b610d7c906030611286565b60f81b818381518110610d9157610d916114df565b60200101906001600160f81b03191690815f1a905350610db2600a866114a6565b9450610d53565b5f54835f03610dda57604051622e076360e81b815260040160405180910390fd5b825f03610dfa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384165f8181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15610eca575b60405182906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610e955f878480600101955087610bd4565b610eb2576040516368d2bf6b60e11b815260040160405180910390fd5b808210610e4c57825f5414610ec5575f80fd5b610f0e565b5b6040516001830192906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610ecb575b505f9081556107959085838684565b6001600160e01b031981168114610929575f80fd5b5f60208284031215610f42575f80fd5b813561099781610f1d565b5f5b83811015610f67578181015183820152602001610f4f565b50505f910152565b5f8151808452610f86816020860160208601610f4d565b601f01601f19169290920160200192915050565b602081525f6109976020830184610f6f565b5f60208284031215610fbc575f80fd5b5035919050565b80356001600160a01b0381168114610fd9575f80fd5b919050565b5f8060408385031215610fef575f80fd5b610ff883610fc3565b946020939093013593505050565b5f805f60608486031215611018575f80fd5b61102184610fc3565b925061102f60208501610fc3565b9150604084013590509250925092565b5f6020828403121561104f575f80fd5b61099782610fc3565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561108657611086611058565b604051601f8501601f19908116603f011681019082821181831017156110ae576110ae611058565b816040528093508581528686860111156110c6575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156110ef575f80fd5b813567ffffffffffffffff811115611105575f80fd5b8201601f81018413611115575f80fd5b610cb48482356020840161106c565b5f8060408385031215611135575f80fd5b61113e83610fc3565b915060208301358015158114611152575f80fd5b809150509250929050565b5f805f8060808587031215611170575f80fd5b61117985610fc3565b935061118760208601610fc3565b925060408501359150606085013567ffffffffffffffff8111156111a9575f80fd5b8501601f810187136111b9575f80fd5b6111c88782356020840161106c565b91505092959194509250565b5f80604083850312156111e5575f80fd5b6111ee83610fc3565b91506111fc60208401610fc3565b90509250929050565b600181811c9082168061121957607f821691505b60208210810361123757634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561031657610316611272565b601f8211156104c957805f5260205f20601f840160051c810160208510156112be5750805b601f840160051c820191505b818110156112dd575f81556001016112ca565b5050505050565b815167ffffffffffffffff8111156112fe576112fe611058565b6113128161130c8454611205565b84611299565b602080601f831160018114611345575f841561132e5750858301515b5f19600386901b1c1916600185901b178555610b62565b5f85815260208120601f198616915b8281101561137357888601518255948401946001909101908401611354565b508582101561139057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f8084546113ad81611205565b600182811680156113c557600181146113da57611406565b60ff1984168752821515830287019450611406565b885f526020805f205f5b858110156113fd5781548a8201529084019082016113e4565b50505082870194505b50505050835161141a818360208801610f4d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061145590830184610f6f565b9695505050505050565b5f6020828403121561146f575f80fd5b815161099781610f1d565b5f6001820161148b5761148b611272565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f826114b4576114b4611492565b500490565b8181038181111561031657610316611272565b5f826114da576114da611492565b500690565b634e487b7160e01b5f52603260045260245ffdfea2646970667358221220e03c8474429f6b030013811323231e01c7016d813ac5982e1f1f71eec17a648464736f6c6343000816003320697066733a2f2f516d5751325a68696263534b785855567068666b6d67387763734c7559375063786a3256737857554a46437666552f
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610132575f3560e01c806370a08231116100b4578063a0bcfc7f11610079578063a0bcfc7f14610259578063a22cb4651461026c578063b88d4fde1461027f578063c87b56dd14610292578063e985e9c5146102a5578063f2fde38b146102b8575f80fd5b806370a0823114610212578063715018a614610225578063748a29861461022d5780638da5cb5b1461024057806395d89b4114610251575f80fd5b806323b872dd116100fa57806323b872dd146101c857806332cb6b0c146101db57806342842e0e146101e45780636352211e146101f75780636c0360eb1461020a575f80fd5b806301ffc9a71461013657806306fdde031461015e578063081812fc14610173578063095ea7b31461019e57806318160ddd146101b3575b5f80fd5b610149610144366004610f32565b6102cb565b60405190151581526020015b60405180910390f35b61016661031c565b6040516101559190610f9a565b610186610181366004610fac565b6103ac565b6040516001600160a01b039091168152602001610155565b6101b16101ac366004610fde565b6103ee565b005b6001545f54035b604051908152602001610155565b6101b16101d6366004611006565b6104be565b6101ba600a5481565b6101b16101f2366004611006565b6104ce565b610186610205366004610fac565b6104e8565b6101666104f2565b6101ba61022036600461103f565b61057e565b6101b16105c4565b6101b161023b366004610fde565b610602565b6008546001600160a01b0316610186565b610166610678565b6101b16102673660046110df565b610687565b6101b161027a366004611124565b6106bd565b6101b161028d36600461115d565b610751565b6101666102a0366004610fac565b61079b565b6101496102b33660046111d4565b610864565b6101b16102c636600461103f565b610891565b5f6301ffc9a760e01b6001600160e01b0319831614806102fb57506380ac58cd60e01b6001600160e01b03198316145b806103165750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461032b90611205565b80601f016020809104026020016040519081016040528092919081815260200182805461035790611205565b80156103a25780601f10610379576101008083540402835291602001916103a2565b820191905f5260205f20905b81548152906001019060200180831161038557829003601f168201915b5050505050905090565b5f6103b68261092c565b6103d3576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6103f882610951565b9050806001600160a01b0316836001600160a01b03160361042c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610463576104468133610864565b610463576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6104c98383836109b9565b505050565b6104c983838360405180602001604052805f815250610751565b5f61031682610951565b600980546104ff90611205565b80601f016020809104026020016040519081016040528092919081815260200182805461052b90611205565b80156105765780601f1061054d57610100808354040283529160200191610576565b820191905f5260205f20905b81548152906001019060200180831161055957829003601f168201915b505050505081565b5f815f0361059f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146105f75760405162461bcd60e51b81526004016105ee9061123d565b60405180910390fd5b6106005f610b6a565b565b600a54816106126001545f540390565b61061c9190611286565b111561066a5760405162461bcd60e51b815260206004820152601960248201527f4e46542063616e2774206265206d696e7420616e796d6f72650000000000000060448201526064016105ee565b6106748282610bbb565b5050565b60606003805461032b90611205565b6008546001600160a01b031633146106b15760405162461bcd60e51b81526004016105ee9061123d565b600961067482826112e4565b336001600160a01b038316036106e65760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61075c8484846109b9565b6001600160a01b0383163b156107955761077884848484610bd4565b610795576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606107a68261092c565b61080a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ee565b5f6009805461081890611205565b9050116108335760405180602001604052805f815250610316565b600961083e83610cbc565b60405160200161084f9291906113a0565b60405160208183030381529060405292915050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146108bb5760405162461bcd60e51b81526004016105ee9061123d565b6001600160a01b0381166109205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b61092981610b6a565b50565b5f8054821080156103165750505f90815260046020526040902054600160e01b161590565b5f815f548110156109a0575f8181526004602052604081205490600160e01b8216900361099e575b805f0361099757505f19015f81815260046020526040902054610979565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b5f6109c382610951565b9050836001600160a01b0316816001600160a01b0316146109f65760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610a255750610a258633610864565b80610a3857506001600160a01b03821633145b905080610a5857604051632ce44b5f60e11b815260040160405180910390fd5b845f03610a7857604051633a954ecd60e21b815260040160405180910390fd5b8115610a9a575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610b2057600184015f818152600460205260408120549003610b1e575f548114610b1e575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610674828260405180602001604052805f815250610db9565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290610c08903390899088908890600401611423565b6020604051808303815f875af1925050508015610c42575060408051601f3d908101601f19168201909252610c3f9181019061145f565b60015b610c9e573d808015610c6f576040519150601f19603f3d011682016040523d82523d5f602084013e610c74565b606091505b5080515f03610c96576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060815f03610ce25750506040805180820190915260018152600360fc1b602082015290565b815f5b8115610d0b5780610cf58161147a565b9150610d049050600a836114a6565b9150610ce5565b5f8167ffffffffffffffff811115610d2557610d25611058565b6040519080825280601f01601f191660200182016040528015610d4f576020820181803683370190505b5090505b8415610cb457610d646001836114b9565b9150610d71600a866114cc565b610d7c906030611286565b60f81b818381518110610d9157610d916114df565b60200101906001600160f81b03191690815f1a905350610db2600a866114a6565b9450610d53565b5f54835f03610dda57604051622e076360e81b815260040160405180910390fd5b825f03610dfa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384165f8181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15610eca575b60405182906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610e955f878480600101955087610bd4565b610eb2576040516368d2bf6b60e11b815260040160405180910390fd5b808210610e4c57825f5414610ec5575f80fd5b610f0e565b5b6040516001830192906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610ecb575b505f9081556107959085838684565b6001600160e01b031981168114610929575f80fd5b5f60208284031215610f42575f80fd5b813561099781610f1d565b5f5b83811015610f67578181015183820152602001610f4f565b50505f910152565b5f8151808452610f86816020860160208601610f4d565b601f01601f19169290920160200192915050565b602081525f6109976020830184610f6f565b5f60208284031215610fbc575f80fd5b5035919050565b80356001600160a01b0381168114610fd9575f80fd5b919050565b5f8060408385031215610fef575f80fd5b610ff883610fc3565b946020939093013593505050565b5f805f60608486031215611018575f80fd5b61102184610fc3565b925061102f60208501610fc3565b9150604084013590509250925092565b5f6020828403121561104f575f80fd5b61099782610fc3565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561108657611086611058565b604051601f8501601f19908116603f011681019082821181831017156110ae576110ae611058565b816040528093508581528686860111156110c6575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156110ef575f80fd5b813567ffffffffffffffff811115611105575f80fd5b8201601f81018413611115575f80fd5b610cb48482356020840161106c565b5f8060408385031215611135575f80fd5b61113e83610fc3565b915060208301358015158114611152575f80fd5b809150509250929050565b5f805f8060808587031215611170575f80fd5b61117985610fc3565b935061118760208601610fc3565b925060408501359150606085013567ffffffffffffffff8111156111a9575f80fd5b8501601f810187136111b9575f80fd5b6111c88782356020840161106c565b91505092959194509250565b5f80604083850312156111e5575f80fd5b6111ee83610fc3565b91506111fc60208401610fc3565b90509250929050565b600181811c9082168061121957607f821691505b60208210810361123757634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561031657610316611272565b601f8211156104c957805f5260205f20601f840160051c810160208510156112be5750805b601f840160051c820191505b818110156112dd575f81556001016112ca565b5050505050565b815167ffffffffffffffff8111156112fe576112fe611058565b6113128161130c8454611205565b84611299565b602080601f831160018114611345575f841561132e5750858301515b5f19600386901b1c1916600185901b178555610b62565b5f85815260208120601f198616915b8281101561137357888601518255948401946001909101908401611354565b508582101561139057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f8084546113ad81611205565b600182811680156113c557600181146113da57611406565b60ff1984168752821515830287019450611406565b885f526020805f205f5b858110156113fd5781548a8201529084019082016113e4565b50505082870194505b50505050835161141a818360208801610f4d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061145590830184610f6f565b9695505050505050565b5f6020828403121561146f575f80fd5b815161099781610f1d565b5f6001820161148b5761148b611272565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f826114b4576114b4611492565b500490565b8181038181111561031657610316611272565b5f826114da576114da611492565b500690565b634e487b7160e01b5f52603260045260245ffdfea2646970667358221220e03c8474429f6b030013811323231e01c7016d813ac5982e1f1f71eec17a648464736f6c63430008160033
Deployed Bytecode Sourcemap
51665:1063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17809:615;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;17809:615:0;;;;;;;;22832:100;;;:::i;:::-;;;;;;;:::i;24900:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;24900:204:0;1533:203:1;24360:474:0;;;;;;:::i;:::-;;:::i;:::-;;16863:315;17129:12;;16916:7;17113:13;:28;16863:315;;;2324:25:1;;;2312:2;2297:18;16863:315:0;2178:177:1;25786:170:0;;;;;;:::i;:::-;;:::i;51877:29::-;;;;;;26027:185;;;;;;:::i;:::-;;:::i;22621:144::-;;;;;;:::i;:::-;;:::i;51785:81::-;;;:::i;18488:234::-;;;;;;:::i;:::-;;:::i;48090:103::-;;;:::i;52037:268::-;;;;;;:::i;:::-;;:::i;47439:87::-;47512:6;;-1:-1:-1;;;;;47512:6:0;47439:87;;23001:104;;;:::i;52313:106::-;;;;;;:::i;:::-;;:::i;25176:308::-;;;;;;:::i;:::-;;:::i;26283:396::-;;;;;;:::i;:::-;;:::i;52426:299::-;;;;;;:::i;:::-;;:::i;25555:164::-;;;;;;:::i;:::-;;:::i;48348:201::-;;;;;;:::i;:::-;;:::i;17809:615::-;17894:4;-1:-1:-1;;;;;;;;;18194:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18271:25:0;;;18194:102;:179;;;-1:-1:-1;;;;;;;;;;18348:25:0;;;18194:179;18174:199;17809:615;-1:-1:-1;;17809:615:0:o;22832:100::-;22886:13;22919:5;22912:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22832:100;:::o;24900:204::-;24968:7;24993:16;25001:7;24993;:16::i;:::-;24988:64;;25018:34;;-1:-1:-1;;;25018:34:0;;;;;;;;;;;24988:64;-1:-1:-1;25072:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25072:24:0;;24900:204::o;24360:474::-;24433:13;24465:27;24484:7;24465:18;:27::i;:::-;24433:61;;24515:5;-1:-1:-1;;;;;24509:11:0;:2;-1:-1:-1;;;;;24509:11:0;;24505:48;;24529:24;;-1:-1:-1;;;24529:24:0;;;;;;;;;;;24505:48;41288:10;-1:-1:-1;;;;;24570:28:0;;;24566:175;;24618:44;24635:5;41288:10;25555:164;:::i;24618:44::-;24613:128;;24690:35;;-1:-1:-1;;;24690:35:0;;;;;;;;;;;24613:128;24753:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24753:29:0;-1:-1:-1;;;;;24753:29:0;;;;;;;;;24798:28;;24753:24;;24798:28;;;;;;;24422:412;24360:474;;:::o;25786:170::-;25920:28;25930:4;25936:2;25940:7;25920:9;:28::i;:::-;25786:170;;;:::o;26027:185::-;26165:39;26182:4;26188:2;26192:7;26165:39;;;;;;;;;;;;:16;:39::i;22621:144::-;22685:7;22728:27;22747:7;22728:18;:27::i;51785:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18488:234::-;18552:7;18594:5;18604:1;18576:29;18572:70;;18614:28;;-1:-1:-1;;;18614:28:0;;;;;;;;;;;18572:70;-1:-1:-1;;;;;;18660:25:0;;;;;:18;:25;;;;;;13833:13;18660:54;;18488:234::o;48090:103::-;47512:6;;-1:-1:-1;;;;;47512:6:0;41288:10;47659:23;47651:68;;;;-1:-1:-1;;;47651:68:0;;;;;;;:::i;:::-;;;;;;;;;48155:30:::1;48182:1;48155:18;:30::i;:::-;48090:103::o:0;52037:268::-;52149:10;;52136:9;52120:13;17129:12;;16916:7;17113:13;:28;;16863:315;52120:13;:25;;;;:::i;:::-;:39;;52112:77;;;;-1:-1:-1;;;52112:77:0;;6608:2:1;52112:77:0;;;6590:21:1;6647:2;6627:18;;;6620:30;6686:27;6666:18;;;6659:55;6731:18;;52112:77:0;6406:349:1;52112:77:0;52267:30;52277:8;52287:9;52267;:30::i;:::-;52037:268;;:::o;23001:104::-;23057:13;23090:7;23083:14;;;;;:::i;52313:106::-;47512:6;;-1:-1:-1;;;;;47512:6:0;41288:10;47659:23;47651:68;;;;-1:-1:-1;;;47651:68:0;;;;;;;:::i;:::-;52390:7:::1;:21;52400:11:::0;52390:7;:21:::1;:::i;25176:308::-:0;41288:10;-1:-1:-1;;;;;25275:31:0;;;25271:61;;25315:17;;-1:-1:-1;;;25315:17:0;;;;;;;;;;;25271:61;41288:10;25345:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;25345:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;25345:60:0;;;;;;;;;;25421:55;;540:41:1;;;25345:49:0;;41288:10;25421:55;;513:18:1;25421:55:0;;;;;;;25176:308;;:::o;26283:396::-;26450:28;26460:4;26466:2;26470:7;26450:9;:28::i;:::-;-1:-1:-1;;;;;26493:14:0;;;:19;26489:183;;26532:56;26563:4;26569:2;26573:7;26582:5;26532:30;:56::i;:::-;26527:145;;26616:40;;-1:-1:-1;;;26616:40:0;;;;;;;;;;;26527:145;26283:396;;;;:::o;52426:299::-;52499:13;52533:16;52541:7;52533;:16::i;:::-;52525:76;;;;-1:-1:-1;;;52525:76:0;;9132:2:1;52525:76:0;;;9114:21:1;9171:2;9151:18;;;9144:30;9210:34;9190:18;;;9183:62;-1:-1:-1;;;9261:18:1;;;9254:45;9316:19;;52525:76:0;8930:411:1;52525:76:0;52655:1;52637:7;52631:21;;;;;:::i;:::-;;;:25;:86;;;;;;;;;;;;;;;;;52683:7;52692:18;:7;:16;:18::i;:::-;52666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52624:93;52426:299;-1:-1:-1;;52426:299:0:o;25555:164::-;-1:-1:-1;;;;;25676:25:0;;;25652:4;25676:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25555:164::o;48348:201::-;47512:6;;-1:-1:-1;;;;;47512:6:0;41288:10;47659:23;47651:68;;;;-1:-1:-1;;;47651:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48437:22:0;::::1;48429:73;;;::::0;-1:-1:-1;;;48429:73:0;;10574:2:1;48429:73:0::1;::::0;::::1;10556:21:1::0;10613:2;10593:18;;;10586:30;10652:34;10632:18;;;10625:62;-1:-1:-1;;;10703:18:1;;;10696:36;10749:19;;48429:73:0::1;10372:402:1::0;48429:73:0::1;48513:28;48532:8;48513:18;:28::i;:::-;48348:201:::0;:::o;26934:273::-;26991:4;27081:13;;27071:7;:23;27028:152;;;;-1:-1:-1;;27132:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27132:43:0;:48;;26934:273::o;20136:1129::-;20203:7;20238;20340:13;;20333:4;:20;20329:869;;;20378:14;20395:23;;;:17;:23;;;;;;;-1:-1:-1;;;20484:23:0;;:28;;20480:699;;21003:113;21010:6;21020:1;21010:11;21003:113;;-1:-1:-1;;;21081:6:0;21063:25;;;;:17;:25;;;;;;21003:113;;;21149:6;20136:1129;-1:-1:-1;;;20136:1129:0:o;20480:699::-;20355:843;20329:869;21226:31;;-1:-1:-1;;;21226:31:0;;;;;;;;;;;32193:2654;32308:27;32338;32357:7;32338:18;:27::i;:::-;32308:57;;32423:4;-1:-1:-1;;;;;32382:45:0;32398:19;-1:-1:-1;;;;;32382:45:0;;32378:86;;32436:28;;-1:-1:-1;;;32436:28:0;;;;;;;;;;;32378:86;32477:23;32503:24;;;:15;:24;;;;;;-1:-1:-1;;;;;32503:24:0;;;;32477:23;32566:27;;41288:10;32566:27;;:87;;-1:-1:-1;32610:43:0;32627:4;41288:10;25555:164;:::i;32610:43::-;32566:142;;;-1:-1:-1;;;;;;32670:38:0;;41288:10;32670:38;32566:142;32540:169;;32727:17;32722:66;;32753:35;;-1:-1:-1;;;32753:35:0;;;;;;;;;;;32722:66;32821:2;32828:1;32803:26;32799:62;;32838:23;;-1:-1:-1;;;32838:23:0;;;;;;;;;;;32799:62;33005:15;32987:39;32983:103;;33050:24;;;;:15;:24;;;;;33043:31;;-1:-1:-1;;;;;;33043:31:0;;;32983:103;-1:-1:-1;;;;;33453:24:0;;;;;;;:18;:24;;;;;;;;33451:26;;-1:-1:-1;;33451:26:0;;;33522:22;;;;;;;;33520:24;;-1:-1:-1;33520:24:0;;;33815:26;;;:17;:26;;;;;-1:-1:-1;;;33903:15:0;14487:3;33903:41;33861:84;;:128;;33815:174;;;34109:46;;:51;;34105:626;;34213:1;34203:11;;34181:19;34336:30;;;:17;:30;;;;;;:35;;34332:384;;34474:13;;34459:11;:28;34455:242;;34621:30;;;;:17;:30;;;;;:52;;;34455:242;34162:569;34105:626;34778:7;34774:2;-1:-1:-1;;;;;34759:27:0;34768:4;-1:-1:-1;;;;;34759:27:0;;;;;;;;;;;34797:42;32297:2550;;;32193:2654;;;:::o;48709:191::-;48802:6;;;-1:-1:-1;;;;;48819:17:0;;;-1:-1:-1;;;;;;48819:17:0;;;;;;;48852:40;;48802:6;;;48819:17;48802:6;;48852:40;;48783:16;;48852:40;48772:128;48709:191;:::o;27291:104::-;27360:27;27370:2;27374:8;27360:27;;;;;;;;;;;;:9;:27::i;38670:716::-;38854:88;;-1:-1:-1;;;38854:88:0;;38833:4;;-1:-1:-1;;;;;38854:45:0;;;;;:88;;41288:10;;38921:4;;38927:7;;38936:5;;38854:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38854:88:0;;;;;;;;-1:-1:-1;;38854:88:0;;;;;;;;;;;;:::i;:::-;;;38850:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39137:6;:13;39154:1;39137:18;39133:235;;39183:40;;-1:-1:-1;;;39183:40:0;;;;;;;;;;;39133:235;39326:6;39320:13;39311:6;39307:2;39303:15;39296:38;38850:529;-1:-1:-1;;;;;;39013:64:0;-1:-1:-1;;;39013:64:0;;-1:-1:-1;38850:529:0;38670:716;;;;;;:::o;43725:723::-;43781:13;44002:5;44011:1;44002:10;43998:53;;-1:-1:-1;;44029:10:0;;;;;;;;;;;;-1:-1:-1;;;44029:10:0;;;;;43725:723::o;43998:53::-;44076:5;44061:12;44117:78;44124:9;;44117:78;;44150:8;;;;:::i;:::-;;-1:-1:-1;44173:10:0;;-1:-1:-1;44181:2:0;44173:10;;:::i;:::-;;;44117:78;;;44205:19;44237:6;44227:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44227:17:0;;44205:39;;44255:154;44262:10;;44255:154;;44289:11;44299:1;44289:11;;:::i;:::-;;-1:-1:-1;44358:10:0;44366:2;44358:5;:10;:::i;:::-;44345:24;;:2;:24;:::i;:::-;44332:39;;44315:6;44322;44315:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;44315:56:0;;;;;;;;-1:-1:-1;44386:11:0;44395:2;44386:11;;:::i;:::-;;;44255:154;;27768:2246;27891:20;27914:13;27960:2;27967:1;27942:26;27938:58;;27977:19;;-1:-1:-1;;;27977:19:0;;;;;;;;;;;27938:58;28011:8;28023:1;28011:13;28007:44;;28033:18;;-1:-1:-1;;;28033:18:0;;;;;;;;;;;28007:44;-1:-1:-1;;;;;28600:22:0;;;;;;:18;:22;;;;13970:2;28600:22;;;:70;;28638:31;28626:44;;28600:70;;;28913:31;;;:17;:31;;;;;29006:15;14487:3;29006:41;28964:84;;-1:-1:-1;29084:13:0;;14746:3;29069:56;28964:162;28913:213;;:31;;29207:23;;;;29251:14;:19;29247:635;;29291:313;29322:38;;29347:12;;-1:-1:-1;;;;;29322:38:0;;;29339:1;;29322:38;;29339:1;;29322:38;29388:69;29427:1;29431:2;29435:14;;;;;;29451:5;29388:30;:69::i;:::-;29383:174;;29493:40;;-1:-1:-1;;;29493:40:0;;;;;;;;;;;29383:174;29599:3;29584:12;:18;29291:313;;29685:12;29668:13;;:29;29664:43;;29699:8;;;29664:43;29247:635;;;29748:119;29779:40;;29804:14;;;;;-1:-1:-1;;;;;29779:40:0;;;29796:1;;29779:40;;29796:1;;29779:40;29862:3;29847:12;:18;29748:119;;29247:635;-1:-1:-1;29896:13:0;:28;;;29946:60;;29979:2;29983:12;29997:8;29946:60;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:632;3081:5;3111:18;3152:2;3144:6;3141:14;3138:40;;;3158:18;;:::i;:::-;3233:2;3227:9;3201:2;3287:15;;-1:-1:-1;;3283:24:1;;;3309:2;3279:33;3275:42;3263:55;;;3333:18;;;3353:22;;;3330:46;3327:72;;;3379:18;;:::i;:::-;3419:10;3415:2;3408:22;3448:6;3439:15;;3478:6;3470;3463:22;3518:3;3509:6;3504:3;3500:16;3497:25;3494:45;;;3535:1;3532;3525:12;3494:45;3585:6;3580:3;3573:4;3565:6;3561:17;3548:44;3640:1;3633:4;3624:6;3616;3612:19;3608:30;3601:41;;;;3016:632;;;;;:::o;3653:451::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3831:9;3818:23;3864:18;3856:6;3853:30;3850:50;;;3896:1;3893;3886:12;3850:50;3919:22;;3972:4;3964:13;;3960:27;-1:-1:-1;3950:55:1;;4001:1;3998;3991:12;3950:55;4024:74;4090:7;4085:2;4072:16;4067:2;4063;4059:11;4024:74;:::i;4109:347::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;4274:29;4293:9;4274:29;:::i;:::-;4264:39;;4353:2;4342:9;4338:18;4325:32;4400:5;4393:13;4386:21;4379:5;4376:32;4366:60;;4422:1;4419;4412:12;4366:60;4445:5;4435:15;;;4109:347;;;;;:::o;4461:667::-;4556:6;4564;4572;4580;4633:3;4621:9;4612:7;4608:23;4604:33;4601:53;;;4650:1;4647;4640:12;4601:53;4673:29;4692:9;4673:29;:::i;:::-;4663:39;;4721:38;4755:2;4744:9;4740:18;4721:38;:::i;:::-;4711:48;;4806:2;4795:9;4791:18;4778:32;4768:42;;4861:2;4850:9;4846:18;4833:32;4888:18;4880:6;4877:30;4874:50;;;4920:1;4917;4910:12;4874:50;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:55:1;;5025:1;5022;5015:12;4974:55;5048:74;5114:7;5109:2;5096:16;5091:2;5087;5083:11;5048:74;:::i;:::-;5038:84;;;4461:667;;;;;;;:::o;5133:260::-;5201:6;5209;5262:2;5250:9;5241:7;5237:23;5233:32;5230:52;;;5278:1;5275;5268:12;5230:52;5301:29;5320:9;5301:29;:::i;:::-;5291:39;;5349:38;5383:2;5372:9;5368:18;5349:38;:::i;:::-;5339:48;;5133:260;;;;;:::o;5398:380::-;5477:1;5473:12;;;;5520;;;5541:61;;5595:4;5587:6;5583:17;5573:27;;5541:61;5648:2;5640:6;5637:14;5617:18;5614:38;5611:161;;5694:10;5689:3;5685:20;5682:1;5675:31;5729:4;5726:1;5719:15;5757:4;5754:1;5747:15;5611:161;;5398:380;;;:::o;5783:356::-;5985:2;5967:21;;;6004:18;;;5997:30;6063:34;6058:2;6043:18;;6036:62;6130:2;6115:18;;5783:356::o;6144:127::-;6205:10;6200:3;6196:20;6193:1;6186:31;6236:4;6233:1;6226:15;6260:4;6257:1;6250:15;6276:125;6341:9;;;6362:10;;;6359:36;;;6375:18;;:::i;6886:518::-;6988:2;6983:3;6980:11;6977:421;;;7024:5;7021:1;7014:16;7068:4;7065:1;7055:18;7138:2;7126:10;7122:19;7119:1;7115:27;7109:4;7105:38;7174:4;7162:10;7159:20;7156:47;;;-1:-1:-1;7197:4:1;7156:47;7252:2;7247:3;7243:12;7240:1;7236:20;7230:4;7226:31;7216:41;;7307:81;7325:2;7318:5;7315:13;7307:81;;;7384:1;7370:16;;7351:1;7340:13;7307:81;;;7311:3;;6886:518;;;:::o;7580:1345::-;7706:3;7700:10;7733:18;7725:6;7722:30;7719:56;;;7755:18;;:::i;:::-;7784:97;7874:6;7834:38;7866:4;7860:11;7834:38;:::i;:::-;7828:4;7784:97;:::i;:::-;7936:4;;7993:2;7982:14;;8010:1;8005:663;;;;8712:1;8729:6;8726:89;;;-1:-1:-1;8781:19:1;;;8775:26;8726:89;-1:-1:-1;;7537:1:1;7533:11;;;7529:24;7525:29;7515:40;7561:1;7557:11;;;7512:57;8828:81;;7975:944;;8005:663;6833:1;6826:14;;;6870:4;6857:18;;-1:-1:-1;;8041:20:1;;;8159:236;8173:7;8170:1;8167:14;8159:236;;;8262:19;;;8256:26;8241:42;;8354:27;;;;8322:1;8310:14;;;;8189:19;;8159:236;;;8163:3;8423:6;8414:7;8411:19;8408:201;;;8484:19;;;8478:26;-1:-1:-1;;8567:1:1;8563:14;;;8579:3;8559:24;8555:37;8551:42;8536:58;8521:74;;8408:201;-1:-1:-1;;;;;8655:1:1;8639:14;;;8635:22;8622:36;;-1:-1:-1;7580:1345:1:o;9346:1021::-;9522:3;9551:1;9584:6;9578:13;9614:36;9640:9;9614:36;:::i;:::-;9669:1;9686:17;;;9712:133;;;;9859:1;9854:358;;;;9679:533;;9712:133;-1:-1:-1;;9745:24:1;;9733:37;;9818:14;;9811:22;9799:35;;9790:45;;;-1:-1:-1;9712:133:1;;9854:358;9885:6;9882:1;9875:17;9915:4;9960;9957:1;9947:18;9987:1;10001:165;10015:6;10012:1;10009:13;10001:165;;;10093:14;;10080:11;;;10073:35;10136:16;;;;10030:10;;10001:165;;;10005:3;;;10195:6;10190:3;10186:16;10179:23;;9679:533;;;;;10243:6;10237:13;10259:68;10318:8;10313:3;10306:4;10298:6;10294:17;10259:68;:::i;:::-;10343:18;;9346:1021;-1:-1:-1;;;;9346:1021:1:o;10779:489::-;-1:-1:-1;;;;;11048:15:1;;;11030:34;;11100:15;;11095:2;11080:18;;11073:43;11147:2;11132:18;;11125:34;;;11195:3;11190:2;11175:18;;11168:31;;;10973:4;;11216:46;;11242:19;;11234:6;11216:46;:::i;:::-;11208:54;10779:489;-1:-1:-1;;;;;;10779:489:1:o;11273:249::-;11342:6;11395:2;11383:9;11374:7;11370:23;11366:32;11363:52;;;11411:1;11408;11401:12;11363:52;11443:9;11437:16;11462:30;11486:5;11462:30;:::i;11527:135::-;11566:3;11587:17;;;11584:43;;11607:18;;:::i;:::-;-1:-1:-1;11654:1:1;11643:13;;11527:135::o;11667:127::-;11728:10;11723:3;11719:20;11716:1;11709:31;11759:4;11756:1;11749:15;11783:4;11780:1;11773:15;11799:120;11839:1;11865;11855:35;;11870:18;;:::i;:::-;-1:-1:-1;11904:9:1;;11799:120::o;11924:128::-;11991:9;;;12012:11;;;12009:37;;;12026:18;;:::i;12057:112::-;12089:1;12115;12105:35;;12120:18;;:::i;:::-;-1:-1:-1;12154:9:1;;12057:112::o;12174:127::-;12235:10;12230:3;12226:20;12223:1;12216:31;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15
Swarm Source
ipfs://e03c8474429f6b030013811323231e01c7016d813ac5982e1f1f71eec17a6484
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.