ERC-721
Overview
Max Total Supply
2,500 MELANIADTC
Holders
311
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 MELANIADTCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MelaniaTrumpDigitalTradingCardsv2
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-18 */ // SPDX-License-Identifier: MIT // 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @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.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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/MelaniaTrumpDigitalTradingCardsv2.sol pragma solidity ^0.8.4; contract MelaniaTrumpDigitalTradingCardsv2 is ERC721A, Ownable { using Strings for uint256; string public baseURI = "https://nftstorage.link/ipfs/bafybeigwp43bbyobqvdi24emtfpn7bfboximvimysfkj22vo37bhnjzuyu/"; uint256 public price = 0.001 ether; uint256 public maxPerTx = 10; uint256 public maxSupply = 2500; uint256 public maxFreePerWallet = 1; uint256 public totalFreeMinted = 0; uint256 public maxFreeSupply = 2500; mapping(address => uint256) public _mintedFreeAmount; constructor() ERC721A("Melania Trump Digital Trading Cards", "MELANIADTC") { _mint(msg.sender, 1); } function mint(uint256 _amount) external payable { require(msg.value >= _amount * price, "Incorrect amount of ETH."); require(totalSupply() + _amount <= maxSupply, "Sold out."); require(tx.origin == msg.sender, "Only humans please."); require(_amount <= maxPerTx, "You may only mint a max of 10 per transaction"); _mint(msg.sender, _amount); } function mintFree(uint256 _amount) external payable { require(_mintedFreeAmount[msg.sender] + _amount <= maxFreePerWallet, "You have minted the max free amount allowed per wallet."); require(totalFreeMinted + _amount <= maxFreeSupply, "Cannot exceed Free supply." ); require(totalSupply() + _amount <= maxSupply, "Sold out."); _mintedFreeAmount[msg.sender]++; totalFreeMinted++; _safeMint(msg.sender, _amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function changePrice(uint256 _price) external onlyOwner { price = _price; } function setMaxPerTx(uint256 _amount) external onlyOwner { maxPerTx = _amount; } function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner { maxFreeSupply = _newMaxFreeSupply; } function _startTokenId() internal pure override returns (uint256) { return 1; } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","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":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806080016040528060598152602001620036c46059913960099080519060200190620000359291906200047d565b5066038d7ea4c68000600a55600a600b556109c4600c556001600d556000600e556109c4600f553480156200006957600080fd5b506040518060600160405280602381526020016200371d602391396040518060400160405280600a81526020017f4d454c414e4941445443000000000000000000000000000000000000000000008152508160029080519060200190620000d29291906200047d565b508060039080519060200190620000eb9291906200047d565b50620000fc6200013d60201b60201c565b600081905550505062000124620001186200014660201b60201c565b6200014e60201b60201c565b620001373360016200021460201b60201c565b62000592565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082141562000256576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200026b6000848385620003fd60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620002fa83620002dc60008660006200040360201b60201c565b620002ed856200043360201b60201c565b176200044360201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200039d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000360565b506000821415620003da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620003f860008483856200046e60201b60201c565b505050565b50505050565b60008060e883901c905060e8620004228686846200047460201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b8280546200048b906200052d565b90600052602060002090601f016020900481019282620004af5760008555620004fb565b82601f10620004ca57805160ff1916838001178555620004fb565b82800160010185558215620004fb579182015b82811115620004fa578251825591602001919060010190620004dd565b5b5090506200050a91906200050e565b5090565b5b80821115620005295760008160009055506001016200050f565b5090565b600060028204905060018216806200054657607f821691505b602082108114156200055d576200055c62000563565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61312280620005a26000396000f3fe6080604052600436106101e35760003560e01c8063a035b1fe11610102578063c6f6f21611610095578063e985e9c511610064578063e985e9c51461069e578063f2fde38b146106db578063f4db2acb14610704578063f968adbe14610741576101e3565b8063c6f6f216146105e2578063c87b56dd1461060b578063d5abeb0114610648578063dad7b5c914610673576101e3565b8063a4146733116100d1578063a414673314610549578063a702735714610565578063b88d4fde14610590578063bde12d73146105b9576101e3565b8063a035b1fe146104b0578063a0712d68146104db578063a22cb465146104f7578063a2b40d1914610520576101e3565b8063475133341161017a57806370a082311161014957806370a0823114610406578063715018a6146104435780638da5cb5b1461045a57806395d89b4114610485576101e3565b8063475133341461034a57806355f804b3146103755780636352211e1461039e5780636c0360eb146103db576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780633ccfd60b1461030a57806342842e0e14610321576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061240e565b61076c565b60405161021c919061286c565b60405180910390f35b34801561023157600080fd5b5061023a6107fe565b6040516102479190612887565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906124a5565b610890565b6040516102849190612805565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906123d2565b61090f565b005b3480156102c257600080fd5b506102cb610a53565b6040516102d891906129e9565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906122cc565b610a6a565b005b34801561031657600080fd5b5061031f610d8f565b005b34801561032d57600080fd5b50610348600480360381019061034391906122cc565b610e46565b005b34801561035657600080fd5b5061035f610e66565b60405161036c91906129e9565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190612460565b610e6c565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906124a5565b610e8a565b6040516103d29190612805565b60405180910390f35b3480156103e757600080fd5b506103f0610e9c565b6040516103fd9190612887565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190612267565b610f2a565b60405161043a91906129e9565b60405180910390f35b34801561044f57600080fd5b50610458610fe3565b005b34801561046657600080fd5b5061046f610ff7565b60405161047c9190612805565b60405180910390f35b34801561049157600080fd5b5061049a611021565b6040516104a79190612887565b60405180910390f35b3480156104bc57600080fd5b506104c56110b3565b6040516104d291906129e9565b60405180910390f35b6104f560048036038101906104f091906124a5565b6110b9565b005b34801561050357600080fd5b5061051e60048036038101906105199190612396565b611220565b005b34801561052c57600080fd5b50610547600480360381019061054291906124a5565b611398565b005b610563600480360381019061055e91906124a5565b6113aa565b005b34801561057157600080fd5b5061057a61155c565b60405161058791906129e9565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061231b565b611562565b005b3480156105c557600080fd5b506105e060048036038101906105db91906124a5565b6115d5565b005b3480156105ee57600080fd5b50610609600480360381019061060491906124a5565b6115e7565b005b34801561061757600080fd5b50610632600480360381019061062d91906124a5565b6115f9565b60405161063f9190612887565b60405180910390f35b34801561065457600080fd5b5061065d611675565b60405161066a91906129e9565b60405180910390f35b34801561067f57600080fd5b5061068861167b565b60405161069591906129e9565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612290565b611681565b6040516106d2919061286c565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190612267565b611715565b005b34801561071057600080fd5b5061072b60048036038101906107269190612267565b611799565b60405161073891906129e9565b60405180910390f35b34801561074d57600080fd5b506107566117b1565b60405161076391906129e9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080d90612c88565b80601f016020809104026020016040519081016040528092919081815260200182805461083990612c88565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b600061089b826117b7565b6108d1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091a82610e8a565b90508073ffffffffffffffffffffffffffffffffffffffff1661093b611816565b73ffffffffffffffffffffffffffffffffffffffff161461099e5761096781610962611816565b611681565b61099d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a5d61181e565b6001546000540303905090565b6000610a7582611827565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610adc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ae8846118f5565b91509150610afe8187610af9611816565b61191c565b610b4a57610b1386610b0e611816565b611681565b610b49576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bb1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bbe8686866001611960565b8015610bc957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c9785610c73888887611966565b7c02000000000000000000000000000000000000000000000000000000001761198e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d1f576000600185019050600060046000838152602001908152602001600020541415610d1d576000548114610d1c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d8786868660016119b9565b505050505050565b610d976119bf565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610dbd906127f0565b60006040518083038185875af1925050503d8060008114610dfa576040519150601f19603f3d011682016040523d82523d6000602084013e610dff565b606091505b5050905080610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906129a9565b60405180910390fd5b50565b610e6183838360405180602001604052806000815250611562565b505050565b600f5481565b610e746119bf565b818160099190610e859291906120a9565b505050565b6000610e9582611827565b9050919050565b60098054610ea990612c88565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed590612c88565b8015610f225780601f10610ef757610100808354040283529160200191610f22565b820191906000526020600020905b815481529060010190602001808311610f0557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f92576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610feb6119bf565b610ff56000611a3d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461103090612c88565b80601f016020809104026020016040519081016040528092919081815260200182805461105c90612c88565b80156110a95780601f1061107e576101008083540402835291602001916110a9565b820191906000526020600020905b81548152906001019060200180831161108c57829003601f168201915b5050505050905090565b600a5481565b600a54816110c79190612b44565b341015611109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611100906128a9565b60405180910390fd5b600c5481611115610a53565b61111f9190612abd565b1115611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906129c9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612929565b60405180910390fd5b600b54811115611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90612989565b60405180910390fd5b61121d3382611b03565b50565b611228611816565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061129a611816565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611347611816565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138c919061286c565b60405180910390a35050565b6113a06119bf565b80600a8190555050565b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f89190612abd565b1115611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906128e9565b60405180910390fd5b600f5481600e5461144a9190612abd565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612909565b60405180910390fd5b600c5481611497610a53565b6114a19190612abd565b11156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d9906129c9565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061153290612ceb565b9190505550600e600081548092919061154a90612ceb565b91905055506115593382611cc0565b50565b600d5481565b61156d848484610a6a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115cf5761159884848484611cde565b6115ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6115dd6119bf565b80600f8190555050565b6115ef6119bf565b80600b8190555050565b6060611604826117b7565b611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90612969565b60405180910390fd5b600961164e83611e3e565b60405160200161165f9291906127c1565b6040516020818303038152906040529050919050565b600c5481565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171d6119bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906128c9565b60405180910390fd5b61179681611a3d565b50565b60106020528060005260406000206000915090505481565b600b5481565b6000816117c261181e565b111580156117d1575060005482105b801561180f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061183661181e565b116118be576000548110156118bd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118bb575b60008114156118b1576004600083600190039350838152602001908152602001600020549050611886565b80925050506118f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861197d868684611feb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119c7611ff4565b73ffffffffffffffffffffffffffffffffffffffff166119e5610ff7565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290612949565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611b44576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b516000848385611960565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611bc883611bb96000866000611966565b611bc285611ffc565b1761198e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c6957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c2e565b506000821415611ca5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611cbb60008483856119b9565b505050565b611cda82826040518060200160405280600081525061200c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d04611816565b8786866040518563ffffffff1660e01b8152600401611d269493929190612820565b602060405180830381600087803b158015611d4057600080fd5b505af1925050508015611d7157506040513d601f19601f82011682018060405250810190611d6e9190612437565b60015b611deb573d8060008114611da1576040519150601f19603f3d011682016040523d82523d6000602084013e611da6565b606091505b50600081511415611de3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fe6565b600082905060005b60008214611eb8578080611ea190612ceb565b915050600a82611eb19190612b13565b9150611e8e565b60008167ffffffffffffffff811115611efa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f2c5781602001600182028036833780820191505090505b5090505b60008514611fdf57600182611f459190612b9e565b9150600a85611f549190612d34565b6030611f609190612abd565b60f81b818381518110611f9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fd89190612b13565b9450611f30565b8093505050505b919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6120168383611b03565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120a457600080549050600083820390505b6120566000868380600101945086611cde565b61208c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120435781600054146120a157600080fd5b50505b505050565b8280546120b590612c88565b90600052602060002090601f0160209004810192826120d7576000855561211e565b82601f106120f057803560ff191683800117855561211e565b8280016001018555821561211e579182015b8281111561211d578235825591602001919060010190612102565b5b50905061212b919061212f565b5090565b5b80821115612148576000816000905550600101612130565b5090565b600061215f61215a84612a29565b612a04565b90508281526020810184848401111561217757600080fd5b612182848285612c46565b509392505050565b60008135905061219981613090565b92915050565b6000813590506121ae816130a7565b92915050565b6000813590506121c3816130be565b92915050565b6000815190506121d8816130be565b92915050565b600082601f8301126121ef57600080fd5b81356121ff84826020860161214c565b91505092915050565b60008083601f84011261221a57600080fd5b8235905067ffffffffffffffff81111561223357600080fd5b60208301915083600182028301111561224b57600080fd5b9250929050565b600081359050612261816130d5565b92915050565b60006020828403121561227957600080fd5b60006122878482850161218a565b91505092915050565b600080604083850312156122a357600080fd5b60006122b18582860161218a565b92505060206122c28582860161218a565b9150509250929050565b6000806000606084860312156122e157600080fd5b60006122ef8682870161218a565b93505060206123008682870161218a565b925050604061231186828701612252565b9150509250925092565b6000806000806080858703121561233157600080fd5b600061233f8782880161218a565b94505060206123508782880161218a565b935050604061236187828801612252565b925050606085013567ffffffffffffffff81111561237e57600080fd5b61238a878288016121de565b91505092959194509250565b600080604083850312156123a957600080fd5b60006123b78582860161218a565b92505060206123c88582860161219f565b9150509250929050565b600080604083850312156123e557600080fd5b60006123f38582860161218a565b925050602061240485828601612252565b9150509250929050565b60006020828403121561242057600080fd5b600061242e848285016121b4565b91505092915050565b60006020828403121561244957600080fd5b6000612457848285016121c9565b91505092915050565b6000806020838503121561247357600080fd5b600083013567ffffffffffffffff81111561248d57600080fd5b61249985828601612208565b92509250509250929050565b6000602082840312156124b757600080fd5b60006124c584828501612252565b91505092915050565b6124d781612bd2565b82525050565b6124e681612be4565b82525050565b60006124f782612a6f565b6125018185612a85565b9350612511818560208601612c55565b61251a81612e21565b840191505092915050565b600061253082612a7a565b61253a8185612aa1565b935061254a818560208601612c55565b61255381612e21565b840191505092915050565b600061256982612a7a565b6125738185612ab2565b9350612583818560208601612c55565b80840191505092915050565b6000815461259c81612c88565b6125a68186612ab2565b945060018216600081146125c157600181146125d257612605565b60ff19831686528186019350612605565b6125db85612a5a565b60005b838110156125fd578154818901526001820191506020810190506125de565b838801955050505b50505092915050565b600061261b601883612aa1565b915061262682612e32565b602082019050919050565b600061263e602683612aa1565b915061264982612e5b565b604082019050919050565b6000612661603783612aa1565b915061266c82612eaa565b604082019050919050565b6000612684601a83612aa1565b915061268f82612ef9565b602082019050919050565b60006126a7601383612aa1565b91506126b282612f22565b602082019050919050565b60006126ca600583612ab2565b91506126d582612f4b565b600582019050919050565b60006126ed602083612aa1565b91506126f882612f74565b602082019050919050565b6000612710602f83612aa1565b915061271b82612f9d565b604082019050919050565b6000612733602d83612aa1565b915061273e82612fec565b604082019050919050565b6000612756600083612a96565b91506127618261303b565b600082019050919050565b6000612779601083612aa1565b91506127848261303e565b602082019050919050565b600061279c600983612aa1565b91506127a782613067565b602082019050919050565b6127bb81612c3c565b82525050565b60006127cd828561258f565b91506127d9828461255e565b91506127e4826126bd565b91508190509392505050565b60006127fb82612749565b9150819050919050565b600060208201905061281a60008301846124ce565b92915050565b600060808201905061283560008301876124ce565b61284260208301866124ce565b61284f60408301856127b2565b818103606083015261286181846124ec565b905095945050505050565b600060208201905061288160008301846124dd565b92915050565b600060208201905081810360008301526128a18184612525565b905092915050565b600060208201905081810360008301526128c28161260e565b9050919050565b600060208201905081810360008301526128e281612631565b9050919050565b6000602082019050818103600083015261290281612654565b9050919050565b6000602082019050818103600083015261292281612677565b9050919050565b600060208201905081810360008301526129428161269a565b9050919050565b60006020820190508181036000830152612962816126e0565b9050919050565b6000602082019050818103600083015261298281612703565b9050919050565b600060208201905081810360008301526129a281612726565b9050919050565b600060208201905081810360008301526129c28161276c565b9050919050565b600060208201905081810360008301526129e28161278f565b9050919050565b60006020820190506129fe60008301846127b2565b92915050565b6000612a0e612a1f565b9050612a1a8282612cba565b919050565b6000604051905090565b600067ffffffffffffffff821115612a4457612a43612df2565b5b612a4d82612e21565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ac882612c3c565b9150612ad383612c3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b0857612b07612d65565b5b828201905092915050565b6000612b1e82612c3c565b9150612b2983612c3c565b925082612b3957612b38612d94565b5b828204905092915050565b6000612b4f82612c3c565b9150612b5a83612c3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b9357612b92612d65565b5b828202905092915050565b6000612ba982612c3c565b9150612bb483612c3c565b925082821015612bc757612bc6612d65565b5b828203905092915050565b6000612bdd82612c1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c73578082015181840152602081019050612c58565b83811115612c82576000848401525b50505050565b60006002820490506001821680612ca057607f821691505b60208210811415612cb457612cb3612dc3565b5b50919050565b612cc382612e21565b810181811067ffffffffffffffff82111715612ce257612ce1612df2565b5b80604052505050565b6000612cf682612c3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d2957612d28612d65565b5b600182019050919050565b6000612d3f82612c3c565b9150612d4a83612c3c565b925082612d5a57612d59612d94565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f496e636f727265637420616d6f756e74206f66204554482e0000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752068617665206d696e74656420746865206d6178206672656520616d6f60008201527f756e7420616c6c6f776564207065722077616c6c65742e000000000000000000602082015250565b7f43616e6e6f7420657863656564204672656520737570706c792e000000000000600082015250565b7f4f6e6c792068756d616e7320706c656173652e00000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f75206d6179206f6e6c79206d696e742061206d6178206f6620313020706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b61309981612bd2565b81146130a457600080fd5b50565b6130b081612be4565b81146130bb57600080fd5b50565b6130c781612bf0565b81146130d257600080fd5b50565b6130de81612c3c565b81146130e957600080fd5b5056fea26469706673582212207fcf3dad1eeff8a12873cfd994af41c5a129823c7fc082479d81b21225f7efcd64736f6c6343000804003368747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f6261667962656967777034336262796f62717664693234656d7466706e376266626f78696d76696d7973666b6a3232766f333762686e6a7a7579752f4d656c616e6961205472756d70204469676974616c2054726164696e67204361726473
Deployed Bytecode
0x6080604052600436106101e35760003560e01c8063a035b1fe11610102578063c6f6f21611610095578063e985e9c511610064578063e985e9c51461069e578063f2fde38b146106db578063f4db2acb14610704578063f968adbe14610741576101e3565b8063c6f6f216146105e2578063c87b56dd1461060b578063d5abeb0114610648578063dad7b5c914610673576101e3565b8063a4146733116100d1578063a414673314610549578063a702735714610565578063b88d4fde14610590578063bde12d73146105b9576101e3565b8063a035b1fe146104b0578063a0712d68146104db578063a22cb465146104f7578063a2b40d1914610520576101e3565b8063475133341161017a57806370a082311161014957806370a0823114610406578063715018a6146104435780638da5cb5b1461045a57806395d89b4114610485576101e3565b8063475133341461034a57806355f804b3146103755780636352211e1461039e5780636c0360eb146103db576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780633ccfd60b1461030a57806342842e0e14610321576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061240e565b61076c565b60405161021c919061286c565b60405180910390f35b34801561023157600080fd5b5061023a6107fe565b6040516102479190612887565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906124a5565b610890565b6040516102849190612805565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906123d2565b61090f565b005b3480156102c257600080fd5b506102cb610a53565b6040516102d891906129e9565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906122cc565b610a6a565b005b34801561031657600080fd5b5061031f610d8f565b005b34801561032d57600080fd5b50610348600480360381019061034391906122cc565b610e46565b005b34801561035657600080fd5b5061035f610e66565b60405161036c91906129e9565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190612460565b610e6c565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906124a5565b610e8a565b6040516103d29190612805565b60405180910390f35b3480156103e757600080fd5b506103f0610e9c565b6040516103fd9190612887565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190612267565b610f2a565b60405161043a91906129e9565b60405180910390f35b34801561044f57600080fd5b50610458610fe3565b005b34801561046657600080fd5b5061046f610ff7565b60405161047c9190612805565b60405180910390f35b34801561049157600080fd5b5061049a611021565b6040516104a79190612887565b60405180910390f35b3480156104bc57600080fd5b506104c56110b3565b6040516104d291906129e9565b60405180910390f35b6104f560048036038101906104f091906124a5565b6110b9565b005b34801561050357600080fd5b5061051e60048036038101906105199190612396565b611220565b005b34801561052c57600080fd5b50610547600480360381019061054291906124a5565b611398565b005b610563600480360381019061055e91906124a5565b6113aa565b005b34801561057157600080fd5b5061057a61155c565b60405161058791906129e9565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061231b565b611562565b005b3480156105c557600080fd5b506105e060048036038101906105db91906124a5565b6115d5565b005b3480156105ee57600080fd5b50610609600480360381019061060491906124a5565b6115e7565b005b34801561061757600080fd5b50610632600480360381019061062d91906124a5565b6115f9565b60405161063f9190612887565b60405180910390f35b34801561065457600080fd5b5061065d611675565b60405161066a91906129e9565b60405180910390f35b34801561067f57600080fd5b5061068861167b565b60405161069591906129e9565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612290565b611681565b6040516106d2919061286c565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190612267565b611715565b005b34801561071057600080fd5b5061072b60048036038101906107269190612267565b611799565b60405161073891906129e9565b60405180910390f35b34801561074d57600080fd5b506107566117b1565b60405161076391906129e9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080d90612c88565b80601f016020809104026020016040519081016040528092919081815260200182805461083990612c88565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b600061089b826117b7565b6108d1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091a82610e8a565b90508073ffffffffffffffffffffffffffffffffffffffff1661093b611816565b73ffffffffffffffffffffffffffffffffffffffff161461099e5761096781610962611816565b611681565b61099d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a5d61181e565b6001546000540303905090565b6000610a7582611827565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610adc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ae8846118f5565b91509150610afe8187610af9611816565b61191c565b610b4a57610b1386610b0e611816565b611681565b610b49576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bb1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bbe8686866001611960565b8015610bc957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c9785610c73888887611966565b7c02000000000000000000000000000000000000000000000000000000001761198e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d1f576000600185019050600060046000838152602001908152602001600020541415610d1d576000548114610d1c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d8786868660016119b9565b505050505050565b610d976119bf565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610dbd906127f0565b60006040518083038185875af1925050503d8060008114610dfa576040519150601f19603f3d011682016040523d82523d6000602084013e610dff565b606091505b5050905080610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906129a9565b60405180910390fd5b50565b610e6183838360405180602001604052806000815250611562565b505050565b600f5481565b610e746119bf565b818160099190610e859291906120a9565b505050565b6000610e9582611827565b9050919050565b60098054610ea990612c88565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed590612c88565b8015610f225780601f10610ef757610100808354040283529160200191610f22565b820191906000526020600020905b815481529060010190602001808311610f0557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f92576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610feb6119bf565b610ff56000611a3d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461103090612c88565b80601f016020809104026020016040519081016040528092919081815260200182805461105c90612c88565b80156110a95780601f1061107e576101008083540402835291602001916110a9565b820191906000526020600020905b81548152906001019060200180831161108c57829003601f168201915b5050505050905090565b600a5481565b600a54816110c79190612b44565b341015611109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611100906128a9565b60405180910390fd5b600c5481611115610a53565b61111f9190612abd565b1115611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906129c9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612929565b60405180910390fd5b600b54811115611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90612989565b60405180910390fd5b61121d3382611b03565b50565b611228611816565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061129a611816565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611347611816565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138c919061286c565b60405180910390a35050565b6113a06119bf565b80600a8190555050565b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f89190612abd565b1115611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906128e9565b60405180910390fd5b600f5481600e5461144a9190612abd565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612909565b60405180910390fd5b600c5481611497610a53565b6114a19190612abd565b11156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d9906129c9565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061153290612ceb565b9190505550600e600081548092919061154a90612ceb565b91905055506115593382611cc0565b50565b600d5481565b61156d848484610a6a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115cf5761159884848484611cde565b6115ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6115dd6119bf565b80600f8190555050565b6115ef6119bf565b80600b8190555050565b6060611604826117b7565b611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90612969565b60405180910390fd5b600961164e83611e3e565b60405160200161165f9291906127c1565b6040516020818303038152906040529050919050565b600c5481565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171d6119bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906128c9565b60405180910390fd5b61179681611a3d565b50565b60106020528060005260406000206000915090505481565b600b5481565b6000816117c261181e565b111580156117d1575060005482105b801561180f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061183661181e565b116118be576000548110156118bd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118bb575b60008114156118b1576004600083600190039350838152602001908152602001600020549050611886565b80925050506118f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861197d868684611feb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119c7611ff4565b73ffffffffffffffffffffffffffffffffffffffff166119e5610ff7565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290612949565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611b44576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b516000848385611960565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611bc883611bb96000866000611966565b611bc285611ffc565b1761198e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c6957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c2e565b506000821415611ca5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611cbb60008483856119b9565b505050565b611cda82826040518060200160405280600081525061200c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d04611816565b8786866040518563ffffffff1660e01b8152600401611d269493929190612820565b602060405180830381600087803b158015611d4057600080fd5b505af1925050508015611d7157506040513d601f19601f82011682018060405250810190611d6e9190612437565b60015b611deb573d8060008114611da1576040519150601f19603f3d011682016040523d82523d6000602084013e611da6565b606091505b50600081511415611de3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fe6565b600082905060005b60008214611eb8578080611ea190612ceb565b915050600a82611eb19190612b13565b9150611e8e565b60008167ffffffffffffffff811115611efa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f2c5781602001600182028036833780820191505090505b5090505b60008514611fdf57600182611f459190612b9e565b9150600a85611f549190612d34565b6030611f609190612abd565b60f81b818381518110611f9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fd89190612b13565b9450611f30565b8093505050505b919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6120168383611b03565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120a457600080549050600083820390505b6120566000868380600101945086611cde565b61208c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120435781600054146120a157600080fd5b50505b505050565b8280546120b590612c88565b90600052602060002090601f0160209004810192826120d7576000855561211e565b82601f106120f057803560ff191683800117855561211e565b8280016001018555821561211e579182015b8281111561211d578235825591602001919060010190612102565b5b50905061212b919061212f565b5090565b5b80821115612148576000816000905550600101612130565b5090565b600061215f61215a84612a29565b612a04565b90508281526020810184848401111561217757600080fd5b612182848285612c46565b509392505050565b60008135905061219981613090565b92915050565b6000813590506121ae816130a7565b92915050565b6000813590506121c3816130be565b92915050565b6000815190506121d8816130be565b92915050565b600082601f8301126121ef57600080fd5b81356121ff84826020860161214c565b91505092915050565b60008083601f84011261221a57600080fd5b8235905067ffffffffffffffff81111561223357600080fd5b60208301915083600182028301111561224b57600080fd5b9250929050565b600081359050612261816130d5565b92915050565b60006020828403121561227957600080fd5b60006122878482850161218a565b91505092915050565b600080604083850312156122a357600080fd5b60006122b18582860161218a565b92505060206122c28582860161218a565b9150509250929050565b6000806000606084860312156122e157600080fd5b60006122ef8682870161218a565b93505060206123008682870161218a565b925050604061231186828701612252565b9150509250925092565b6000806000806080858703121561233157600080fd5b600061233f8782880161218a565b94505060206123508782880161218a565b935050604061236187828801612252565b925050606085013567ffffffffffffffff81111561237e57600080fd5b61238a878288016121de565b91505092959194509250565b600080604083850312156123a957600080fd5b60006123b78582860161218a565b92505060206123c88582860161219f565b9150509250929050565b600080604083850312156123e557600080fd5b60006123f38582860161218a565b925050602061240485828601612252565b9150509250929050565b60006020828403121561242057600080fd5b600061242e848285016121b4565b91505092915050565b60006020828403121561244957600080fd5b6000612457848285016121c9565b91505092915050565b6000806020838503121561247357600080fd5b600083013567ffffffffffffffff81111561248d57600080fd5b61249985828601612208565b92509250509250929050565b6000602082840312156124b757600080fd5b60006124c584828501612252565b91505092915050565b6124d781612bd2565b82525050565b6124e681612be4565b82525050565b60006124f782612a6f565b6125018185612a85565b9350612511818560208601612c55565b61251a81612e21565b840191505092915050565b600061253082612a7a565b61253a8185612aa1565b935061254a818560208601612c55565b61255381612e21565b840191505092915050565b600061256982612a7a565b6125738185612ab2565b9350612583818560208601612c55565b80840191505092915050565b6000815461259c81612c88565b6125a68186612ab2565b945060018216600081146125c157600181146125d257612605565b60ff19831686528186019350612605565b6125db85612a5a565b60005b838110156125fd578154818901526001820191506020810190506125de565b838801955050505b50505092915050565b600061261b601883612aa1565b915061262682612e32565b602082019050919050565b600061263e602683612aa1565b915061264982612e5b565b604082019050919050565b6000612661603783612aa1565b915061266c82612eaa565b604082019050919050565b6000612684601a83612aa1565b915061268f82612ef9565b602082019050919050565b60006126a7601383612aa1565b91506126b282612f22565b602082019050919050565b60006126ca600583612ab2565b91506126d582612f4b565b600582019050919050565b60006126ed602083612aa1565b91506126f882612f74565b602082019050919050565b6000612710602f83612aa1565b915061271b82612f9d565b604082019050919050565b6000612733602d83612aa1565b915061273e82612fec565b604082019050919050565b6000612756600083612a96565b91506127618261303b565b600082019050919050565b6000612779601083612aa1565b91506127848261303e565b602082019050919050565b600061279c600983612aa1565b91506127a782613067565b602082019050919050565b6127bb81612c3c565b82525050565b60006127cd828561258f565b91506127d9828461255e565b91506127e4826126bd565b91508190509392505050565b60006127fb82612749565b9150819050919050565b600060208201905061281a60008301846124ce565b92915050565b600060808201905061283560008301876124ce565b61284260208301866124ce565b61284f60408301856127b2565b818103606083015261286181846124ec565b905095945050505050565b600060208201905061288160008301846124dd565b92915050565b600060208201905081810360008301526128a18184612525565b905092915050565b600060208201905081810360008301526128c28161260e565b9050919050565b600060208201905081810360008301526128e281612631565b9050919050565b6000602082019050818103600083015261290281612654565b9050919050565b6000602082019050818103600083015261292281612677565b9050919050565b600060208201905081810360008301526129428161269a565b9050919050565b60006020820190508181036000830152612962816126e0565b9050919050565b6000602082019050818103600083015261298281612703565b9050919050565b600060208201905081810360008301526129a281612726565b9050919050565b600060208201905081810360008301526129c28161276c565b9050919050565b600060208201905081810360008301526129e28161278f565b9050919050565b60006020820190506129fe60008301846127b2565b92915050565b6000612a0e612a1f565b9050612a1a8282612cba565b919050565b6000604051905090565b600067ffffffffffffffff821115612a4457612a43612df2565b5b612a4d82612e21565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ac882612c3c565b9150612ad383612c3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b0857612b07612d65565b5b828201905092915050565b6000612b1e82612c3c565b9150612b2983612c3c565b925082612b3957612b38612d94565b5b828204905092915050565b6000612b4f82612c3c565b9150612b5a83612c3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b9357612b92612d65565b5b828202905092915050565b6000612ba982612c3c565b9150612bb483612c3c565b925082821015612bc757612bc6612d65565b5b828203905092915050565b6000612bdd82612c1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c73578082015181840152602081019050612c58565b83811115612c82576000848401525b50505050565b60006002820490506001821680612ca057607f821691505b60208210811415612cb457612cb3612dc3565b5b50919050565b612cc382612e21565b810181811067ffffffffffffffff82111715612ce257612ce1612df2565b5b80604052505050565b6000612cf682612c3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d2957612d28612d65565b5b600182019050919050565b6000612d3f82612c3c565b9150612d4a83612c3c565b925082612d5a57612d59612d94565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f496e636f727265637420616d6f756e74206f66204554482e0000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752068617665206d696e74656420746865206d6178206672656520616d6f60008201527f756e7420616c6c6f776564207065722077616c6c65742e000000000000000000602082015250565b7f43616e6e6f7420657863656564204672656520737570706c792e000000000000600082015250565b7f4f6e6c792068756d616e7320706c656173652e00000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f75206d6179206f6e6c79206d696e742061206d6178206f6620313020706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b61309981612bd2565b81146130a457600080fd5b50565b6130b081612be4565b81146130bb57600080fd5b50565b6130c781612bf0565b81146130d257600080fd5b50565b6130de81612c3c565b81146130e957600080fd5b5056fea26469706673582212207fcf3dad1eeff8a12873cfd994af41c5a129823c7fc082479d81b21225f7efcd64736f6c63430008040033
Deployed Bytecode Sourcemap
57074:2567:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24596:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25498:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31981:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31422:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21249:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35688:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59463:173;;;;;;;;;;;;;:::i;:::-;;38601:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57503:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58923:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26891:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57180:115;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22433:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5346:103;;;;;;;;;;;;;:::i;:::-;;4698:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25674:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57304:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57730:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32539:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59033:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58134:464;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57420:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39384:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59232:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59130:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58606:309;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57380:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57462:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33004:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5604:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57547:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57345:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24596:639;24681:4;25020:10;25005:25;;:11;:25;;;;:102;;;;25097:10;25082:25;;:11;:25;;;;25005:102;:179;;;;25174:10;25159:25;;:11;:25;;;;25005:179;24985:199;;24596:639;;;:::o;25498:100::-;25552:13;25585:5;25578:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25498:100;:::o;31981:218::-;32057:7;32082:16;32090:7;32082;:16::i;:::-;32077:64;;32107:34;;;;;;;;;;;;;;32077:64;32161:15;:24;32177:7;32161:24;;;;;;;;;;;:30;;;;;;;;;;;;32154:37;;31981:218;;;:::o;31422:400::-;31503:13;31519:16;31527:7;31519;:16::i;:::-;31503:32;;31575:5;31552:28;;:19;:17;:19::i;:::-;:28;;;31548:175;;31600:44;31617:5;31624:19;:17;:19::i;:::-;31600:16;:44::i;:::-;31595:128;;31672:35;;;;;;;;;;;;;;31595:128;31548:175;31768:2;31735:15;:24;31751:7;31735:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31806:7;31802:2;31786:28;;31795:5;31786:28;;;;;;;;;;;;31422:400;;;:::o;21249:323::-;21310:7;21538:15;:13;:15::i;:::-;21523:12;;21507:13;;:28;:46;21500:53;;21249:323;:::o;35688:2817::-;35822:27;35852;35871:7;35852:18;:27::i;:::-;35822:57;;35937:4;35896:45;;35912:19;35896:45;;;35892:86;;35950:28;;;;;;;;;;;;;;35892:86;35992:27;36021:23;36048:35;36075:7;36048:26;:35::i;:::-;35991:92;;;;36183:68;36208:15;36225:4;36231:19;:17;:19::i;:::-;36183:24;:68::i;:::-;36178:180;;36271:43;36288:4;36294:19;:17;:19::i;:::-;36271:16;:43::i;:::-;36266:92;;36323:35;;;;;;;;;;;;;;36266:92;36178:180;36389:1;36375:16;;:2;:16;;;36371:52;;;36400:23;;;;;;;;;;;;;;36371:52;36436:43;36458:4;36464:2;36468:7;36477:1;36436:21;:43::i;:::-;36572:15;36569:2;;;36712:1;36691:19;36684:30;36569:2;37109:18;:24;37128:4;37109:24;;;;;;;;;;;;;;;;37107:26;;;;;;;;;;;;37178:18;:22;37197:2;37178:22;;;;;;;;;;;;;;;;37176:24;;;;;;;;;;;37500:146;37537:2;37586:45;37601:4;37607:2;37611:19;37586:14;:45::i;:::-;17648:8;37558:73;37500:18;:146::i;:::-;37471:17;:26;37489:7;37471:26;;;;;;;;;;;:175;;;;37817:1;17648:8;37766:19;:47;:52;37762:627;;;37839:19;37871:1;37861:7;:11;37839:33;;38028:1;37994:17;:30;38012:11;37994:30;;;;;;;;;;;;:35;37990:384;;;38132:13;;38117:11;:28;38113:242;;38312:19;38279:17;:30;38297:11;38279:30;;;;;;;;;;;:52;;;;38113:242;37990:384;37762:627;;38436:7;38432:2;38417:27;;38426:4;38417:27;;;;;;;;;;;;38455:42;38476:4;38482:2;38486:7;38495:1;38455:20;:42::i;:::-;35688:2817;;;;;;:::o;59463:173::-;4584:13;:11;:13::i;:::-;59514:12:::1;59532:10;:15;;59555:21;59532:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59513:68;;;59600:7;59592:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;4608:1;59463:173::o:0;38601:185::-;38739:39;38756:4;38762:2;38766:7;38739:39;;;;;;;;;;;;:16;:39::i;:::-;38601:185;;;:::o;57503:35::-;;;;:::o;58923:102::-;4584:13;:11;:13::i;:::-;59009:8:::1;;58999:7;:18;;;;;;;:::i;:::-;;58923:102:::0;;:::o;26891:152::-;26963:7;27006:27;27025:7;27006:18;:27::i;:::-;26983:52;;26891:152;;;:::o;57180:115::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22433:233::-;22505:7;22546:1;22529:19;;:5;:19;;;22525:60;;;22557:28;;;;;;;;;;;;;;22525:60;16592:13;22603:18;:25;22622:5;22603:25;;;;;;;;;;;;;;;;:55;22596:62;;22433:233;;;:::o;5346:103::-;4584:13;:11;:13::i;:::-;5411:30:::1;5438:1;5411:18;:30::i;:::-;5346:103::o:0;4698:87::-;4744:7;4771:6;;;;;;;;;;;4764:13;;4698:87;:::o;25674:104::-;25730:13;25763:7;25756:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25674:104;:::o;57304:34::-;;;;:::o;57730:396::-;57822:5;;57812:7;:15;;;;:::i;:::-;57799:9;:28;;57791:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57902:9;;57891:7;57875:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;57867:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;57957:10;57944:23;;:9;:23;;;57936:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58021:8;;58010:7;:19;;58002:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;58092:26;58098:10;58110:7;58092:5;:26::i;:::-;57730:396;:::o;32539:308::-;32650:19;:17;:19::i;:::-;32638:31;;:8;:31;;;32634:61;;;32678:17;;;;;;;;;;;;;;32634:61;32760:8;32708:18;:39;32727:19;:17;:19::i;:::-;32708:39;;;;;;;;;;;;;;;:49;32748:8;32708:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32820:8;32784:55;;32799:19;:17;:19::i;:::-;32784:55;;;32830:8;32784:55;;;;;;:::i;:::-;;;;;;;;32539:308;;:::o;59033:89::-;4584:13;:11;:13::i;:::-;59108:6:::1;59100:5;:14;;;;59033:89:::0;:::o;58134:464::-;58248:16;;58237:7;58205:17;:29;58223:10;58205:29;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:59;;58197:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;58366:13;;58355:7;58337:15;;:25;;;;:::i;:::-;:42;;58329:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;58457:9;;58446:7;58430:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;58422:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58493:17;:29;58511:10;58493:29;;;;;;;;;;;;;;;;:31;;;;;;;;;:::i;:::-;;;;;;58535:15;;:17;;;;;;;;;:::i;:::-;;;;;;58563:30;58573:10;58585:7;58563:9;:30::i;:::-;58134:464;:::o;57420:35::-;;;;:::o;39384:399::-;39551:31;39564:4;39570:2;39574:7;39551:12;:31::i;:::-;39615:1;39597:2;:14;;;:19;39593:183;;39636:56;39667:4;39673:2;39677:7;39686:5;39636:30;:56::i;:::-;39631:145;;39720:40;;;;;;;;;;;;;;39631:145;39593:183;39384:399;;;;:::o;59232:122::-;4584:13;:11;:13::i;:::-;59329:17:::1;59313:13;:33;;;;59232:122:::0;:::o;59130:94::-;4584:13;:11;:13::i;:::-;59209:7:::1;59198:8;:18;;;;59130:94:::0;:::o;58606:309::-;58688:13;58736:16;58744:7;58736;:16::i;:::-;58714:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;58869:7;58878:18;:7;:16;:18::i;:::-;58852:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58838:69;;58606:309;;;:::o;57380:31::-;;;;:::o;57462:34::-;;;;:::o;33004:164::-;33101:4;33125:18;:25;33144:5;33125:25;;;;;;;;;;;;;;;:35;33151:8;33125:35;;;;;;;;;;;;;;;;;;;;;;;;;33118:42;;33004:164;;;;:::o;5604:201::-;4584:13;:11;:13::i;:::-;5713:1:::1;5693:22;;:8;:22;;;;5685:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5769:28;5788:8;5769:18;:28::i;:::-;5604:201:::0;:::o;57547:52::-;;;;;;;;;;;;;;;;;:::o;57345:28::-;;;;:::o;33426:282::-;33491:4;33547:7;33528:15;:13;:15::i;:::-;:26;;:66;;;;;33581:13;;33571:7;:23;33528:66;:153;;;;;33680:1;17368:8;33632:17;:26;33650:7;33632:26;;;;;;;;;;;;:44;:49;33528:153;33508:173;;33426:282;;;:::o;55192:105::-;55252:7;55279:10;55272:17;;55192:105;:::o;59362:93::-;59419:7;59446:1;59439:8;;59362:93;:::o;28046:1275::-;28113:7;28133:12;28148:7;28133:22;;28216:4;28197:15;:13;:15::i;:::-;:23;28193:1061;;28250:13;;28243:4;:20;28239:1015;;;28288:14;28305:17;:23;28323:4;28305:23;;;;;;;;;;;;28288:40;;28422:1;17368:8;28394:6;:24;:29;28390:845;;;29059:113;29076:1;29066:6;:11;29059:113;;;29119:17;:25;29137:6;;;;;;;29119:25;;;;;;;;;;;;29110:34;;29059:113;;;29205:6;29198:13;;;;;;28390:845;28239:1015;;28193:1061;29282:31;;;;;;;;;;;;;;28046:1275;;;;:::o;34589:479::-;34691:27;34720:23;34761:38;34802:15;:24;34818:7;34802:24;;;;;;;;;;;34761:65;;34973:18;34950:41;;35030:19;35024:26;35005:45;;34935:126;;;;:::o;33817:659::-;33966:11;34131:16;34124:5;34120:28;34111:37;;34291:16;34280:9;34276:32;34263:45;;34441:15;34430:9;34427:30;34419:5;34408:9;34405:20;34402:56;34392:66;;33999:470;;;;;:::o;40445:159::-;;;;;:::o;54501:311::-;54636:7;54656:16;17772:3;54682:19;:41;;54656:68;;17772:3;54750:31;54761:4;54767:2;54771:9;54750:10;:31::i;:::-;54742:40;;:62;;54735:69;;;54501:311;;;;;:::o;29869:450::-;29949:14;30117:16;30110:5;30106:28;30097:37;;30294:5;30280:11;30255:23;30251:41;30248:52;30241:5;30238:63;30228:73;;29985:327;;;;:::o;41269:158::-;;;;;:::o;4863:132::-;4938:12;:10;:12::i;:::-;4927:23;;:7;:5;:7::i;:::-;:23;;;4919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4863:132::o;5965:191::-;6039:16;6058:6;;;;;;;;;;;6039:25;;6084:8;6075:6;;:17;;;;;;;;;;;;;;;;;;6139:8;6108:40;;6129:8;6108:40;;;;;;;;;;;;5965:191;;:::o;43045:2454::-;43118:20;43141:13;;43118:36;;43181:1;43169:8;:13;43165:44;;;43191:18;;;;;;;;;;;;;;43165:44;43222:61;43252:1;43256:2;43260:12;43274:8;43222:21;:61::i;:::-;43766:1;16730:2;43736:1;:26;;43735:32;43723:8;:45;43697:18;:22;43716:2;43697:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44045:139;44082:2;44136:33;44159:1;44163:2;44167:1;44136:14;:33::i;:::-;44103:30;44124:8;44103:20;:30::i;:::-;:66;44045:18;:139::i;:::-;44011:17;:31;44029:12;44011:31;;;;;;;;;;;:173;;;;44201:16;44232:11;44261:8;44246:12;:23;44232:37;;44516:16;44512:2;44508:25;44496:37;;44888:12;44848:8;44807:1;44745:25;44686:1;44625;44598:335;45013:1;44999:12;44995:20;44953:346;45054:3;45045:7;45042:16;44953:346;;45272:7;45262:8;45259:1;45232:25;45229:1;45226;45221:59;45107:1;45098:7;45094:15;45083:26;;44953:346;;;44957:77;45344:1;45332:8;:13;45328:45;;;45354:19;;;;;;;;;;;;;;45328:45;45406:3;45390:13;:19;;;;43045:2454;;45431:60;45460:1;45464:2;45468:12;45482:8;45431:20;:60::i;:::-;43045:2454;;;:::o;49024:112::-;49101:27;49111:2;49115:8;49101:27;;;;;;;;;;;;:9;:27::i;:::-;49024:112;;:::o;41867:716::-;42030:4;42076:2;42051:45;;;42097:19;:17;:19::i;:::-;42118:4;42124:7;42133:5;42051:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42047:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42351:1;42334:6;:13;:18;42330:235;;;42380:40;;;;;;;;;;;;;;42330:235;42523:6;42517:13;42508:6;42504:2;42500:15;42493:38;42047:529;42220:54;;;42210:64;;;:6;:64;;;;42203:71;;;41867:716;;;;;;:::o;1396:723::-;1452:13;1682:1;1673:5;:10;1669:53;;;1700:10;;;;;;;;;;;;;;;;;;;;;1669:53;1732:12;1747:5;1732:20;;1763:14;1788:78;1803:1;1795:4;:9;1788:78;;1821:8;;;;;:::i;:::-;;;;1852:2;1844:10;;;;;:::i;:::-;;;1788:78;;;1876:19;1908:6;1898:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1876:39;;1926:154;1942:1;1933:5;:10;1926:154;;1970:1;1960:11;;;;;:::i;:::-;;;2037:2;2029:5;:10;;;;:::i;:::-;2016:2;:24;;;;:::i;:::-;2003:39;;1986:6;1993;1986:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;2066:2;2057:11;;;;;:::i;:::-;;;1926:154;;;2104:6;2090:21;;;;;1396:723;;;;:::o;54202:147::-;54339:6;54202:147;;;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;30421:324::-;30491:14;30724:1;30714:8;30711:15;30685:24;30681:46;30671:56;;30593:145;;;:::o;48251:689::-;48382:19;48388:2;48392:8;48382:5;:19::i;:::-;48461:1;48443:2;:14;;;:19;48439:483;;48483:11;48497:13;;48483:27;;48529:13;48551:8;48545:3;:14;48529:30;;48578:233;48609:62;48648:1;48652:2;48656:7;;;;;;48665:5;48609:30;:62::i;:::-;48604:167;;48707:40;;;;;;;;;;;;;;48604:167;48806:3;48798:5;:11;48578:233;;48893:3;48876:13;;:20;48872:34;;48898:8;;;48872:34;48439:483;;;48251:689;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:262::-;1796:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:2;;;1861:1;1858;1851:12;1813:2;1904:1;1929:53;1974:7;1965:6;1954:9;1950:22;1929:53;:::i;:::-;1919:63;;1875:117;1803:196;;;;:::o;2005:407::-;2073:6;2081;2130:2;2118:9;2109:7;2105:23;2101:32;2098:2;;;2146:1;2143;2136:12;2098:2;2189:1;2214:53;2259:7;2250:6;2239:9;2235:22;2214:53;:::i;:::-;2204:63;;2160:117;2316:2;2342:53;2387:7;2378:6;2367:9;2363:22;2342:53;:::i;:::-;2332:63;;2287:118;2088:324;;;;;:::o;2418:552::-;2495:6;2503;2511;2560:2;2548:9;2539:7;2535:23;2531:32;2528:2;;;2576:1;2573;2566:12;2528:2;2619:1;2644:53;2689:7;2680:6;2669:9;2665:22;2644:53;:::i;:::-;2634:63;;2590:117;2746:2;2772:53;2817:7;2808:6;2797:9;2793:22;2772:53;:::i;:::-;2762:63;;2717:118;2874:2;2900:53;2945:7;2936:6;2925:9;2921:22;2900:53;:::i;:::-;2890:63;;2845:118;2518:452;;;;;:::o;2976:809::-;3071:6;3079;3087;3095;3144:3;3132:9;3123:7;3119:23;3115:33;3112:2;;;3161:1;3158;3151:12;3112:2;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;3331:2;3357:53;3402:7;3393:6;3382:9;3378:22;3357:53;:::i;:::-;3347:63;;3302:118;3459:2;3485:53;3530:7;3521:6;3510:9;3506:22;3485:53;:::i;:::-;3475:63;;3430:118;3615:2;3604:9;3600:18;3587:32;3646:18;3638:6;3635:30;3632:2;;;3678:1;3675;3668:12;3632:2;3706:62;3760:7;3751:6;3740:9;3736:22;3706:62;:::i;:::-;3696:72;;3558:220;3102:683;;;;;;;:::o;3791:401::-;3856:6;3864;3913:2;3901:9;3892:7;3888:23;3884:32;3881:2;;;3929:1;3926;3919:12;3881:2;3972:1;3997:53;4042:7;4033:6;4022:9;4018:22;3997:53;:::i;:::-;3987:63;;3943:117;4099:2;4125:50;4167:7;4158:6;4147:9;4143:22;4125:50;:::i;:::-;4115:60;;4070:115;3871:321;;;;;:::o;4198:407::-;4266:6;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4382:1;4407:53;4452:7;4443:6;4432:9;4428:22;4407:53;:::i;:::-;4397:63;;4353:117;4509:2;4535:53;4580:7;4571:6;4560:9;4556:22;4535:53;:::i;:::-;4525:63;;4480:118;4281:324;;;;;:::o;4611:260::-;4669:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:2;;;4734:1;4731;4724:12;4686:2;4777:1;4802:52;4846:7;4837:6;4826:9;4822:22;4802:52;:::i;:::-;4792:62;;4748:116;4676:195;;;;:::o;4877:282::-;4946:6;4995:2;4983:9;4974:7;4970:23;4966:32;4963:2;;;5011:1;5008;5001:12;4963:2;5054:1;5079:63;5134:7;5125:6;5114:9;5110:22;5079:63;:::i;:::-;5069:73;;5025:127;4953:206;;;;:::o;5165:395::-;5236:6;5244;5293:2;5281:9;5272:7;5268:23;5264:32;5261:2;;;5309:1;5306;5299:12;5261:2;5380:1;5369:9;5365:17;5352:31;5410:18;5402:6;5399:30;5396:2;;;5442:1;5439;5432:12;5396:2;5478:65;5535:7;5526:6;5515:9;5511:22;5478:65;:::i;:::-;5460:83;;;;5323:230;5251:309;;;;;:::o;5566:262::-;5625:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:2;;;5690:1;5687;5680:12;5642:2;5733:1;5758:53;5803:7;5794:6;5783:9;5779:22;5758:53;:::i;:::-;5748:63;;5704:117;5632:196;;;;:::o;5834:118::-;5921:24;5939:5;5921:24;:::i;:::-;5916:3;5909:37;5899:53;;:::o;5958:109::-;6039:21;6054:5;6039:21;:::i;:::-;6034:3;6027:34;6017:50;;:::o;6073:360::-;6159:3;6187:38;6219:5;6187:38;:::i;:::-;6241:70;6304:6;6299:3;6241:70;:::i;:::-;6234:77;;6320:52;6365:6;6360:3;6353:4;6346:5;6342:16;6320:52;:::i;:::-;6397:29;6419:6;6397:29;:::i;:::-;6392:3;6388:39;6381:46;;6163:270;;;;;:::o;6439:364::-;6527:3;6555:39;6588:5;6555:39;:::i;:::-;6610:71;6674:6;6669:3;6610:71;:::i;:::-;6603:78;;6690:52;6735:6;6730:3;6723:4;6716:5;6712:16;6690:52;:::i;:::-;6767:29;6789:6;6767:29;:::i;:::-;6762:3;6758:39;6751:46;;6531:272;;;;;:::o;6809:377::-;6915:3;6943:39;6976:5;6943:39;:::i;:::-;6998:89;7080:6;7075:3;6998:89;:::i;:::-;6991:96;;7096:52;7141:6;7136:3;7129:4;7122:5;7118:16;7096:52;:::i;:::-;7173:6;7168:3;7164:16;7157:23;;6919:267;;;;;:::o;7216:845::-;7319:3;7356:5;7350:12;7385:36;7411:9;7385:36;:::i;:::-;7437:89;7519:6;7514:3;7437:89;:::i;:::-;7430:96;;7557:1;7546:9;7542:17;7573:1;7568:137;;;;7719:1;7714:341;;;;7535:520;;7568:137;7652:4;7648:9;7637;7633:25;7628:3;7621:38;7688:6;7683:3;7679:16;7672:23;;7568:137;;7714:341;7781:38;7813:5;7781:38;:::i;:::-;7841:1;7855:154;7869:6;7866:1;7863:13;7855:154;;;7943:7;7937:14;7933:1;7928:3;7924:11;7917:35;7993:1;7984:7;7980:15;7969:26;;7891:4;7888:1;7884:12;7879:17;;7855:154;;;8038:6;8033:3;8029:16;8022:23;;7721:334;;7535:520;;7323:738;;;;;;:::o;8067:366::-;8209:3;8230:67;8294:2;8289:3;8230:67;:::i;:::-;8223:74;;8306:93;8395:3;8306:93;:::i;:::-;8424:2;8419:3;8415:12;8408:19;;8213:220;;;:::o;8439:366::-;8581:3;8602:67;8666:2;8661:3;8602:67;:::i;:::-;8595:74;;8678:93;8767:3;8678:93;:::i;:::-;8796:2;8791:3;8787:12;8780:19;;8585:220;;;:::o;8811:366::-;8953:3;8974:67;9038:2;9033:3;8974:67;:::i;:::-;8967:74;;9050:93;9139:3;9050:93;:::i;:::-;9168:2;9163:3;9159:12;9152:19;;8957:220;;;:::o;9183:366::-;9325:3;9346:67;9410:2;9405:3;9346:67;:::i;:::-;9339:74;;9422:93;9511:3;9422:93;:::i;:::-;9540:2;9535:3;9531:12;9524:19;;9329:220;;;:::o;9555:366::-;9697:3;9718:67;9782:2;9777:3;9718:67;:::i;:::-;9711:74;;9794:93;9883:3;9794:93;:::i;:::-;9912:2;9907:3;9903:12;9896:19;;9701:220;;;:::o;9927:400::-;10087:3;10108:84;10190:1;10185:3;10108:84;:::i;:::-;10101:91;;10201:93;10290:3;10201:93;:::i;:::-;10319:1;10314:3;10310:11;10303:18;;10091:236;;;:::o;10333:366::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10479:220;;;:::o;10705:366::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10851:220;;;:::o;11077:366::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11223:220;;;:::o;11449:398::-;11608:3;11629:83;11710:1;11705:3;11629:83;:::i;:::-;11622:90;;11721:93;11810:3;11721:93;:::i;:::-;11839:1;11834:3;11830:11;11823:18;;11612:235;;;:::o;11853:366::-;11995:3;12016:67;12080:2;12075:3;12016:67;:::i;:::-;12009:74;;12092:93;12181:3;12092:93;:::i;:::-;12210:2;12205:3;12201:12;12194:19;;11999:220;;;:::o;12225:365::-;12367:3;12388:66;12452:1;12447:3;12388:66;:::i;:::-;12381:73;;12463:93;12552:3;12463:93;:::i;:::-;12581:2;12576:3;12572:12;12565:19;;12371:219;;;:::o;12596:118::-;12683:24;12701:5;12683:24;:::i;:::-;12678:3;12671:37;12661:53;;:::o;12720:695::-;12998:3;13020:92;13108:3;13099:6;13020:92;:::i;:::-;13013:99;;13129:95;13220:3;13211:6;13129:95;:::i;:::-;13122:102;;13241:148;13385:3;13241:148;:::i;:::-;13234:155;;13406:3;13399:10;;13002:413;;;;;:::o;13421:379::-;13605:3;13627:147;13770:3;13627:147;:::i;:::-;13620:154;;13791:3;13784:10;;13609:191;;;:::o;13806:222::-;13899:4;13937:2;13926:9;13922:18;13914:26;;13950:71;14018:1;14007:9;14003:17;13994:6;13950:71;:::i;:::-;13904:124;;;;:::o;14034:640::-;14229:4;14267:3;14256:9;14252:19;14244:27;;14281:71;14349:1;14338:9;14334:17;14325:6;14281:71;:::i;:::-;14362:72;14430:2;14419:9;14415:18;14406:6;14362:72;:::i;:::-;14444;14512:2;14501:9;14497:18;14488:6;14444:72;:::i;:::-;14563:9;14557:4;14553:20;14548:2;14537:9;14533:18;14526:48;14591:76;14662:4;14653:6;14591:76;:::i;:::-;14583:84;;14234:440;;;;;;;:::o;14680:210::-;14767:4;14805:2;14794:9;14790:18;14782:26;;14818:65;14880:1;14869:9;14865:17;14856:6;14818:65;:::i;:::-;14772:118;;;;:::o;14896:313::-;15009:4;15047:2;15036:9;15032:18;15024:26;;15096:9;15090:4;15086:20;15082:1;15071:9;15067:17;15060:47;15124:78;15197:4;15188:6;15124:78;:::i;:::-;15116:86;;15014:195;;;;:::o;15215:419::-;15381:4;15419:2;15408:9;15404:18;15396:26;;15468:9;15462:4;15458:20;15454:1;15443:9;15439:17;15432:47;15496:131;15622:4;15496:131;:::i;:::-;15488:139;;15386:248;;;:::o;15640:419::-;15806:4;15844:2;15833:9;15829:18;15821:26;;15893:9;15887:4;15883:20;15879:1;15868:9;15864:17;15857:47;15921:131;16047:4;15921:131;:::i;:::-;15913:139;;15811:248;;;:::o;16065:419::-;16231:4;16269:2;16258:9;16254:18;16246:26;;16318:9;16312:4;16308:20;16304:1;16293:9;16289:17;16282:47;16346:131;16472:4;16346:131;:::i;:::-;16338:139;;16236:248;;;:::o;16490:419::-;16656:4;16694:2;16683:9;16679:18;16671:26;;16743:9;16737:4;16733:20;16729:1;16718:9;16714:17;16707:47;16771:131;16897:4;16771:131;:::i;:::-;16763:139;;16661:248;;;:::o;16915:419::-;17081:4;17119:2;17108:9;17104:18;17096:26;;17168:9;17162:4;17158:20;17154:1;17143:9;17139:17;17132:47;17196:131;17322:4;17196:131;:::i;:::-;17188:139;;17086:248;;;:::o;17340:419::-;17506:4;17544:2;17533:9;17529:18;17521:26;;17593:9;17587:4;17583:20;17579:1;17568:9;17564:17;17557:47;17621:131;17747:4;17621:131;:::i;:::-;17613:139;;17511:248;;;:::o;17765:419::-;17931:4;17969:2;17958:9;17954:18;17946:26;;18018:9;18012:4;18008:20;18004:1;17993:9;17989:17;17982:47;18046:131;18172:4;18046:131;:::i;:::-;18038:139;;17936:248;;;:::o;18190:419::-;18356:4;18394:2;18383:9;18379:18;18371:26;;18443:9;18437:4;18433:20;18429:1;18418:9;18414:17;18407:47;18471:131;18597:4;18471:131;:::i;:::-;18463:139;;18361:248;;;:::o;18615:419::-;18781:4;18819:2;18808:9;18804:18;18796:26;;18868:9;18862:4;18858:20;18854:1;18843:9;18839:17;18832:47;18896:131;19022:4;18896:131;:::i;:::-;18888:139;;18786:248;;;:::o;19040:419::-;19206:4;19244:2;19233:9;19229:18;19221:26;;19293:9;19287:4;19283:20;19279:1;19268:9;19264:17;19257:47;19321:131;19447:4;19321:131;:::i;:::-;19313:139;;19211:248;;;:::o;19465:222::-;19558:4;19596:2;19585:9;19581:18;19573:26;;19609:71;19677:1;19666:9;19662:17;19653:6;19609:71;:::i;:::-;19563:124;;;;:::o;19693:129::-;19727:6;19754:20;;:::i;:::-;19744:30;;19783:33;19811:4;19803:6;19783:33;:::i;:::-;19734:88;;;:::o;19828:75::-;19861:6;19894:2;19888:9;19878:19;;19868:35;:::o;19909:307::-;19970:4;20060:18;20052:6;20049:30;20046:2;;;20082:18;;:::i;:::-;20046:2;20120:29;20142:6;20120:29;:::i;:::-;20112:37;;20204:4;20198;20194:15;20186:23;;19975:241;;;:::o;20222:141::-;20271:4;20294:3;20286:11;;20317:3;20314:1;20307:14;20351:4;20348:1;20338:18;20330:26;;20276:87;;;:::o;20369:98::-;20420:6;20454:5;20448:12;20438:22;;20427:40;;;:::o;20473:99::-;20525:6;20559:5;20553:12;20543:22;;20532:40;;;:::o;20578:168::-;20661:11;20695:6;20690:3;20683:19;20735:4;20730:3;20726:14;20711:29;;20673:73;;;;:::o;20752:147::-;20853:11;20890:3;20875:18;;20865:34;;;;:::o;20905:169::-;20989:11;21023:6;21018:3;21011:19;21063:4;21058:3;21054:14;21039:29;;21001:73;;;;:::o;21080:148::-;21182:11;21219:3;21204:18;;21194:34;;;;:::o;21234:305::-;21274:3;21293:20;21311:1;21293:20;:::i;:::-;21288:25;;21327:20;21345:1;21327:20;:::i;:::-;21322:25;;21481:1;21413:66;21409:74;21406:1;21403:81;21400:2;;;21487:18;;:::i;:::-;21400:2;21531:1;21528;21524:9;21517:16;;21278:261;;;;:::o;21545:185::-;21585:1;21602:20;21620:1;21602:20;:::i;:::-;21597:25;;21636:20;21654:1;21636:20;:::i;:::-;21631:25;;21675:1;21665:2;;21680:18;;:::i;:::-;21665:2;21722:1;21719;21715:9;21710:14;;21587:143;;;;:::o;21736:348::-;21776:7;21799:20;21817:1;21799:20;:::i;:::-;21794:25;;21833:20;21851:1;21833:20;:::i;:::-;21828:25;;22021:1;21953:66;21949:74;21946:1;21943:81;21938:1;21931:9;21924:17;21920:105;21917:2;;;22028:18;;:::i;:::-;21917:2;22076:1;22073;22069:9;22058:20;;21784:300;;;;:::o;22090:191::-;22130:4;22150:20;22168:1;22150:20;:::i;:::-;22145:25;;22184:20;22202:1;22184:20;:::i;:::-;22179:25;;22223:1;22220;22217:8;22214:2;;;22228:18;;:::i;:::-;22214:2;22273:1;22270;22266:9;22258:17;;22135:146;;;;:::o;22287:96::-;22324:7;22353:24;22371:5;22353:24;:::i;:::-;22342:35;;22332:51;;;:::o;22389:90::-;22423:7;22466:5;22459:13;22452:21;22441:32;;22431:48;;;:::o;22485:149::-;22521:7;22561:66;22554:5;22550:78;22539:89;;22529:105;;;:::o;22640:126::-;22677:7;22717:42;22710:5;22706:54;22695:65;;22685:81;;;:::o;22772:77::-;22809:7;22838:5;22827:16;;22817:32;;;:::o;22855:154::-;22939:6;22934:3;22929;22916:30;23001:1;22992:6;22987:3;22983:16;22976:27;22906:103;;;:::o;23015:307::-;23083:1;23093:113;23107:6;23104:1;23101:13;23093:113;;;23192:1;23187:3;23183:11;23177:18;23173:1;23168:3;23164:11;23157:39;23129:2;23126:1;23122:10;23117:15;;23093:113;;;23224:6;23221:1;23218:13;23215:2;;;23304:1;23295:6;23290:3;23286:16;23279:27;23215:2;23064:258;;;;:::o;23328:320::-;23372:6;23409:1;23403:4;23399:12;23389:22;;23456:1;23450:4;23446:12;23477:18;23467:2;;23533:4;23525:6;23521:17;23511:27;;23467:2;23595;23587:6;23584:14;23564:18;23561:38;23558:2;;;23614:18;;:::i;:::-;23558:2;23379:269;;;;:::o;23654:281::-;23737:27;23759:4;23737:27;:::i;:::-;23729:6;23725:40;23867:6;23855:10;23852:22;23831:18;23819:10;23816:34;23813:62;23810:2;;;23878:18;;:::i;:::-;23810:2;23918:10;23914:2;23907:22;23697:238;;;:::o;23941:233::-;23980:3;24003:24;24021:5;24003:24;:::i;:::-;23994:33;;24049:66;24042:5;24039:77;24036:2;;;24119:18;;:::i;:::-;24036:2;24166:1;24159:5;24155:13;24148:20;;23984:190;;;:::o;24180:176::-;24212:1;24229:20;24247:1;24229:20;:::i;:::-;24224:25;;24263:20;24281:1;24263:20;:::i;:::-;24258:25;;24302:1;24292:2;;24307:18;;:::i;:::-;24292:2;24348:1;24345;24341:9;24336:14;;24214:142;;;;:::o;24362:180::-;24410:77;24407:1;24400:88;24507:4;24504:1;24497:15;24531:4;24528:1;24521:15;24548:180;24596:77;24593:1;24586:88;24693:4;24690:1;24683:15;24717:4;24714:1;24707:15;24734:180;24782:77;24779:1;24772:88;24879:4;24876:1;24869:15;24903:4;24900:1;24893:15;24920:180;24968:77;24965:1;24958:88;25065:4;25062:1;25055:15;25089:4;25086:1;25079:15;25106:102;25147:6;25198:2;25194:7;25189:2;25182:5;25178:14;25174:28;25164:38;;25154:54;;;:::o;25214:174::-;25354:26;25350:1;25342:6;25338:14;25331:50;25320:68;:::o;25394:225::-;25534:34;25530:1;25522:6;25518:14;25511:58;25603:8;25598:2;25590:6;25586:15;25579:33;25500:119;:::o;25625:242::-;25765:34;25761:1;25753:6;25749:14;25742:58;25834:25;25829:2;25821:6;25817:15;25810:50;25731:136;:::o;25873:176::-;26013:28;26009:1;26001:6;25997:14;25990:52;25979:70;:::o;26055:169::-;26195:21;26191:1;26183:6;26179:14;26172:45;26161:63;:::o;26230:155::-;26370:7;26366:1;26358:6;26354:14;26347:31;26336:49;:::o;26391:182::-;26531:34;26527:1;26519:6;26515:14;26508:58;26497:76;:::o;26579:234::-;26719:34;26715:1;26707:6;26703:14;26696:58;26788:17;26783:2;26775:6;26771:15;26764:42;26685:128;:::o;26819:232::-;26959:34;26955:1;26947:6;26943:14;26936:58;27028:15;27023:2;27015:6;27011:15;27004:40;26925:126;:::o;27057:114::-;27163:8;:::o;27177:166::-;27317:18;27313:1;27305:6;27301:14;27294:42;27283:60;:::o;27349:159::-;27489:11;27485:1;27477:6;27473:14;27466:35;27455:53;:::o;27514:122::-;27587:24;27605:5;27587:24;:::i;:::-;27580:5;27577:35;27567:2;;27626:1;27623;27616:12;27567:2;27557:79;:::o;27642:116::-;27712:21;27727:5;27712:21;:::i;:::-;27705:5;27702:32;27692:2;;27748:1;27745;27738:12;27692:2;27682:76;:::o;27764:120::-;27836:23;27853:5;27836:23;:::i;:::-;27829:5;27826:34;27816:2;;27874:1;27871;27864:12;27816:2;27806:78;:::o;27890:122::-;27963:24;27981:5;27963:24;:::i;:::-;27956:5;27953:35;27943:2;;28002:1;27999;27992:12;27943:2;27933:79;:::o
Swarm Source
ipfs://7fcf3dad1eeff8a12873cfd994af41c5a129823c7fc082479d81b21225f7efcd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.