Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 80 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 15645787 | 1263 days ago | IN | 0 ETH | 0.00034031 | ||||
| Set Cost | 15640508 | 1263 days ago | IN | 0 ETH | 0.00052848 | ||||
| Mint | 15640482 | 1263 days ago | IN | 0.0015 ETH | 0.00146631 | ||||
| Mint | 15640477 | 1263 days ago | IN | 0.0015 ETH | 0.00141798 | ||||
| Mint | 15640465 | 1263 days ago | IN | 0.003 ETH | 0.00145404 | ||||
| Mint | 15640465 | 1263 days ago | IN | 0.003 ETH | 0.00145404 | ||||
| Mint | 15640465 | 1263 days ago | IN | 0.003 ETH | 0.00145404 | ||||
| Set Cost | 15640445 | 1263 days ago | IN | 0 ETH | 0.00060726 | ||||
| Mint | 15640413 | 1263 days ago | IN | 0.003 ETH | 0.00192784 | ||||
| Mint | 15640411 | 1263 days ago | IN | 0.003 ETH | 0.00154473 | ||||
| Mint | 15640411 | 1263 days ago | IN | 0.003 ETH | 0.00154473 | ||||
| Mint | 15640411 | 1263 days ago | IN | 0.003 ETH | 0.00154473 | ||||
| Mint | 15640411 | 1263 days ago | IN | 0.003 ETH | 0.00154473 | ||||
| Mint | 15640410 | 1263 days ago | IN | 0.003 ETH | 0.00144866 | ||||
| Mint | 15640410 | 1263 days ago | IN | 0.003 ETH | 0.00144866 | ||||
| Mint | 15640410 | 1263 days ago | IN | 0.003 ETH | 0.00144866 | ||||
| Mint | 15640410 | 1263 days ago | IN | 0.003 ETH | 0.00144866 | ||||
| Mint | 15640410 | 1263 days ago | IN | 0.003 ETH | 0.00144866 | ||||
| Mint | 15640410 | 1263 days ago | IN | 0.003 ETH | 0.00144866 | ||||
| Mint | 15640405 | 1263 days ago | IN | 0.003 ETH | 0.00167466 | ||||
| Mint | 15640405 | 1263 days ago | IN | 0.003 ETH | 0.00167466 | ||||
| Mint | 15640405 | 1263 days ago | IN | 0.003 ETH | 0.00167466 | ||||
| Mint | 15640405 | 1263 days ago | IN | 0.003 ETH | 0.00167466 | ||||
| Mint | 15640404 | 1263 days ago | IN | 0.003 ETH | 0.00157122 | ||||
| Mint | 15640404 | 1263 days ago | IN | 0.003 ETH | 0.00157122 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15645787 | 1263 days ago | 0.255 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PixelCity
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-09-29
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (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/IERC721A.sol
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the
* ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables
* (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`,
* checking first that contract recipients are aware of the ERC721 protocol
* to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move
* this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external payable;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom}
* whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external payable;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// File: erc721a/contracts/ERC721A.sol
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
struct TokenApprovalRef {
address value;
}
// =============================================================
// CONSTANTS
// =============================================================
// Mask of an entry in packed address data.
uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant _BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant _BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant _BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant _BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant _BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;
// The bit position of `extraData` in packed ownership.
uint256 private constant _BITPOS_EXTRA_DATA = 232;
// Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
// The mask of the lower 160 bits for addresses.
uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
// The maximum `quantity` that can be minted with {_mintERC2309}.
// This limit is to prevent overflows on the address data entries.
// For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
// is required to cause an overflow, which is unrealistic.
uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
// The `Transfer` event signature is given by:
// `keccak256(bytes("Transfer(address,address,uint256)"))`.
bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
// =============================================================
// STORAGE
// =============================================================
// The next token ID to be minted.
uint256 private _currentIndex;
// The number of tokens burned.
uint256 private _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned.
// See {_packedOwnershipOf} implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
// - [232..255] `extraData`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => TokenApprovalRef) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// =============================================================
// CONSTRUCTOR
// =============================================================
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
// =============================================================
// TOKEN COUNTING OPERATIONS
// =============================================================
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view virtual returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() public view virtual override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view virtual returns (uint256) {
// Counter underflow is impossible as `_currentIndex` does not decrement,
// and it is initialized to `_startTokenId()`.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view virtual returns (uint256) {
return _burnCounter;
}
// =============================================================
// ADDRESS DATA OPERATIONS
// =============================================================
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
}
/**
* Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal virtual {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
// Cast `aux` with assembly to avoid redundant masking.
assembly {
auxCasted := aux
}
packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
_packedAddressData[owner] = packed;
}
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes
// of the XOR of all function selectors in the interface.
// See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
// (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the token collection symbol.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, it can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
// =============================================================
// OWNERSHIPS OPERATIONS
// =============================================================
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around over time.
*/
function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal virtual {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & _BITMASK_BURNED == 0) {
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `curr` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
ownership.burned = packed & _BITMASK_BURNED != 0;
ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
}
/**
* @dev Packs ownership data into a single uint256.
*/
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
}
}
/**
* @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
*/
function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
// For branchless setting of the `nextInitialized` flag.
assembly {
// `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
}
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) public payable virtual override {
address owner = ownerOf(tokenId);
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId].value;
}
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted. See {_mint}.
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
*/
function _isSenderApprovedOrOwner(
address approvedAddress,
address owner,
address msgSender
) private pure returns (bool result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
msgSender := and(msgSender, _BITMASK_ADDRESS)
// `msgSender == owner || msgSender == approvedAddress`.
result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
}
}
/**
* @dev Returns the storage slot and value for the approved address of `tokenId`.
*/
function _getApprovedSlotAndAddress(uint256 tokenId)
private
view
returns (uint256 approvedAddressSlot, address approvedAddress)
{
TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
assembly {
approvedAddressSlot := tokenApproval.slot
approvedAddress := sload(approvedAddressSlot)
}
}
// =============================================================
// TRANSFER OPERATIONS
// =============================================================
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public payable virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Hook that is called before a set of serially-ordered token IDs
* are about to be transferred. This includes minting.
* And also called before burning one token.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token IDs
* have been transferred. This includes minting.
* And also called after one token has been burned.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* `from` - Previous owner of the given token ID.
* `to` - Target address that will receive the token.
* `tokenId` - Token ID to be transferred.
* `_data` - Optional data to send along with the call.
*
* Returns whether the call correctly returned the expected magic value.
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
// =============================================================
// MINT OPERATIONS
// =============================================================
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event for each mint.
*/
function _mint(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// `balance` and `numberMinted` have a maximum limit of 2**64.
// `tokenId` has a maximum limit of 2**256.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
uint256 toMasked;
uint256 end = startTokenId + quantity;
// Use assembly to loop and emit the `Transfer` event for gas savings.
// The duplicated `log4` removes an extra check and reduces stack juggling.
// The assembly, together with the surrounding Solidity code, have been
// delicately arranged to nudge the compiler into producing optimized opcodes.
assembly {
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
toMasked := and(to, _BITMASK_ADDRESS)
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
0, // `address(0)`.
toMasked, // `to`.
startTokenId // `tokenId`.
)
// The `iszero(eq(,))` check ensures that large values of `quantity`
// that overflows uint256 will make the loop run out of gas.
// The compiler will optimize the `iszero` away for performance.
for {
let tokenId := add(startTokenId, 1)
} iszero(eq(tokenId, end)) {
tokenId := add(tokenId, 1)
} {
// Emit the `Transfer` event. Similar to above.
log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
}
}
if (toMasked == 0) revert MintToZeroAddress();
_currentIndex = end;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* This function is intended for efficient minting only during contract creation.
*
* It emits only one {ConsecutiveTransfer} as defined in
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
* instead of a sequence of {Transfer} event(s).
*
* Calling this function outside of contract creation WILL make your contract
* non-compliant with the ERC721 standard.
* For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
* {ConsecutiveTransfer} event is only permissible during contract creation.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {ConsecutiveTransfer} event.
*/
function _mintERC2309(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are unrealistic due to the above check for `quantity` to be below the limit.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
_currentIndex = startTokenId + quantity;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* See {_mint}.
*
* Emits a {Transfer} event for each mint.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity);
unchecked {
if (to.code.length != 0) {
uint256 end = _currentIndex;
uint256 index = end - quantity;
do {
if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (index < end);
// Reentrancy protection.
if (_currentIndex != end) revert();
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
// =============================================================
// BURN OPERATIONS
// =============================================================
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
if (approvalCheck) {
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
from,
(_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
// =============================================================
// EXTRA DATA OPERATIONS
// =============================================================
/**
* @dev Directly sets the extra data for the ownership data `index`.
*/
function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
uint256 packed = _packedOwnerships[index];
if (packed == 0) revert OwnershipNotInitializedForExtraData();
uint256 extraDataCasted;
// Cast `extraData` with assembly to avoid redundant masking.
assembly {
extraDataCasted := extraData
}
packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
_packedOwnerships[index] = packed;
}
/**
* @dev Called during each token transfer to set the 24bit `extraData` field.
* Intended to be overridden by the cosumer contract.
*
* `previousExtraData` - the value of `extraData` before transfer.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _extraData(
address from,
address to,
uint24 previousExtraData
) internal view virtual returns (uint24) {}
/**
* @dev Returns the next extra data for the packed ownership data.
* The returned result is shifted into position.
*/
function _nextExtraData(
address from,
address to,
uint256 prevOwnershipPacked
) private view returns (uint256) {
uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
}
// =============================================================
// OTHER OPERATIONS
// =============================================================
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function _toString(uint256 value) internal pure virtual returns (string memory str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but
// we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 word for the trailing zeros padding, 1 word for the length,
// and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
let m := add(mload(0x40), 0xa0)
// Update the free memory pointer to allocate.
mstore(0x40, m)
// Assign the `str` to the end.
str := sub(m, 0x20)
// Zeroize the slot after the string.
mstore(str, 0)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing `temp` until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 0x20)
// Store the length.
mstore(str, length)
}
}
}
// File: contracts/PixelCity.sol
pragma solidity ^0.8.4;
contract PixelCity is ERC721A, Ownable, ReentrancyGuard {
string public uriPrefix = '';
string public uriSuffix = '.json';
string public baseUri = 'ipfs://QmaR5YRxMH4G2NKWMJibXFUBz1etActzH4h3zYNt1Dfz6B/hide.json';
uint256 public cost = 0.0015 ether;
uint256 public maxSupply = 3000;
uint256 public maxMintAmountPerTx = 3;
bool public paused = true;
bool public revealed = false;
constructor(
string memory _tokenName,
string memory _tokenSymbol
) ERC721A(_tokenName, _tokenSymbol) {
_safeMint(msg.sender, 1);
}
modifier mintCompliance(uint256 _mintAmount) {
require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
_;
}
modifier mintPriceCompliance(uint256 _mintAmount) {
require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
_;
}
function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
require(!paused, 'The contract is paused!');
_safeMint(msg.sender, _mintAmount);
}
function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
_safeMint(_receiver, _mintAmount);
}
function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');
if (!revealed) {
return baseUri;
}
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, _toString(_tokenId), uriSuffix))
: '';
}
function setCost(uint256 _cost) public onlyOwner {
cost = _cost;
}
function setBaseUri(string memory _uri) public onlyOwner {
baseUri = _uri;
}
function setUriPrefix(string memory _uriPrefix) public onlyOwner {
uriPrefix = _uriPrefix;
}
function setPaused(bool _state) public onlyOwner {
paused = _state;
}
function setRevealed(bool _revealed) public onlyOwner {
revealed = _revealed;
}
function withdraw() public onlyOwner nonReentrant {
(bool os, ) = payable(owner()).call{value: address(this).balance}('');
require(os);
}
function _baseURI() internal view virtual override returns (string memory) {
return uriPrefix;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b92919062000747565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000747565b506040518060600160405280603f815260200162003c08603f9139600c9080519060200190620000ab92919062000747565b506605543df729c000600d55610bb8600e556003600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200010557600080fd5b5060405162003c4738038062003c4783398181016040528101906200012b9190620008be565b818181600290805190602001906200014592919062000747565b5080600390805190602001906200015e92919062000747565b506200016f620001ba60201b60201c565b6000819055505050620001976200018b620001bf60201b60201c565b620001c760201b60201c565b6001600981905550620001b23360016200028d60201b60201c565b505062000c1e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002af828260405180602001604052806000815250620002b360201b60201c565b5050565b620002c583836200036460201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200035f57600080549050600083820390505b6200030e60008683806001019450866200054d60201b60201c565b62000345576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002f35781600054146200035c57600080fd5b50505b505050565b6000805490506000821415620003a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003bb6000848385620006bf60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200044a836200042c6000866000620006c560201b60201c565b6200043d85620006f560201b60201c565b176200070560201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004ed57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620004b0565b5060008214156200052a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200054860008483856200073060201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200057b6200073660201b60201c565b8786866040518563ffffffff1660e01b81526004016200059f9493929190620009a6565b602060405180830381600087803b158015620005ba57600080fd5b505af1925050508015620005ee57506040513d601f19601f82011682018060405250810190620005eb91906200088c565b60015b6200066c573d806000811462000621576040519150601f19603f3d011682016040523d82523d6000602084013e62000626565b606091505b5060008151141562000664576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006e48686846200073e60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620007559062000b15565b90600052602060002090601f016020900481019282620007795760008555620007c5565b82601f106200079457805160ff1916838001178555620007c5565b82800160010185558215620007c5579182015b82811115620007c4578251825591602001919060010190620007a7565b5b509050620007d49190620007d8565b5090565b5b80821115620007f3576000816000905550600101620007d9565b5090565b60006200080e620008088462000a23565b620009fa565b9050828152602081018484840111156200082d576200082c62000be4565b5b6200083a84828562000adf565b509392505050565b600081519050620008538162000c04565b92915050565b600082601f83011262000871576200087062000bdf565b5b815162000883848260208601620007f7565b91505092915050565b600060208284031215620008a557620008a462000bee565b5b6000620008b58482850162000842565b91505092915050565b60008060408385031215620008d857620008d762000bee565b5b600083015167ffffffffffffffff811115620008f957620008f862000be9565b5b620009078582860162000859565b925050602083015167ffffffffffffffff8111156200092b576200092a62000be9565b5b620009398582860162000859565b9150509250929050565b6200094e8162000a75565b82525050565b6000620009618262000a59565b6200096d818562000a64565b93506200097f81856020860162000adf565b6200098a8162000bf3565b840191505092915050565b620009a08162000ad5565b82525050565b6000608082019050620009bd600083018762000943565b620009cc602083018662000943565b620009db604083018562000995565b8181036060830152620009ef818462000954565b905095945050505050565b600062000a0662000a19565b905062000a14828262000b4b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a415762000a4062000bb0565b5b62000a4c8262000bf3565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a828262000ab5565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000aff57808201518184015260208101905062000ae2565b8381111562000b0f576000848401525b50505050565b6000600282049050600182168062000b2e57607f821691505b6020821081141562000b455762000b4462000b81565b5b50919050565b62000b568262000bf3565b810181811067ffffffffffffffff8211171562000b785762000b7762000bb0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000c0f8162000a89565b811462000c1b57600080fd5b50565b612fda8062000c2e6000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a0bcfc7f116100a0578063d5abeb011161006f578063d5abeb0114610684578063e0a80853146106af578063e985e9c5146106d8578063efbd73f414610715578063f2fde38b1461073e576101ee565b8063a0bcfc7f146105d9578063a22cb46514610602578063b88d4fde1461062b578063c87b56dd14610647576101ee565b806394354fd0116100dc57806394354fd01461053c57806395d89b41146105675780639abc832014610592578063a0712d68146105bd576101ee565b806370a0823114610494578063715018a6146104d15780637ec4a659146104e85780638da5cb5b14610511576101ee565b80633ccfd60b116101855780635503a0e8116101545780635503a0e8146103d65780635c975abb1461040157806362b99ad41461042c5780636352211e14610457576101ee565b80633ccfd60b1461034f57806342842e0e1461036657806344a0d68a1461038257806351830227146103ab576101ee565b806313faede6116101c157806313faede6146102b457806316c38b3c146102df57806318160ddd1461030857806323b872dd14610333576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906124ad565b610767565b60405161022791906128f4565b60405180910390f35b34801561023c57600080fd5b506102456107f9565b604051610252919061290f565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612550565b61088b565b60405161028f919061288d565b60405180910390f35b6102b260048036038101906102ad9190612440565b61090a565b005b3480156102c057600080fd5b506102c9610a4e565b6040516102d69190612a31565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612480565b610a54565b005b34801561031457600080fd5b5061031d610a79565b60405161032a9190612a31565b60405180910390f35b61034d6004803603810190610348919061232a565b610a90565b005b34801561035b57600080fd5b50610364610db5565b005b610380600480360381019061037b919061232a565b610e93565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612550565b610eb3565b005b3480156103b757600080fd5b506103c0610ec5565b6040516103cd91906128f4565b60405180910390f35b3480156103e257600080fd5b506103eb610ed8565b6040516103f8919061290f565b60405180910390f35b34801561040d57600080fd5b50610416610f66565b60405161042391906128f4565b60405180910390f35b34801561043857600080fd5b50610441610f79565b60405161044e919061290f565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190612550565b611007565b60405161048b919061288d565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906122bd565b611019565b6040516104c89190612a31565b60405180910390f35b3480156104dd57600080fd5b506104e66110d2565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612507565b6110e6565b005b34801561051d57600080fd5b50610526611108565b604051610533919061288d565b60405180910390f35b34801561054857600080fd5b50610551611132565b60405161055e9190612a31565b60405180910390f35b34801561057357600080fd5b5061057c611138565b604051610589919061290f565b60405180910390f35b34801561059e57600080fd5b506105a76111ca565b6040516105b4919061290f565b60405180910390f35b6105d760048036038101906105d29190612550565b611258565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612507565b6113b1565b005b34801561060e57600080fd5b5061062960048036038101906106249190612400565b6113d3565b005b6106456004803603810190610640919061237d565b6114de565b005b34801561065357600080fd5b5061066e60048036038101906106699190612550565b611551565b60405161067b919061290f565b60405180910390f35b34801561069057600080fd5b506106996116a2565b6040516106a69190612a31565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190612480565b6116a8565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906122ea565b6116cd565b60405161070c91906128f4565b60405180910390f35b34801561072157600080fd5b5061073c6004803603810190610737919061257d565b611761565b005b34801561074a57600080fd5b50610765600480360381019061076091906122bd565b611821565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080890612c9c565b80601f016020809104026020016040519081016040528092919081815260200182805461083490612c9c565b80156108815780601f1061085657610100808354040283529160200191610881565b820191906000526020600020905b81548152906001019060200180831161086457829003601f168201915b5050505050905090565b6000610896826118a5565b6108cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091582611007565b90508073ffffffffffffffffffffffffffffffffffffffff16610936611904565b73ffffffffffffffffffffffffffffffffffffffff1614610999576109628161095d611904565b6116cd565b610998576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a5c61190c565b80601060006101000a81548160ff02191690831515021790555050565b6000610a8361198a565b6001546000540303905090565b6000610a9b8261198f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b0e84611a5d565b91509150610b248187610b1f611904565b611a84565b610b7057610b3986610b34611904565b6116cd565b610b6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be48686866001611ac8565b8015610bef57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cbd85610c99888887611ace565b7c020000000000000000000000000000000000000000000000000000000017611af6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d45576000600185019050600060046000838152602001908152602001600020541415610d43576000548114610d42578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dad8686866001611b21565b505050505050565b610dbd61190c565b60026009541415610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906129f1565b60405180910390fd5b60026009819055506000610e15611108565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e3890612878565b60006040518083038185875af1925050503d8060008114610e75576040519150601f19603f3d011682016040523d82523d6000602084013e610e7a565b606091505b5050905080610e8857600080fd5b506001600981905550565b610eae838383604051806020016040528060008152506114de565b505050565b610ebb61190c565b80600d8190555050565b601060019054906101000a900460ff1681565b600b8054610ee590612c9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1190612c9c565b8015610f5e5780601f10610f3357610100808354040283529160200191610f5e565b820191906000526020600020905b815481529060010190602001808311610f4157829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a8054610f8690612c9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612c9c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b505050505081565b60006110128261198f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611081576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110da61190c565b6110e46000611b27565b565b6110ee61190c565b80600a90805190602001906111049291906120d1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461114790612c9c565b80601f016020809104026020016040519081016040528092919081815260200182805461117390612c9c565b80156111c05780601f10611195576101008083540402835291602001916111c0565b820191906000526020600020905b8154815290600101906020018083116111a357829003601f168201915b5050505050905090565b600c80546111d790612c9c565b80601f016020809104026020016040519081016040528092919081815260200182805461120390612c9c565b80156112505780601f1061122557610100808354040283529160200191611250565b820191906000526020600020905b81548152906001019060200180831161123357829003601f168201915b505050505081565b8060008111801561126b5750600f548111155b6112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190612951565b60405180910390fd5b600e54816112b6610a79565b6112c09190612b36565b1115611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f8906129d1565b60405180910390fd5b8180600d546113109190612b8c565b341015611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990612a11565b60405180910390fd5b601060009054906101000a900460ff16156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990612991565b60405180910390fd5b6113ac3384611bed565b505050565b6113b961190c565b80600c90805190602001906113cf9291906120d1565b5050565b80600760006113e0611904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661148d611904565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d291906128f4565b60405180910390a35050565b6114e9848484610a90565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461154b5761151484848484611c0b565b61154a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061155c826118a5565b61159b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611592906129b1565b60405180910390fd5b601060019054906101000a900460ff1661164157600c80546115bc90612c9c565b80601f01602080910402602001604051908101604052809291908181526020018280546115e890612c9c565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b5050505050905061169d565b600061164b611d6b565b9050600081511161166b5760405180602001604052806000815250611699565b8061167584611dfd565b600b60405160200161168993929190612847565b6040516020818303038152906040525b9150505b919050565b600e5481565b6116b061190c565b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156117745750600f548111155b6117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90612951565b60405180910390fd5b600e54816117bf610a79565b6117c99190612b36565b111561180a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611801906129d1565b60405180910390fd5b61181261190c565b61181c8284611bed565b505050565b61182961190c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090612931565b60405180910390fd5b6118a281611b27565b50565b6000816118b061198a565b111580156118bf575060005482105b80156118fd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611914611e56565b73ffffffffffffffffffffffffffffffffffffffff16611932611108565b73ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90612971565b60405180910390fd5b565b600090565b6000808290508061199e61198a565b11611a2657600054811015611a255760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a23575b6000811415611a195760046000836001900393508381526020019081526020016000205490506119ee565b8092505050611a58565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ae5868684611e5e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c07828260405180602001604052806000815250611e67565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c31611904565b8786866040518563ffffffff1660e01b8152600401611c5394939291906128a8565b602060405180830381600087803b158015611c6d57600080fd5b505af1925050508015611c9e57506040513d601f19601f82011682018060405250810190611c9b91906124da565b60015b611d18573d8060008114611cce576040519150601f19603f3d011682016040523d82523d6000602084013e611cd3565b606091505b50600081511415611d10576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d7a90612c9c565b80601f0160208091040260200160405190810160405280929190818152602001828054611da690612c9c565b8015611df35780601f10611dc857610100808354040283529160200191611df3565b820191906000526020600020905b815481529060010190602001808311611dd657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e4157600184039350600a81066030018453600a8104905080611e3c57611e41565b611e16565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611e718383611f04565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eff57600080549050600083820390505b611eb16000868380600101945086611c0b565b611ee7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e9e578160005414611efc57600080fd5b50505b505050565b6000805490506000821415611f45576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f526000848385611ac8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fc983611fba6000866000611ace565b611fc3856120c1565b17611af6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461206a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061202f565b5060008214156120a6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120bc6000848385611b21565b505050565b60006001821460e11b9050919050565b8280546120dd90612c9c565b90600052602060002090601f0160209004810192826120ff5760008555612146565b82601f1061211857805160ff1916838001178555612146565b82800160010185558215612146579182015b8281111561214557825182559160200191906001019061212a565b5b5090506121539190612157565b5090565b5b80821115612170576000816000905550600101612158565b5090565b600061218761218284612a71565b612a4c565b9050828152602081018484840111156121a3576121a2612d91565b5b6121ae848285612c5a565b509392505050565b60006121c96121c484612aa2565b612a4c565b9050828152602081018484840111156121e5576121e4612d91565b5b6121f0848285612c5a565b509392505050565b60008135905061220781612f48565b92915050565b60008135905061221c81612f5f565b92915050565b60008135905061223181612f76565b92915050565b60008151905061224681612f76565b92915050565b600082601f83011261226157612260612d8c565b5b8135612271848260208601612174565b91505092915050565b600082601f83011261228f5761228e612d8c565b5b813561229f8482602086016121b6565b91505092915050565b6000813590506122b781612f8d565b92915050565b6000602082840312156122d3576122d2612d9b565b5b60006122e1848285016121f8565b91505092915050565b6000806040838503121561230157612300612d9b565b5b600061230f858286016121f8565b9250506020612320858286016121f8565b9150509250929050565b60008060006060848603121561234357612342612d9b565b5b6000612351868287016121f8565b9350506020612362868287016121f8565b9250506040612373868287016122a8565b9150509250925092565b6000806000806080858703121561239757612396612d9b565b5b60006123a5878288016121f8565b94505060206123b6878288016121f8565b93505060406123c7878288016122a8565b925050606085013567ffffffffffffffff8111156123e8576123e7612d96565b5b6123f48782880161224c565b91505092959194509250565b6000806040838503121561241757612416612d9b565b5b6000612425858286016121f8565b92505060206124368582860161220d565b9150509250929050565b6000806040838503121561245757612456612d9b565b5b6000612465858286016121f8565b9250506020612476858286016122a8565b9150509250929050565b60006020828403121561249657612495612d9b565b5b60006124a48482850161220d565b91505092915050565b6000602082840312156124c3576124c2612d9b565b5b60006124d184828501612222565b91505092915050565b6000602082840312156124f0576124ef612d9b565b5b60006124fe84828501612237565b91505092915050565b60006020828403121561251d5761251c612d9b565b5b600082013567ffffffffffffffff81111561253b5761253a612d96565b5b6125478482850161227a565b91505092915050565b60006020828403121561256657612565612d9b565b5b6000612574848285016122a8565b91505092915050565b6000806040838503121561259457612593612d9b565b5b60006125a2858286016122a8565b92505060206125b3858286016121f8565b9150509250929050565b6125c681612be6565b82525050565b6125d581612bf8565b82525050565b60006125e682612ae8565b6125f08185612afe565b9350612600818560208601612c69565b61260981612da0565b840191505092915050565b600061261f82612af3565b6126298185612b1a565b9350612639818560208601612c69565b61264281612da0565b840191505092915050565b600061265882612af3565b6126628185612b2b565b9350612672818560208601612c69565b80840191505092915050565b6000815461268b81612c9c565b6126958186612b2b565b945060018216600081146126b057600181146126c1576126f4565b60ff198316865281860193506126f4565b6126ca85612ad3565b60005b838110156126ec578154818901526001820191506020810190506126cd565b838801955050505b50505092915050565b600061270a602683612b1a565b915061271582612db1565b604082019050919050565b600061272d601483612b1a565b915061273882612e00565b602082019050919050565b6000612750602083612b1a565b915061275b82612e29565b602082019050919050565b6000612773601783612b1a565b915061277e82612e52565b602082019050919050565b6000612796602f83612b1a565b91506127a182612e7b565b604082019050919050565b60006127b9600083612b0f565b91506127c482612eca565b600082019050919050565b60006127dc601483612b1a565b91506127e782612ecd565b602082019050919050565b60006127ff601f83612b1a565b915061280a82612ef6565b602082019050919050565b6000612822601383612b1a565b915061282d82612f1f565b602082019050919050565b61284181612c50565b82525050565b6000612853828661264d565b915061285f828561264d565b915061286b828461267e565b9150819050949350505050565b6000612883826127ac565b9150819050919050565b60006020820190506128a260008301846125bd565b92915050565b60006080820190506128bd60008301876125bd565b6128ca60208301866125bd565b6128d76040830185612838565b81810360608301526128e981846125db565b905095945050505050565b600060208201905061290960008301846125cc565b92915050565b600060208201905081810360008301526129298184612614565b905092915050565b6000602082019050818103600083015261294a816126fd565b9050919050565b6000602082019050818103600083015261296a81612720565b9050919050565b6000602082019050818103600083015261298a81612743565b9050919050565b600060208201905081810360008301526129aa81612766565b9050919050565b600060208201905081810360008301526129ca81612789565b9050919050565b600060208201905081810360008301526129ea816127cf565b9050919050565b60006020820190508181036000830152612a0a816127f2565b9050919050565b60006020820190508181036000830152612a2a81612815565b9050919050565b6000602082019050612a466000830184612838565b92915050565b6000612a56612a67565b9050612a628282612cce565b919050565b6000604051905090565b600067ffffffffffffffff821115612a8c57612a8b612d5d565b5b612a9582612da0565b9050602081019050919050565b600067ffffffffffffffff821115612abd57612abc612d5d565b5b612ac682612da0565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b4182612c50565b9150612b4c83612c50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b8157612b80612cff565b5b828201905092915050565b6000612b9782612c50565b9150612ba283612c50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bdb57612bda612cff565b5b828202905092915050565b6000612bf182612c30565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c87578082015181840152602081019050612c6c565b83811115612c96576000848401525b50505050565b60006002820490506001821680612cb457607f821691505b60208210811415612cc857612cc7612d2e565b5b50919050565b612cd782612da0565b810181811067ffffffffffffffff82111715612cf657612cf5612d5d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612f5181612be6565b8114612f5c57600080fd5b50565b612f6881612bf8565b8114612f7357600080fd5b50565b612f7f81612c04565b8114612f8a57600080fd5b50565b612f9681612c50565b8114612fa157600080fd5b5056fea2646970667358221220a351746145b62fe52db55c8840df79ebc9a8d0c5f1cd1cf314ed7921c235d7f864736f6c63430008070033697066733a2f2f516d6152355952784d483447324e4b574d4a6962584655427a3165744163747a483468337a594e743144667a36422f686964652e6a736f6e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000014506978656c2043697479206279204d617279616d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000045049584300000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a0bcfc7f116100a0578063d5abeb011161006f578063d5abeb0114610684578063e0a80853146106af578063e985e9c5146106d8578063efbd73f414610715578063f2fde38b1461073e576101ee565b8063a0bcfc7f146105d9578063a22cb46514610602578063b88d4fde1461062b578063c87b56dd14610647576101ee565b806394354fd0116100dc57806394354fd01461053c57806395d89b41146105675780639abc832014610592578063a0712d68146105bd576101ee565b806370a0823114610494578063715018a6146104d15780637ec4a659146104e85780638da5cb5b14610511576101ee565b80633ccfd60b116101855780635503a0e8116101545780635503a0e8146103d65780635c975abb1461040157806362b99ad41461042c5780636352211e14610457576101ee565b80633ccfd60b1461034f57806342842e0e1461036657806344a0d68a1461038257806351830227146103ab576101ee565b806313faede6116101c157806313faede6146102b457806316c38b3c146102df57806318160ddd1461030857806323b872dd14610333576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906124ad565b610767565b60405161022791906128f4565b60405180910390f35b34801561023c57600080fd5b506102456107f9565b604051610252919061290f565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612550565b61088b565b60405161028f919061288d565b60405180910390f35b6102b260048036038101906102ad9190612440565b61090a565b005b3480156102c057600080fd5b506102c9610a4e565b6040516102d69190612a31565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612480565b610a54565b005b34801561031457600080fd5b5061031d610a79565b60405161032a9190612a31565b60405180910390f35b61034d6004803603810190610348919061232a565b610a90565b005b34801561035b57600080fd5b50610364610db5565b005b610380600480360381019061037b919061232a565b610e93565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612550565b610eb3565b005b3480156103b757600080fd5b506103c0610ec5565b6040516103cd91906128f4565b60405180910390f35b3480156103e257600080fd5b506103eb610ed8565b6040516103f8919061290f565b60405180910390f35b34801561040d57600080fd5b50610416610f66565b60405161042391906128f4565b60405180910390f35b34801561043857600080fd5b50610441610f79565b60405161044e919061290f565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190612550565b611007565b60405161048b919061288d565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906122bd565b611019565b6040516104c89190612a31565b60405180910390f35b3480156104dd57600080fd5b506104e66110d2565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612507565b6110e6565b005b34801561051d57600080fd5b50610526611108565b604051610533919061288d565b60405180910390f35b34801561054857600080fd5b50610551611132565b60405161055e9190612a31565b60405180910390f35b34801561057357600080fd5b5061057c611138565b604051610589919061290f565b60405180910390f35b34801561059e57600080fd5b506105a76111ca565b6040516105b4919061290f565b60405180910390f35b6105d760048036038101906105d29190612550565b611258565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612507565b6113b1565b005b34801561060e57600080fd5b5061062960048036038101906106249190612400565b6113d3565b005b6106456004803603810190610640919061237d565b6114de565b005b34801561065357600080fd5b5061066e60048036038101906106699190612550565b611551565b60405161067b919061290f565b60405180910390f35b34801561069057600080fd5b506106996116a2565b6040516106a69190612a31565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190612480565b6116a8565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906122ea565b6116cd565b60405161070c91906128f4565b60405180910390f35b34801561072157600080fd5b5061073c6004803603810190610737919061257d565b611761565b005b34801561074a57600080fd5b50610765600480360381019061076091906122bd565b611821565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080890612c9c565b80601f016020809104026020016040519081016040528092919081815260200182805461083490612c9c565b80156108815780601f1061085657610100808354040283529160200191610881565b820191906000526020600020905b81548152906001019060200180831161086457829003601f168201915b5050505050905090565b6000610896826118a5565b6108cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091582611007565b90508073ffffffffffffffffffffffffffffffffffffffff16610936611904565b73ffffffffffffffffffffffffffffffffffffffff1614610999576109628161095d611904565b6116cd565b610998576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a5c61190c565b80601060006101000a81548160ff02191690831515021790555050565b6000610a8361198a565b6001546000540303905090565b6000610a9b8261198f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b0e84611a5d565b91509150610b248187610b1f611904565b611a84565b610b7057610b3986610b34611904565b6116cd565b610b6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be48686866001611ac8565b8015610bef57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cbd85610c99888887611ace565b7c020000000000000000000000000000000000000000000000000000000017611af6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d45576000600185019050600060046000838152602001908152602001600020541415610d43576000548114610d42578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dad8686866001611b21565b505050505050565b610dbd61190c565b60026009541415610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906129f1565b60405180910390fd5b60026009819055506000610e15611108565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e3890612878565b60006040518083038185875af1925050503d8060008114610e75576040519150601f19603f3d011682016040523d82523d6000602084013e610e7a565b606091505b5050905080610e8857600080fd5b506001600981905550565b610eae838383604051806020016040528060008152506114de565b505050565b610ebb61190c565b80600d8190555050565b601060019054906101000a900460ff1681565b600b8054610ee590612c9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1190612c9c565b8015610f5e5780601f10610f3357610100808354040283529160200191610f5e565b820191906000526020600020905b815481529060010190602001808311610f4157829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a8054610f8690612c9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612c9c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b505050505081565b60006110128261198f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611081576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110da61190c565b6110e46000611b27565b565b6110ee61190c565b80600a90805190602001906111049291906120d1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461114790612c9c565b80601f016020809104026020016040519081016040528092919081815260200182805461117390612c9c565b80156111c05780601f10611195576101008083540402835291602001916111c0565b820191906000526020600020905b8154815290600101906020018083116111a357829003601f168201915b5050505050905090565b600c80546111d790612c9c565b80601f016020809104026020016040519081016040528092919081815260200182805461120390612c9c565b80156112505780601f1061122557610100808354040283529160200191611250565b820191906000526020600020905b81548152906001019060200180831161123357829003601f168201915b505050505081565b8060008111801561126b5750600f548111155b6112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190612951565b60405180910390fd5b600e54816112b6610a79565b6112c09190612b36565b1115611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f8906129d1565b60405180910390fd5b8180600d546113109190612b8c565b341015611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990612a11565b60405180910390fd5b601060009054906101000a900460ff16156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990612991565b60405180910390fd5b6113ac3384611bed565b505050565b6113b961190c565b80600c90805190602001906113cf9291906120d1565b5050565b80600760006113e0611904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661148d611904565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d291906128f4565b60405180910390a35050565b6114e9848484610a90565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461154b5761151484848484611c0b565b61154a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061155c826118a5565b61159b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611592906129b1565b60405180910390fd5b601060019054906101000a900460ff1661164157600c80546115bc90612c9c565b80601f01602080910402602001604051908101604052809291908181526020018280546115e890612c9c565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b5050505050905061169d565b600061164b611d6b565b9050600081511161166b5760405180602001604052806000815250611699565b8061167584611dfd565b600b60405160200161168993929190612847565b6040516020818303038152906040525b9150505b919050565b600e5481565b6116b061190c565b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156117745750600f548111155b6117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90612951565b60405180910390fd5b600e54816117bf610a79565b6117c99190612b36565b111561180a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611801906129d1565b60405180910390fd5b61181261190c565b61181c8284611bed565b505050565b61182961190c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090612931565b60405180910390fd5b6118a281611b27565b50565b6000816118b061198a565b111580156118bf575060005482105b80156118fd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611914611e56565b73ffffffffffffffffffffffffffffffffffffffff16611932611108565b73ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90612971565b60405180910390fd5b565b600090565b6000808290508061199e61198a565b11611a2657600054811015611a255760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a23575b6000811415611a195760046000836001900393508381526020019081526020016000205490506119ee565b8092505050611a58565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ae5868684611e5e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c07828260405180602001604052806000815250611e67565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c31611904565b8786866040518563ffffffff1660e01b8152600401611c5394939291906128a8565b602060405180830381600087803b158015611c6d57600080fd5b505af1925050508015611c9e57506040513d601f19601f82011682018060405250810190611c9b91906124da565b60015b611d18573d8060008114611cce576040519150601f19603f3d011682016040523d82523d6000602084013e611cd3565b606091505b50600081511415611d10576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d7a90612c9c565b80601f0160208091040260200160405190810160405280929190818152602001828054611da690612c9c565b8015611df35780601f10611dc857610100808354040283529160200191611df3565b820191906000526020600020905b815481529060010190602001808311611dd657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e4157600184039350600a81066030018453600a8104905080611e3c57611e41565b611e16565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611e718383611f04565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eff57600080549050600083820390505b611eb16000868380600101945086611c0b565b611ee7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e9e578160005414611efc57600080fd5b50505b505050565b6000805490506000821415611f45576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f526000848385611ac8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fc983611fba6000866000611ace565b611fc3856120c1565b17611af6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461206a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061202f565b5060008214156120a6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120bc6000848385611b21565b505050565b60006001821460e11b9050919050565b8280546120dd90612c9c565b90600052602060002090601f0160209004810192826120ff5760008555612146565b82601f1061211857805160ff1916838001178555612146565b82800160010185558215612146579182015b8281111561214557825182559160200191906001019061212a565b5b5090506121539190612157565b5090565b5b80821115612170576000816000905550600101612158565b5090565b600061218761218284612a71565b612a4c565b9050828152602081018484840111156121a3576121a2612d91565b5b6121ae848285612c5a565b509392505050565b60006121c96121c484612aa2565b612a4c565b9050828152602081018484840111156121e5576121e4612d91565b5b6121f0848285612c5a565b509392505050565b60008135905061220781612f48565b92915050565b60008135905061221c81612f5f565b92915050565b60008135905061223181612f76565b92915050565b60008151905061224681612f76565b92915050565b600082601f83011261226157612260612d8c565b5b8135612271848260208601612174565b91505092915050565b600082601f83011261228f5761228e612d8c565b5b813561229f8482602086016121b6565b91505092915050565b6000813590506122b781612f8d565b92915050565b6000602082840312156122d3576122d2612d9b565b5b60006122e1848285016121f8565b91505092915050565b6000806040838503121561230157612300612d9b565b5b600061230f858286016121f8565b9250506020612320858286016121f8565b9150509250929050565b60008060006060848603121561234357612342612d9b565b5b6000612351868287016121f8565b9350506020612362868287016121f8565b9250506040612373868287016122a8565b9150509250925092565b6000806000806080858703121561239757612396612d9b565b5b60006123a5878288016121f8565b94505060206123b6878288016121f8565b93505060406123c7878288016122a8565b925050606085013567ffffffffffffffff8111156123e8576123e7612d96565b5b6123f48782880161224c565b91505092959194509250565b6000806040838503121561241757612416612d9b565b5b6000612425858286016121f8565b92505060206124368582860161220d565b9150509250929050565b6000806040838503121561245757612456612d9b565b5b6000612465858286016121f8565b9250506020612476858286016122a8565b9150509250929050565b60006020828403121561249657612495612d9b565b5b60006124a48482850161220d565b91505092915050565b6000602082840312156124c3576124c2612d9b565b5b60006124d184828501612222565b91505092915050565b6000602082840312156124f0576124ef612d9b565b5b60006124fe84828501612237565b91505092915050565b60006020828403121561251d5761251c612d9b565b5b600082013567ffffffffffffffff81111561253b5761253a612d96565b5b6125478482850161227a565b91505092915050565b60006020828403121561256657612565612d9b565b5b6000612574848285016122a8565b91505092915050565b6000806040838503121561259457612593612d9b565b5b60006125a2858286016122a8565b92505060206125b3858286016121f8565b9150509250929050565b6125c681612be6565b82525050565b6125d581612bf8565b82525050565b60006125e682612ae8565b6125f08185612afe565b9350612600818560208601612c69565b61260981612da0565b840191505092915050565b600061261f82612af3565b6126298185612b1a565b9350612639818560208601612c69565b61264281612da0565b840191505092915050565b600061265882612af3565b6126628185612b2b565b9350612672818560208601612c69565b80840191505092915050565b6000815461268b81612c9c565b6126958186612b2b565b945060018216600081146126b057600181146126c1576126f4565b60ff198316865281860193506126f4565b6126ca85612ad3565b60005b838110156126ec578154818901526001820191506020810190506126cd565b838801955050505b50505092915050565b600061270a602683612b1a565b915061271582612db1565b604082019050919050565b600061272d601483612b1a565b915061273882612e00565b602082019050919050565b6000612750602083612b1a565b915061275b82612e29565b602082019050919050565b6000612773601783612b1a565b915061277e82612e52565b602082019050919050565b6000612796602f83612b1a565b91506127a182612e7b565b604082019050919050565b60006127b9600083612b0f565b91506127c482612eca565b600082019050919050565b60006127dc601483612b1a565b91506127e782612ecd565b602082019050919050565b60006127ff601f83612b1a565b915061280a82612ef6565b602082019050919050565b6000612822601383612b1a565b915061282d82612f1f565b602082019050919050565b61284181612c50565b82525050565b6000612853828661264d565b915061285f828561264d565b915061286b828461267e565b9150819050949350505050565b6000612883826127ac565b9150819050919050565b60006020820190506128a260008301846125bd565b92915050565b60006080820190506128bd60008301876125bd565b6128ca60208301866125bd565b6128d76040830185612838565b81810360608301526128e981846125db565b905095945050505050565b600060208201905061290960008301846125cc565b92915050565b600060208201905081810360008301526129298184612614565b905092915050565b6000602082019050818103600083015261294a816126fd565b9050919050565b6000602082019050818103600083015261296a81612720565b9050919050565b6000602082019050818103600083015261298a81612743565b9050919050565b600060208201905081810360008301526129aa81612766565b9050919050565b600060208201905081810360008301526129ca81612789565b9050919050565b600060208201905081810360008301526129ea816127cf565b9050919050565b60006020820190508181036000830152612a0a816127f2565b9050919050565b60006020820190508181036000830152612a2a81612815565b9050919050565b6000602082019050612a466000830184612838565b92915050565b6000612a56612a67565b9050612a628282612cce565b919050565b6000604051905090565b600067ffffffffffffffff821115612a8c57612a8b612d5d565b5b612a9582612da0565b9050602081019050919050565b600067ffffffffffffffff821115612abd57612abc612d5d565b5b612ac682612da0565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b4182612c50565b9150612b4c83612c50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b8157612b80612cff565b5b828201905092915050565b6000612b9782612c50565b9150612ba283612c50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bdb57612bda612cff565b5b828202905092915050565b6000612bf182612c30565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c87578082015181840152602081019050612c6c565b83811115612c96576000848401525b50505050565b60006002820490506001821680612cb457607f821691505b60208210811415612cc857612cc7612d2e565b5b50919050565b612cd782612da0565b810181811067ffffffffffffffff82111715612cf657612cf5612d5d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612f5181612be6565b8114612f5c57600080fd5b50565b612f6881612bf8565b8114612f7357600080fd5b50565b612f7f81612c04565b8114612f8a57600080fd5b50565b612f9681612c50565b8114612fa157600080fd5b5056fea2646970667358221220a351746145b62fe52db55c8840df79ebc9a8d0c5f1cd1cf314ed7921c235d7f864736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000014506978656c2043697479206279204d617279616d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000045049584300000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Pixel City by Maryam
Arg [1] : _tokenSymbol (string): PIXC
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [3] : 506978656c2043697479206279204d617279616d000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5049584300000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
57891:2474:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24789:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25691:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32182:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31615:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58119:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59926:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21442:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35821:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60102:150;;;;;;;;;;;;;:::i;:::-;;38742:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59650:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58268:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57985:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58238:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57952:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27084:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22626:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5568:103;;;;;;;;;;;;;:::i;:::-;;59820:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58194:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25867:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58023:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58838:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59730:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32740:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39533:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59217:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58158:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60009:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33131:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59056:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5826:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24789:639;24874:4;25213:10;25198:25;;:11;:25;;;;:102;;;;25290:10;25275:25;;:11;:25;;;;25198:102;:179;;;;25367:10;25352:25;;:11;:25;;;;25198:179;25178:199;;24789:639;;;:::o;25691:100::-;25745:13;25778:5;25771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25691:100;:::o;32182:218::-;32258:7;32283:16;32291:7;32283;:16::i;:::-;32278:64;;32308:34;;;;;;;;;;;;;;32278:64;32362:15;:24;32378:7;32362:24;;;;;;;;;;;:30;;;;;;;;;;;;32355:37;;32182:218;;;:::o;31615:408::-;31704:13;31720:16;31728:7;31720;:16::i;:::-;31704:32;;31776:5;31753:28;;:19;:17;:19::i;:::-;:28;;;31749:175;;31801:44;31818:5;31825:19;:17;:19::i;:::-;31801:16;:44::i;:::-;31796:128;;31873:35;;;;;;;;;;;;;;31796:128;31749:175;31969:2;31936:15;:24;31952:7;31936:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32007:7;32003:2;31987:28;;31996:5;31987:28;;;;;;;;;;;;31693:330;31615:408;;:::o;58119:34::-;;;;:::o;59926:77::-;4806:13;:11;:13::i;:::-;59991:6:::1;59982;;:15;;;;;;;;;;;;;;;;;;59926:77:::0;:::o;21442:323::-;21503:7;21731:15;:13;:15::i;:::-;21716:12;;21700:13;;:28;:46;21693:53;;21442:323;:::o;35821:2825::-;35963:27;35993;36012:7;35993:18;:27::i;:::-;35963:57;;36078:4;36037:45;;36053:19;36037:45;;;36033:86;;36091:28;;;;;;;;;;;;;;36033:86;36133:27;36162:23;36189:35;36216:7;36189:26;:35::i;:::-;36132:92;;;;36324:68;36349:15;36366:4;36372:19;:17;:19::i;:::-;36324:24;:68::i;:::-;36319:180;;36412:43;36429:4;36435:19;:17;:19::i;:::-;36412:16;:43::i;:::-;36407:92;;36464:35;;;;;;;;;;;;;;36407:92;36319:180;36530:1;36516:16;;:2;:16;;;36512:52;;;36541:23;;;;;;;;;;;;;;36512:52;36577:43;36599:4;36605:2;36609:7;36618:1;36577:21;:43::i;:::-;36713:15;36710:160;;;36853:1;36832:19;36825:30;36710:160;37250:18;:24;37269:4;37250:24;;;;;;;;;;;;;;;;37248:26;;;;;;;;;;;;37319:18;:22;37338:2;37319:22;;;;;;;;;;;;;;;;37317:24;;;;;;;;;;;37641:146;37678:2;37727:45;37742:4;37748:2;37752:19;37727:14;:45::i;:::-;17841:8;37699:73;37641:18;:146::i;:::-;37612:17;:26;37630:7;37612:26;;;;;;;;;;;:175;;;;37958:1;17841:8;37907:19;:47;:52;37903:627;;;37980:19;38012:1;38002:7;:11;37980:33;;38169:1;38135:17;:30;38153:11;38135:30;;;;;;;;;;;;:35;38131:384;;;38273:13;;38258:11;:28;38254:242;;38453:19;38420:17;:30;38438:11;38420:30;;;;;;;;;;;:52;;;;38254:242;38131:384;37961:569;37903:627;38577:7;38573:2;38558:27;;38567:4;38558:27;;;;;;;;;;;;38596:42;38617:4;38623:2;38627:7;38636:1;38596:20;:42::i;:::-;35952:2694;;;35821:2825;;;:::o;60102:150::-;4806:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;60160:7:::2;60181;:5;:7::i;:::-;60173:21;;60202;60173:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60159:69;;;60243:2;60235:11;;;::::0;::::2;;60152:100;1801:1:::1;2755:7;:22;;;;60102:150::o:0;38742:193::-;38888:39;38905:4;38911:2;38915:7;38888:39;;;;;;;;;;;;:16;:39::i;:::-;38742:193;;;:::o;59650:74::-;4806:13;:11;:13::i;:::-;59713:5:::1;59706:4;:12;;;;59650:74:::0;:::o;58268:28::-;;;;;;;;;;;;;:::o;57985:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58238:25::-;;;;;;;;;;;;;:::o;57952:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27084:152::-;27156:7;27199:27;27218:7;27199:18;:27::i;:::-;27176:52;;27084:152;;;:::o;22626:233::-;22698:7;22739:1;22722:19;;:5;:19;;;22718:60;;;22750:28;;;;;;;;;;;;;;22718:60;16785:13;22796:18;:25;22815:5;22796:25;;;;;;;;;;;;;;;;:55;22789:62;;22626:233;;;:::o;5568:103::-;4806:13;:11;:13::i;:::-;5633:30:::1;5660:1;5633:18;:30::i;:::-;5568:103::o:0;59820:100::-;4806:13;:11;:13::i;:::-;59904:10:::1;59892:9;:22;;;;;;;;;;;;:::i;:::-;;59820:100:::0;:::o;4920:87::-;4966:7;4993:6;;;;;;;;;;;4986:13;;4920:87;:::o;58194:37::-;;;;:::o;25867:104::-;25923:13;25956:7;25949:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25867:104;:::o;58023:89::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58838:210::-;58903:11;58535:1;58521:11;:15;:52;;;;;58555:18;;58540:11;:33;;58521:52;58513:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58644:9;;58629:11;58613:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58605:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58936:11:::1;58783;58776:4;;:18;;;;:::i;:::-;58763:9;:31;;58755:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58965:6:::2;;;;;;;;;;;58964:7;58956:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59008:34;59018:10;59030:11;59008:9;:34::i;:::-;58685:1:::1;58838:210:::0;;:::o;59730:84::-;4806:13;:11;:13::i;:::-;59804:4:::1;59794:7;:14;;;;;;;;;;;;:::i;:::-;;59730:84:::0;:::o;32740:234::-;32887:8;32835:18;:39;32854:19;:17;:19::i;:::-;32835:39;;;;;;;;;;;;;;;:49;32875:8;32835:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32947:8;32911:55;;32926:19;:17;:19::i;:::-;32911:55;;;32957:8;32911:55;;;;;;:::i;:::-;;;;;;;;32740:234;;:::o;39533:407::-;39708:31;39721:4;39727:2;39731:7;39708:12;:31::i;:::-;39772:1;39754:2;:14;;;:19;39750:183;;39793:56;39824:4;39830:2;39834:7;39843:5;39793:30;:56::i;:::-;39788:145;;39877:40;;;;;;;;;;;;;;39788:145;39750:183;39533:407;;;;:::o;59217:427::-;59291:13;59321:17;59329:8;59321:7;:17::i;:::-;59313:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59404:8;;;;;;;;;;;59399:46;;59430:7;59423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59399:46;59453:28;59484:10;:8;:10::i;:::-;59453:41;;59539:1;59514:14;59508:28;:32;:130;;;;;;;;;;;;;;;;;59576:14;59592:19;59602:8;59592:9;:19::i;:::-;59613:9;59559:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59508:130;59501:137;;;59217:427;;;;:::o;58158:31::-;;;;:::o;60009:87::-;4806:13;:11;:13::i;:::-;60081:9:::1;60070:8;;:20;;;;;;;;;;;;;;;;;;60009:87:::0;:::o;33131:164::-;33228:4;33252:18;:25;33271:5;33252:25;;;;;;;;;;;;;;;:35;33278:8;33252:35;;;;;;;;;;;;;;;;;;;;;;;;;33245:42;;33131:164;;;;:::o;59056:155::-;59142:11;58535:1;58521:11;:15;:52;;;;;58555:18;;58540:11;:33;;58521:52;58513:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58644:9;;58629:11;58613:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58605:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4806:13:::1;:11;:13::i;:::-;59172:33:::2;59182:9;59193:11;59172:9;:33::i;:::-;59056:155:::0;;;:::o;5826:201::-;4806:13;:11;:13::i;:::-;5935:1:::1;5915:22;;:8;:22;;;;5907:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5991:28;6010:8;5991:18;:28::i;:::-;5826:201:::0;:::o;33553:282::-;33618:4;33674:7;33655:15;:13;:15::i;:::-;:26;;:66;;;;;33708:13;;33698:7;:23;33655:66;:153;;;;;33807:1;17561:8;33759:17;:26;33777:7;33759:26;;;;;;;;;;;;:44;:49;33655:153;33635:173;;33553:282;;;:::o;55861:105::-;55921:7;55948:10;55941:17;;55861:105;:::o;5085:132::-;5160:12;:10;:12::i;:::-;5149:23;;:7;:5;:7::i;:::-;:23;;;5141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5085:132::o;20958:92::-;21014:7;20958:92;:::o;28239:1275::-;28306:7;28326:12;28341:7;28326:22;;28409:4;28390:15;:13;:15::i;:::-;:23;28386:1061;;28443:13;;28436:4;:20;28432:1015;;;28481:14;28498:17;:23;28516:4;28498:23;;;;;;;;;;;;28481:40;;28615:1;17561:8;28587:6;:24;:29;28583:845;;;29252:113;29269:1;29259:6;:11;29252:113;;;29312:17;:25;29330:6;;;;;;;29312:25;;;;;;;;;;;;29303:34;;29252:113;;;29398:6;29391:13;;;;;;28583:845;28458:989;28432:1015;28386:1061;29475:31;;;;;;;;;;;;;;28239:1275;;;;:::o;34716:485::-;34818:27;34847:23;34888:38;34929:15;:24;34945:7;34929:24;;;;;;;;;;;34888:65;;35106:18;35083:41;;35163:19;35157:26;35138:45;;35068:126;34716:485;;;:::o;33944:659::-;34093:11;34258:16;34251:5;34247:28;34238:37;;34418:16;34407:9;34403:32;34390:45;;34568:15;34557:9;34554:30;34546:5;34535:9;34532:20;34529:56;34519:66;;33944:659;;;;;:::o;40602:159::-;;;;;:::o;55170:311::-;55305:7;55325:16;17965:3;55351:19;:41;;55325:68;;17965:3;55419:31;55430:4;55436:2;55440:9;55419:10;:31::i;:::-;55411:40;;:62;;55404:69;;;55170:311;;;;;:::o;30062:450::-;30142:14;30310:16;30303:5;30299:28;30290:37;;30487:5;30473:11;30448:23;30444:41;30441:52;30434:5;30431:63;30421:73;;30062:450;;;;:::o;41426:158::-;;;;;:::o;6187:191::-;6261:16;6280:6;;;;;;;;;;;6261:25;;6306:8;6297:6;;:17;;;;;;;;;;;;;;;;;;6361:8;6330:40;;6351:8;6330:40;;;;;;;;;;;;6250:128;6187:191;:::o;49693:112::-;49770:27;49780:2;49784:8;49770:27;;;;;;;;;;;;:9;:27::i;:::-;49693:112;;:::o;42024:716::-;42187:4;42233:2;42208:45;;;42254:19;:17;:19::i;:::-;42275:4;42281:7;42290:5;42208:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42204:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42508:1;42491:6;:13;:18;42487:235;;;42537:40;;;;;;;;;;;;;;42487:235;42680:6;42674:13;42665:6;42661:2;42657:15;42650:38;42204:529;42377:54;;;42367:64;;;:6;:64;;;;42360:71;;;42024:716;;;;;;:::o;60258:104::-;60318:13;60347:9;60340:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60258:104;:::o;56068:1745::-;56133:17;56567:4;56560;56554:11;56550:22;56659:1;56653:4;56646:15;56734:4;56731:1;56727:12;56720:19;;56816:1;56811:3;56804:14;56920:3;57159:5;57141:428;57167:1;57141:428;;;57207:1;57202:3;57198:11;57191:18;;57378:2;57372:4;57368:13;57364:2;57360:22;57355:3;57347:36;57472:2;57466:4;57462:13;57454:21;;57539:4;57529:25;;57547:5;;57529:25;57141:428;;;57145:21;57608:3;57603;57599:13;57723:4;57718:3;57714:14;57707:21;;57788:6;57783:3;57776:19;56172:1634;;;56068:1745;;;:::o;3471:98::-;3524:7;3551:10;3544:17;;3471:98;:::o;54871:147::-;55008:6;54871:147;;;;;:::o;48920:689::-;49051:19;49057:2;49061:8;49051:5;:19::i;:::-;49130:1;49112:2;:14;;;:19;49108:483;;49152:11;49166:13;;49152:27;;49198:13;49220:8;49214:3;:14;49198:30;;49247:233;49278:62;49317:1;49321:2;49325:7;;;;;;49334:5;49278:30;:62::i;:::-;49273:167;;49376:40;;;;;;;;;;;;;;49273:167;49475:3;49467:5;:11;49247:233;;49562:3;49545:13;;:20;49541:34;;49567:8;;;49541:34;49133:458;;49108:483;48920:689;;;:::o;43202:2966::-;43275:20;43298:13;;43275:36;;43338:1;43326:8;:13;43322:44;;;43348:18;;;;;;;;;;;;;;43322:44;43379:61;43409:1;43413:2;43417:12;43431:8;43379:21;:61::i;:::-;43923:1;16923:2;43893:1;:26;;43892:32;43880:8;:45;43854:18;:22;43873:2;43854:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44202:139;44239:2;44293:33;44316:1;44320:2;44324:1;44293:14;:33::i;:::-;44260:30;44281:8;44260:20;:30::i;:::-;:66;44202:18;:139::i;:::-;44168:17;:31;44186:12;44168:31;;;;;;;;;;;:173;;;;44358:16;44389:11;44418:8;44403:12;:23;44389:37;;44939:16;44935:2;44931:25;44919:37;;45311:12;45271:8;45230:1;45168:25;45109:1;45048;45021:335;45682:1;45668:12;45664:20;45622:346;45723:3;45714:7;45711:16;45622:346;;45941:7;45931:8;45928:1;45901:25;45898:1;45895;45890:59;45776:1;45767:7;45763:15;45752:26;;45622:346;;;45626:77;46013:1;46001:8;:13;45997:45;;;46023:19;;;;;;;;;;;;;;45997:45;46075:3;46059:13;:19;;;;43628:2462;;46100:60;46129:1;46133:2;46137:12;46151:8;46100:20;:60::i;:::-;43264:2904;43202:2966;;:::o;30614:324::-;30684:14;30917:1;30907:8;30904:15;30878:24;30874:46;30864:56;;30614:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410: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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:398::-;12219:3;12240:83;12321:1;12316:3;12240:83;:::i;:::-;12233:90;;12332:93;12421:3;12332:93;:::i;:::-;12450:1;12445:3;12441:11;12434:18;;12060:398;;;:::o;12464:366::-;12606:3;12627:67;12691:2;12686:3;12627:67;:::i;:::-;12620:74;;12703:93;12792:3;12703:93;:::i;:::-;12821:2;12816:3;12812:12;12805:19;;12464:366;;;:::o;12836:::-;12978:3;12999:67;13063:2;13058:3;12999:67;:::i;:::-;12992:74;;13075:93;13164:3;13075:93;:::i;:::-;13193:2;13188:3;13184:12;13177:19;;12836:366;;;:::o;13208:::-;13350:3;13371:67;13435:2;13430:3;13371:67;:::i;:::-;13364:74;;13447:93;13536:3;13447:93;:::i;:::-;13565:2;13560:3;13556:12;13549:19;;13208:366;;;:::o;13580:118::-;13667:24;13685:5;13667:24;:::i;:::-;13662:3;13655:37;13580:118;;:::o;13704:589::-;13929:3;13951:95;14042:3;14033:6;13951:95;:::i;:::-;13944:102;;14063:95;14154:3;14145:6;14063:95;:::i;:::-;14056:102;;14175:92;14263:3;14254:6;14175:92;:::i;:::-;14168:99;;14284:3;14277:10;;13704:589;;;;;;:::o;14299:379::-;14483:3;14505:147;14648:3;14505:147;:::i;:::-;14498:154;;14669:3;14662:10;;14299:379;;;:::o;14684:222::-;14777:4;14815:2;14804:9;14800:18;14792:26;;14828:71;14896:1;14885:9;14881:17;14872:6;14828:71;:::i;:::-;14684:222;;;;:::o;14912:640::-;15107:4;15145:3;15134:9;15130:19;15122:27;;15159:71;15227:1;15216:9;15212:17;15203:6;15159:71;:::i;:::-;15240:72;15308:2;15297:9;15293:18;15284:6;15240:72;:::i;:::-;15322;15390:2;15379:9;15375:18;15366:6;15322:72;:::i;:::-;15441:9;15435:4;15431:20;15426:2;15415:9;15411:18;15404:48;15469:76;15540:4;15531:6;15469:76;:::i;:::-;15461:84;;14912:640;;;;;;;:::o;15558:210::-;15645:4;15683:2;15672:9;15668:18;15660:26;;15696:65;15758:1;15747:9;15743:17;15734:6;15696:65;:::i;:::-;15558:210;;;;:::o;15774:313::-;15887:4;15925:2;15914:9;15910:18;15902:26;;15974:9;15968:4;15964:20;15960:1;15949:9;15945:17;15938:47;16002:78;16075:4;16066:6;16002:78;:::i;:::-;15994:86;;15774:313;;;;:::o;16093:419::-;16259:4;16297:2;16286:9;16282:18;16274:26;;16346:9;16340:4;16336:20;16332:1;16321:9;16317:17;16310:47;16374:131;16500:4;16374:131;:::i;:::-;16366:139;;16093:419;;;:::o;16518:::-;16684:4;16722:2;16711:9;16707:18;16699:26;;16771:9;16765:4;16761:20;16757:1;16746:9;16742:17;16735:47;16799:131;16925:4;16799:131;:::i;:::-;16791:139;;16518:419;;;:::o;16943:::-;17109:4;17147:2;17136:9;17132:18;17124:26;;17196:9;17190:4;17186:20;17182:1;17171:9;17167:17;17160:47;17224:131;17350:4;17224:131;:::i;:::-;17216:139;;16943:419;;;:::o;17368:::-;17534:4;17572:2;17561:9;17557:18;17549:26;;17621:9;17615:4;17611:20;17607:1;17596:9;17592:17;17585:47;17649:131;17775:4;17649:131;:::i;:::-;17641:139;;17368:419;;;:::o;17793:::-;17959:4;17997:2;17986:9;17982:18;17974:26;;18046:9;18040:4;18036:20;18032:1;18021:9;18017:17;18010:47;18074:131;18200:4;18074:131;:::i;:::-;18066:139;;17793:419;;;:::o;18218:::-;18384:4;18422:2;18411:9;18407:18;18399:26;;18471:9;18465:4;18461:20;18457:1;18446:9;18442:17;18435:47;18499:131;18625:4;18499:131;:::i;:::-;18491:139;;18218:419;;;:::o;18643:::-;18809:4;18847:2;18836:9;18832:18;18824:26;;18896:9;18890:4;18886:20;18882:1;18871:9;18867:17;18860:47;18924:131;19050:4;18924:131;:::i;:::-;18916:139;;18643:419;;;:::o;19068:::-;19234:4;19272:2;19261:9;19257:18;19249:26;;19321:9;19315:4;19311:20;19307:1;19296:9;19292:17;19285:47;19349:131;19475:4;19349:131;:::i;:::-;19341:139;;19068:419;;;:::o;19493:222::-;19586:4;19624:2;19613:9;19609:18;19601:26;;19637:71;19705:1;19694:9;19690:17;19681:6;19637:71;:::i;:::-;19493:222;;;;:::o;19721:129::-;19755:6;19782:20;;:::i;:::-;19772:30;;19811:33;19839:4;19831:6;19811:33;:::i;:::-;19721:129;;;:::o;19856:75::-;19889:6;19922:2;19916:9;19906:19;;19856:75;:::o;19937:307::-;19998:4;20088:18;20080:6;20077:30;20074:56;;;20110:18;;:::i;:::-;20074:56;20148:29;20170:6;20148:29;:::i;:::-;20140:37;;20232:4;20226;20222:15;20214:23;;19937:307;;;:::o;20250:308::-;20312:4;20402:18;20394:6;20391:30;20388:56;;;20424:18;;:::i;:::-;20388:56;20462:29;20484:6;20462:29;:::i;:::-;20454:37;;20546:4;20540;20536:15;20528:23;;20250:308;;;:::o;20564:141::-;20613:4;20636:3;20628:11;;20659:3;20656:1;20649:14;20693:4;20690:1;20680:18;20672:26;;20564:141;;;:::o;20711:98::-;20762:6;20796:5;20790:12;20780:22;;20711:98;;;:::o;20815:99::-;20867:6;20901:5;20895:12;20885:22;;20815:99;;;:::o;20920:168::-;21003:11;21037:6;21032:3;21025:19;21077:4;21072:3;21068:14;21053:29;;20920:168;;;;:::o;21094:147::-;21195:11;21232:3;21217:18;;21094:147;;;;:::o;21247:169::-;21331:11;21365:6;21360:3;21353:19;21405:4;21400:3;21396:14;21381:29;;21247:169;;;;:::o;21422:148::-;21524:11;21561:3;21546:18;;21422:148;;;;:::o;21576:305::-;21616:3;21635:20;21653:1;21635:20;:::i;:::-;21630:25;;21669:20;21687:1;21669:20;:::i;:::-;21664:25;;21823:1;21755:66;21751:74;21748:1;21745:81;21742:107;;;21829:18;;:::i;:::-;21742:107;21873:1;21870;21866:9;21859:16;;21576:305;;;;:::o;21887:348::-;21927:7;21950:20;21968:1;21950:20;:::i;:::-;21945:25;;21984:20;22002:1;21984:20;:::i;:::-;21979:25;;22172:1;22104:66;22100:74;22097:1;22094:81;22089:1;22082:9;22075:17;22071:105;22068:131;;;22179:18;;:::i;:::-;22068:131;22227:1;22224;22220:9;22209:20;;21887:348;;;;:::o;22241:96::-;22278:7;22307:24;22325:5;22307:24;:::i;:::-;22296:35;;22241:96;;;:::o;22343:90::-;22377:7;22420:5;22413:13;22406:21;22395:32;;22343:90;;;:::o;22439:149::-;22475:7;22515:66;22508:5;22504:78;22493:89;;22439:149;;;:::o;22594:126::-;22631:7;22671:42;22664:5;22660:54;22649:65;;22594:126;;;:::o;22726:77::-;22763:7;22792:5;22781:16;;22726:77;;;:::o;22809:154::-;22893:6;22888:3;22883;22870:30;22955:1;22946:6;22941:3;22937:16;22930:27;22809:154;;;:::o;22969:307::-;23037:1;23047:113;23061:6;23058:1;23055:13;23047:113;;;23146:1;23141:3;23137:11;23131:18;23127:1;23122:3;23118:11;23111:39;23083:2;23080:1;23076:10;23071:15;;23047:113;;;23178:6;23175:1;23172:13;23169:101;;;23258:1;23249:6;23244:3;23240:16;23233:27;23169:101;23018:258;22969:307;;;:::o;23282:320::-;23326:6;23363:1;23357:4;23353:12;23343:22;;23410:1;23404:4;23400:12;23431:18;23421:81;;23487:4;23479:6;23475:17;23465:27;;23421:81;23549:2;23541:6;23538:14;23518:18;23515:38;23512:84;;;23568:18;;:::i;:::-;23512:84;23333:269;23282:320;;;:::o;23608:281::-;23691:27;23713:4;23691:27;:::i;:::-;23683:6;23679:40;23821:6;23809:10;23806:22;23785:18;23773:10;23770:34;23767:62;23764:88;;;23832:18;;:::i;:::-;23764:88;23872:10;23868:2;23861:22;23651:238;23608:281;;:::o;23895:180::-;23943:77;23940:1;23933:88;24040:4;24037:1;24030:15;24064:4;24061:1;24054:15;24081:180;24129:77;24126:1;24119:88;24226:4;24223:1;24216:15;24250:4;24247:1;24240:15;24267:180;24315:77;24312:1;24305:88;24412:4;24409:1;24402:15;24436:4;24433:1;24426:15;24453:117;24562:1;24559;24552:12;24576:117;24685:1;24682;24675:12;24699:117;24808:1;24805;24798:12;24822:117;24931:1;24928;24921:12;24945:102;24986:6;25037:2;25033:7;25028:2;25021:5;25017:14;25013:28;25003:38;;24945:102;;;:::o;25053:225::-;25193:34;25189:1;25181:6;25177:14;25170:58;25262:8;25257:2;25249:6;25245:15;25238:33;25053:225;:::o;25284:170::-;25424:22;25420:1;25412:6;25408:14;25401:46;25284:170;:::o;25460:182::-;25600:34;25596:1;25588:6;25584:14;25577:58;25460:182;:::o;25648:173::-;25788:25;25784:1;25776:6;25772:14;25765:49;25648:173;:::o;25827:234::-;25967:34;25963:1;25955:6;25951:14;25944:58;26036:17;26031:2;26023:6;26019:15;26012:42;25827:234;:::o;26067:114::-;;:::o;26187:170::-;26327:22;26323:1;26315:6;26311:14;26304:46;26187:170;:::o;26363:181::-;26503:33;26499:1;26491:6;26487:14;26480:57;26363:181;:::o;26550:169::-;26690:21;26686:1;26678:6;26674:14;26667:45;26550:169;:::o;26725:122::-;26798:24;26816:5;26798:24;:::i;:::-;26791:5;26788:35;26778:63;;26837:1;26834;26827:12;26778:63;26725:122;:::o;26853:116::-;26923:21;26938:5;26923:21;:::i;:::-;26916:5;26913:32;26903:60;;26959:1;26956;26949:12;26903:60;26853:116;:::o;26975:120::-;27047:23;27064:5;27047:23;:::i;:::-;27040:5;27037:34;27027:62;;27085:1;27082;27075:12;27027:62;26975:120;:::o;27101:122::-;27174:24;27192:5;27174:24;:::i;:::-;27167:5;27164:35;27154:63;;27213:1;27210;27203:12;27154:63;27101:122;:::o
Swarm Source
ipfs://a351746145b62fe52db55c8840df79ebc9a8d0c5f1cd1cf314ed7921c235d7f8
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.