Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,333 A3
Holders
461
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 A3Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ANN3
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-17 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (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/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: ann3.sol pragma solidity ^0.8.7; contract ANN3 is ERC721A, Ownable { uint public supply = 3333; uint public price = 0.003 ether; string public baseURI = ""; string public constant baseExtension = ".json"; bool public _live = true; constructor() ERC721A("ANN3", "A3") {} function Mint(uint256 _amount) external payable { address _caller = _msgSender(); require(_live, "Not live!"); require(supply >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); require(msg.value >= _amount * price, "Invalid funds provided"); _safeMint(_caller, _amount); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function TeamMint() external onlyOwner { _safeMint(_msgSender(), 60); } function reduceSupply(uint newSupply) external onlyOwner { supply = newSupply; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function live(bool _state) external onlyOwner { _live = _state; } function setCost(uint256 newPrice) external onlyOwner { price = newPrice; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), // _tokenId.toString(), baseExtension ) ) : ""; } }
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":"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":"uint256","name":"_amount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"live","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"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":"newPrice","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610d05600955660aa87bee538000600a5560405180602001604052806000815250600b90805190602001906200003c92919062000219565b506001600c60006101000a81548160ff0219169083151502179055503480156200006557600080fd5b506040518060400160405280600481526020017f414e4e33000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f41330000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ea92919062000219565b5080600390805190602001906200010392919062000219565b50620001146200014260201b60201c565b60008190555050506200013c620001306200014b60201b60201c565b6200015360201b60201c565b6200032e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022790620002c9565b90600052602060002090601f0160209004810192826200024b576000855562000297565b82601f106200026657805160ff191683800117855562000297565b8280016001018555821562000297579182015b828111156200029657825182559160200191906001019062000279565b5b509050620002a69190620002aa565b5090565b5b80821115620002c5576000816000905550600101620002ab565b5090565b60006002820490506001821680620002e257607f821691505b60208210811415620002f957620002f8620002ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612eb6806200033e6000396000f3fe6080604052600436106101c25760003560e01c80636242a8a3116100f757806395d89b4111610095578063c668286211610064578063c6682862146105b1578063c87b56dd146105dc578063e985e9c514610619578063f2fde38b14610656576101c2565b806395d89b4114610516578063a035b1fe14610541578063a22cb4651461056c578063b88d4fde14610595576101c2565b806370a08231116100d157806370a082311461046e578063715018a6146104ab57806380623444146104c25780638da5cb5b146104eb576101c2565b80636242a8a3146103ef5780636352211e146104065780636c0360eb14610443576101c2565b806323b872dd1161016457806344a0d68a1161013e57806344a0d68a1461034957806355f804b31461037257806356e0ec721461039b5780635c6e7f60146103c6576101c2565b806323b872dd146102fa5780633ccfd60b1461031657806342842e0e1461032d576101c2565b806307883703116101a0578063078837031461025a578063081812fc14610276578063095ea7b3146102b357806318160ddd146102cf576101c2565b806301ffc9a7146101c7578063047fc9aa1461020457806306fdde031461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612246565b61067f565b6040516101fb9190612670565b60405180910390f35b34801561021057600080fd5b50610219610711565b60405161022691906127cd565b60405180910390f35b34801561023b57600080fd5b50610244610717565b604051610251919061268b565b60405180910390f35b610274600480360381019061026f91906122e9565b6107a9565b005b34801561028257600080fd5b5061029d600480360381019061029891906122e9565b61096a565b6040516102aa9190612609565b60405180910390f35b6102cd60048036038101906102c891906121d9565b6109e9565b005b3480156102db57600080fd5b506102e4610b2d565b6040516102f191906127cd565b60405180910390f35b610314600480360381019061030f91906120c3565b610b44565b005b34801561032257600080fd5b5061032b610e69565b005b610347600480360381019061034291906120c3565b610f2d565b005b34801561035557600080fd5b50610370600480360381019061036b91906122e9565b610f4d565b005b34801561037e57600080fd5b50610399600480360381019061039491906122a0565b610f5f565b005b3480156103a757600080fd5b506103b0610f81565b6040516103bd9190612670565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612219565b610f94565b005b3480156103fb57600080fd5b50610404610fb9565b005b34801561041257600080fd5b5061042d600480360381019061042891906122e9565b610fd5565b60405161043a9190612609565b60405180910390f35b34801561044f57600080fd5b50610458610fe7565b604051610465919061268b565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612056565b611075565b6040516104a291906127cd565b60405180910390f35b3480156104b757600080fd5b506104c061112e565b005b3480156104ce57600080fd5b506104e960048036038101906104e491906122e9565b611142565b005b3480156104f757600080fd5b50610500611154565b60405161050d9190612609565b60405180910390f35b34801561052257600080fd5b5061052b61117e565b604051610538919061268b565b60405180910390f35b34801561054d57600080fd5b50610556611210565b60405161056391906127cd565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612199565b611216565b005b6105af60048036038101906105aa9190612116565b611321565b005b3480156105bd57600080fd5b506105c6611394565b6040516105d3919061268b565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906122e9565b6113cd565b604051610610919061268b565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190612083565b6114ac565b60405161064d9190612670565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190612056565b611540565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b60606002805461072690612a9d565b80601f016020809104026020016040519081016040528092919081815260200182805461075290612a9d565b801561079f5780601f106107745761010080835404028352916020019161079f565b820191906000526020600020905b81548152906001019060200180831161078257829003601f168201915b5050505050905090565b60006107b36115c4565b9050600c60009054906101000a900460ff16610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb906127ad565b60405180910390fd5b8161080d610b2d565b61081791906128d2565b600954101561085b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610852906126ed565b60405180910390fd5b6000821161089e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610895906126cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461090c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109039061278d565b60405180910390fd5b600a548261091a9190612959565b34101561095c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109539061274d565b60405180910390fd5b61096681836115cc565b5050565b6000610975826115ea565b6109ab576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f482610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff16610a15611649565b73ffffffffffffffffffffffffffffffffffffffff1614610a7857610a4181610a3c611649565b6114ac565b610a77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b37611651565b6001546000540303905090565b6000610b4f8261165a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bb6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bc284611728565b91509150610bd88187610bd3611649565b61174f565b610c2457610bed86610be8611649565b6114ac565b610c23576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c8b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c988686866001611793565b8015610ca357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d7185610d4d888887611799565b7c0200000000000000000000000000000000000000000000000000000000176117c1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610df9576000600185019050600060046000838152602001908152602001600020541415610df7576000548114610df6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e6186868660016117ec565b505050505050565b610e716117f2565b60004790506000610e806115c4565b73ffffffffffffffffffffffffffffffffffffffff1682604051610ea3906125f4565b60006040518083038185875af1925050503d8060008114610ee0576040519150601f19603f3d011682016040523d82523d6000602084013e610ee5565b606091505b5050905080610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f209061276d565b60405180910390fd5b5050565b610f4883838360405180602001604052806000815250611321565b505050565b610f556117f2565b80600a8190555050565b610f676117f2565b80600b9080519060200190610f7d929190611e6a565b5050565b600c60009054906101000a900460ff1681565b610f9c6117f2565b80600c60006101000a81548160ff02191690831515021790555050565b610fc16117f2565b610fd3610fcc6115c4565b603c6115cc565b565b6000610fe08261165a565b9050919050565b600b8054610ff490612a9d565b80601f016020809104026020016040519081016040528092919081815260200182805461102090612a9d565b801561106d5780601f106110425761010080835404028352916020019161106d565b820191906000526020600020905b81548152906001019060200180831161105057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110dd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111366117f2565b6111406000611870565b565b61114a6117f2565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461118d90612a9d565b80601f01602080910402602001604051908101604052809291908181526020018280546111b990612a9d565b80156112065780601f106111db57610100808354040283529160200191611206565b820191906000526020600020905b8154815290600101906020018083116111e957829003601f168201915b5050505050905090565b600a5481565b8060076000611223611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d0611649565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113159190612670565b60405180910390a35050565b61132c848484610b44565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461138e5761135784848484611936565b61138d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606113d8826115ea565b611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e9061270d565b60405180910390fd5b6000600b805461142690612a9d565b90501161144257604051806020016040528060008152506114a5565b600b61144d83611a96565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611495939291906125c3565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115486117f2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af906126ad565b60405180910390fd5b6115c181611870565b50565b600033905090565b6115e6828260405180602001604052806000815250611bf7565b5050565b6000816115f5611651565b11158015611604575060005482105b8015611642575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611669611651565b116116f1576000548110156116f05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116ee575b60008114156116e45760046000836001900393508381526020019081526020016000205490506116b9565b8092505050611723565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117b0868684611c94565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117fa6115c4565b73ffffffffffffffffffffffffffffffffffffffff16611818611154565b73ffffffffffffffffffffffffffffffffffffffff161461186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061272d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261195c611649565b8786866040518563ffffffff1660e01b815260040161197e9493929190612624565b602060405180830381600087803b15801561199857600080fd5b505af19250505080156119c957506040513d601f19601f820116820180604052508101906119c69190612273565b60015b611a43573d80600081146119f9576040519150601f19603f3d011682016040523d82523d6000602084013e6119fe565b606091505b50600081511415611a3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ade576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611bf2565b600082905060005b60008214611b10578080611af990612b00565b915050600a82611b099190612928565b9150611ae6565b60008167ffffffffffffffff811115611b2c57611b2b612c36565b5b6040519080825280601f01601f191660200182016040528015611b5e5781602001600182028036833780820191505090505b5090505b60008514611beb57600182611b7791906129b3565b9150600a85611b869190612b49565b6030611b9291906128d2565b60f81b818381518110611ba857611ba7612c07565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611be49190612928565b9450611b62565b8093505050505b919050565b611c018383611c9d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c8f57600080549050600083820390505b611c416000868380600101945086611936565b611c77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c2e578160005414611c8c57600080fd5b50505b505050565b60009392505050565b6000805490506000821415611cde576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ceb6000848385611793565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d6283611d536000866000611799565b611d5c85611e5a565b176117c1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e0357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc8565b506000821415611e3f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e5560008483856117ec565b505050565b60006001821460e11b9050919050565b828054611e7690612a9d565b90600052602060002090601f016020900481019282611e985760008555611edf565b82601f10611eb157805160ff1916838001178555611edf565b82800160010185558215611edf579182015b82811115611ede578251825591602001919060010190611ec3565b5b509050611eec9190611ef0565b5090565b5b80821115611f09576000816000905550600101611ef1565b5090565b6000611f20611f1b8461280d565b6127e8565b905082815260208101848484011115611f3c57611f3b612c6a565b5b611f47848285612a5b565b509392505050565b6000611f62611f5d8461283e565b6127e8565b905082815260208101848484011115611f7e57611f7d612c6a565b5b611f89848285612a5b565b509392505050565b600081359050611fa081612e24565b92915050565b600081359050611fb581612e3b565b92915050565b600081359050611fca81612e52565b92915050565b600081519050611fdf81612e52565b92915050565b600082601f830112611ffa57611ff9612c65565b5b813561200a848260208601611f0d565b91505092915050565b600082601f83011261202857612027612c65565b5b8135612038848260208601611f4f565b91505092915050565b60008135905061205081612e69565b92915050565b60006020828403121561206c5761206b612c74565b5b600061207a84828501611f91565b91505092915050565b6000806040838503121561209a57612099612c74565b5b60006120a885828601611f91565b92505060206120b985828601611f91565b9150509250929050565b6000806000606084860312156120dc576120db612c74565b5b60006120ea86828701611f91565b93505060206120fb86828701611f91565b925050604061210c86828701612041565b9150509250925092565b600080600080608085870312156121305761212f612c74565b5b600061213e87828801611f91565b945050602061214f87828801611f91565b935050604061216087828801612041565b925050606085013567ffffffffffffffff81111561218157612180612c6f565b5b61218d87828801611fe5565b91505092959194509250565b600080604083850312156121b0576121af612c74565b5b60006121be85828601611f91565b92505060206121cf85828601611fa6565b9150509250929050565b600080604083850312156121f0576121ef612c74565b5b60006121fe85828601611f91565b925050602061220f85828601612041565b9150509250929050565b60006020828403121561222f5761222e612c74565b5b600061223d84828501611fa6565b91505092915050565b60006020828403121561225c5761225b612c74565b5b600061226a84828501611fbb565b91505092915050565b60006020828403121561228957612288612c74565b5b600061229784828501611fd0565b91505092915050565b6000602082840312156122b6576122b5612c74565b5b600082013567ffffffffffffffff8111156122d4576122d3612c6f565b5b6122e084828501612013565b91505092915050565b6000602082840312156122ff576122fe612c74565b5b600061230d84828501612041565b91505092915050565b61231f816129e7565b82525050565b61232e816129f9565b82525050565b600061233f82612884565b612349818561289a565b9350612359818560208601612a6a565b61236281612c79565b840191505092915050565b60006123788261288f565b61238281856128b6565b9350612392818560208601612a6a565b61239b81612c79565b840191505092915050565b60006123b18261288f565b6123bb81856128c7565b93506123cb818560208601612a6a565b80840191505092915050565b600081546123e481612a9d565b6123ee81866128c7565b94506001821660008114612409576001811461241a5761244d565b60ff1983168652818601935061244d565b6124238561286f565b60005b8381101561244557815481890152600182019150602081019050612426565b838801955050505b50505092915050565b60006124636026836128b6565b915061246e82612c8a565b604082019050919050565b6000612486600a836128b6565b915061249182612cd9565b602082019050919050565b60006124a96012836128b6565b91506124b482612d02565b602082019050919050565b60006124cc6015836128b6565b91506124d782612d2b565b602082019050919050565b60006124ef6020836128b6565b91506124fa82612d54565b602082019050919050565b60006125126016836128b6565b915061251d82612d7d565b602082019050919050565b60006125356000836128ab565b915061254082612da6565b600082019050919050565b6000612558600e836128b6565b915061256382612da9565b602082019050919050565b600061257b600c836128b6565b915061258682612dd2565b602082019050919050565b600061259e6009836128b6565b91506125a982612dfb565b602082019050919050565b6125bd81612a51565b82525050565b60006125cf82866123d7565b91506125db82856123a6565b91506125e782846123a6565b9150819050949350505050565b60006125ff82612528565b9150819050919050565b600060208201905061261e6000830184612316565b92915050565b60006080820190506126396000830187612316565b6126466020830186612316565b61265360408301856125b4565b81810360608301526126658184612334565b905095945050505050565b60006020820190506126856000830184612325565b92915050565b600060208201905081810360008301526126a5818461236d565b905092915050565b600060208201905081810360008301526126c681612456565b9050919050565b600060208201905081810360008301526126e681612479565b9050919050565b600060208201905081810360008301526127068161249c565b9050919050565b60006020820190508181036000830152612726816124bf565b9050919050565b60006020820190508181036000830152612746816124e2565b9050919050565b6000602082019050818103600083015261276681612505565b9050919050565b600060208201905081810360008301526127868161254b565b9050919050565b600060208201905081810360008301526127a68161256e565b9050919050565b600060208201905081810360008301526127c681612591565b9050919050565b60006020820190506127e260008301846125b4565b92915050565b60006127f2612803565b90506127fe8282612acf565b919050565b6000604051905090565b600067ffffffffffffffff82111561282857612827612c36565b5b61283182612c79565b9050602081019050919050565b600067ffffffffffffffff82111561285957612858612c36565b5b61286282612c79565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006128dd82612a51565b91506128e883612a51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561291d5761291c612b7a565b5b828201905092915050565b600061293382612a51565b915061293e83612a51565b92508261294e5761294d612ba9565b5b828204905092915050565b600061296482612a51565b915061296f83612a51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129a8576129a7612b7a565b5b828202905092915050565b60006129be82612a51565b91506129c983612a51565b9250828210156129dc576129db612b7a565b5b828203905092915050565b60006129f282612a31565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a88578082015181840152602081019050612a6d565b83811115612a97576000848401525b50505050565b60006002820490506001821680612ab557607f821691505b60208210811415612ac957612ac8612bd8565b5b50919050565b612ad882612c79565b810181811067ffffffffffffffff82111715612af757612af6612c36565b5b80604052505050565b6000612b0b82612a51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b3e57612b3d612b7a565b5b600182019050919050565b6000612b5482612a51565b9150612b5f83612a51565b925082612b6f57612b6e612ba9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b7f4e6f74206c697665210000000000000000000000000000000000000000000000600082015250565b612e2d816129e7565b8114612e3857600080fd5b50565b612e44816129f9565b8114612e4f57600080fd5b50565b612e5b81612a05565b8114612e6657600080fd5b50565b612e7281612a51565b8114612e7d57600080fd5b5056fea264697066735822122040cac16b2bceac7cf9f0df3844bfaaf949a2d3b07b2af97884118d20055c345e64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636242a8a3116100f757806395d89b4111610095578063c668286211610064578063c6682862146105b1578063c87b56dd146105dc578063e985e9c514610619578063f2fde38b14610656576101c2565b806395d89b4114610516578063a035b1fe14610541578063a22cb4651461056c578063b88d4fde14610595576101c2565b806370a08231116100d157806370a082311461046e578063715018a6146104ab57806380623444146104c25780638da5cb5b146104eb576101c2565b80636242a8a3146103ef5780636352211e146104065780636c0360eb14610443576101c2565b806323b872dd1161016457806344a0d68a1161013e57806344a0d68a1461034957806355f804b31461037257806356e0ec721461039b5780635c6e7f60146103c6576101c2565b806323b872dd146102fa5780633ccfd60b1461031657806342842e0e1461032d576101c2565b806307883703116101a0578063078837031461025a578063081812fc14610276578063095ea7b3146102b357806318160ddd146102cf576101c2565b806301ffc9a7146101c7578063047fc9aa1461020457806306fdde031461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612246565b61067f565b6040516101fb9190612670565b60405180910390f35b34801561021057600080fd5b50610219610711565b60405161022691906127cd565b60405180910390f35b34801561023b57600080fd5b50610244610717565b604051610251919061268b565b60405180910390f35b610274600480360381019061026f91906122e9565b6107a9565b005b34801561028257600080fd5b5061029d600480360381019061029891906122e9565b61096a565b6040516102aa9190612609565b60405180910390f35b6102cd60048036038101906102c891906121d9565b6109e9565b005b3480156102db57600080fd5b506102e4610b2d565b6040516102f191906127cd565b60405180910390f35b610314600480360381019061030f91906120c3565b610b44565b005b34801561032257600080fd5b5061032b610e69565b005b610347600480360381019061034291906120c3565b610f2d565b005b34801561035557600080fd5b50610370600480360381019061036b91906122e9565b610f4d565b005b34801561037e57600080fd5b50610399600480360381019061039491906122a0565b610f5f565b005b3480156103a757600080fd5b506103b0610f81565b6040516103bd9190612670565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612219565b610f94565b005b3480156103fb57600080fd5b50610404610fb9565b005b34801561041257600080fd5b5061042d600480360381019061042891906122e9565b610fd5565b60405161043a9190612609565b60405180910390f35b34801561044f57600080fd5b50610458610fe7565b604051610465919061268b565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612056565b611075565b6040516104a291906127cd565b60405180910390f35b3480156104b757600080fd5b506104c061112e565b005b3480156104ce57600080fd5b506104e960048036038101906104e491906122e9565b611142565b005b3480156104f757600080fd5b50610500611154565b60405161050d9190612609565b60405180910390f35b34801561052257600080fd5b5061052b61117e565b604051610538919061268b565b60405180910390f35b34801561054d57600080fd5b50610556611210565b60405161056391906127cd565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612199565b611216565b005b6105af60048036038101906105aa9190612116565b611321565b005b3480156105bd57600080fd5b506105c6611394565b6040516105d3919061268b565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906122e9565b6113cd565b604051610610919061268b565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190612083565b6114ac565b60405161064d9190612670565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190612056565b611540565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b60606002805461072690612a9d565b80601f016020809104026020016040519081016040528092919081815260200182805461075290612a9d565b801561079f5780601f106107745761010080835404028352916020019161079f565b820191906000526020600020905b81548152906001019060200180831161078257829003601f168201915b5050505050905090565b60006107b36115c4565b9050600c60009054906101000a900460ff16610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb906127ad565b60405180910390fd5b8161080d610b2d565b61081791906128d2565b600954101561085b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610852906126ed565b60405180910390fd5b6000821161089e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610895906126cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461090c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109039061278d565b60405180910390fd5b600a548261091a9190612959565b34101561095c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109539061274d565b60405180910390fd5b61096681836115cc565b5050565b6000610975826115ea565b6109ab576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f482610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff16610a15611649565b73ffffffffffffffffffffffffffffffffffffffff1614610a7857610a4181610a3c611649565b6114ac565b610a77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b37611651565b6001546000540303905090565b6000610b4f8261165a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bb6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bc284611728565b91509150610bd88187610bd3611649565b61174f565b610c2457610bed86610be8611649565b6114ac565b610c23576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c8b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c988686866001611793565b8015610ca357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d7185610d4d888887611799565b7c0200000000000000000000000000000000000000000000000000000000176117c1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610df9576000600185019050600060046000838152602001908152602001600020541415610df7576000548114610df6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e6186868660016117ec565b505050505050565b610e716117f2565b60004790506000610e806115c4565b73ffffffffffffffffffffffffffffffffffffffff1682604051610ea3906125f4565b60006040518083038185875af1925050503d8060008114610ee0576040519150601f19603f3d011682016040523d82523d6000602084013e610ee5565b606091505b5050905080610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f209061276d565b60405180910390fd5b5050565b610f4883838360405180602001604052806000815250611321565b505050565b610f556117f2565b80600a8190555050565b610f676117f2565b80600b9080519060200190610f7d929190611e6a565b5050565b600c60009054906101000a900460ff1681565b610f9c6117f2565b80600c60006101000a81548160ff02191690831515021790555050565b610fc16117f2565b610fd3610fcc6115c4565b603c6115cc565b565b6000610fe08261165a565b9050919050565b600b8054610ff490612a9d565b80601f016020809104026020016040519081016040528092919081815260200182805461102090612a9d565b801561106d5780601f106110425761010080835404028352916020019161106d565b820191906000526020600020905b81548152906001019060200180831161105057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110dd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111366117f2565b6111406000611870565b565b61114a6117f2565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461118d90612a9d565b80601f01602080910402602001604051908101604052809291908181526020018280546111b990612a9d565b80156112065780601f106111db57610100808354040283529160200191611206565b820191906000526020600020905b8154815290600101906020018083116111e957829003601f168201915b5050505050905090565b600a5481565b8060076000611223611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d0611649565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113159190612670565b60405180910390a35050565b61132c848484610b44565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461138e5761135784848484611936565b61138d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606113d8826115ea565b611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e9061270d565b60405180910390fd5b6000600b805461142690612a9d565b90501161144257604051806020016040528060008152506114a5565b600b61144d83611a96565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611495939291906125c3565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115486117f2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af906126ad565b60405180910390fd5b6115c181611870565b50565b600033905090565b6115e6828260405180602001604052806000815250611bf7565b5050565b6000816115f5611651565b11158015611604575060005482105b8015611642575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611669611651565b116116f1576000548110156116f05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116ee575b60008114156116e45760046000836001900393508381526020019081526020016000205490506116b9565b8092505050611723565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117b0868684611c94565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117fa6115c4565b73ffffffffffffffffffffffffffffffffffffffff16611818611154565b73ffffffffffffffffffffffffffffffffffffffff161461186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061272d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261195c611649565b8786866040518563ffffffff1660e01b815260040161197e9493929190612624565b602060405180830381600087803b15801561199857600080fd5b505af19250505080156119c957506040513d601f19601f820116820180604052508101906119c69190612273565b60015b611a43573d80600081146119f9576040519150601f19603f3d011682016040523d82523d6000602084013e6119fe565b606091505b50600081511415611a3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ade576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611bf2565b600082905060005b60008214611b10578080611af990612b00565b915050600a82611b099190612928565b9150611ae6565b60008167ffffffffffffffff811115611b2c57611b2b612c36565b5b6040519080825280601f01601f191660200182016040528015611b5e5781602001600182028036833780820191505090505b5090505b60008514611beb57600182611b7791906129b3565b9150600a85611b869190612b49565b6030611b9291906128d2565b60f81b818381518110611ba857611ba7612c07565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611be49190612928565b9450611b62565b8093505050505b919050565b611c018383611c9d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c8f57600080549050600083820390505b611c416000868380600101945086611936565b611c77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c2e578160005414611c8c57600080fd5b50505b505050565b60009392505050565b6000805490506000821415611cde576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ceb6000848385611793565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d6283611d536000866000611799565b611d5c85611e5a565b176117c1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e0357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc8565b506000821415611e3f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e5560008483856117ec565b505050565b60006001821460e11b9050919050565b828054611e7690612a9d565b90600052602060002090601f016020900481019282611e985760008555611edf565b82601f10611eb157805160ff1916838001178555611edf565b82800160010185558215611edf579182015b82811115611ede578251825591602001919060010190611ec3565b5b509050611eec9190611ef0565b5090565b5b80821115611f09576000816000905550600101611ef1565b5090565b6000611f20611f1b8461280d565b6127e8565b905082815260208101848484011115611f3c57611f3b612c6a565b5b611f47848285612a5b565b509392505050565b6000611f62611f5d8461283e565b6127e8565b905082815260208101848484011115611f7e57611f7d612c6a565b5b611f89848285612a5b565b509392505050565b600081359050611fa081612e24565b92915050565b600081359050611fb581612e3b565b92915050565b600081359050611fca81612e52565b92915050565b600081519050611fdf81612e52565b92915050565b600082601f830112611ffa57611ff9612c65565b5b813561200a848260208601611f0d565b91505092915050565b600082601f83011261202857612027612c65565b5b8135612038848260208601611f4f565b91505092915050565b60008135905061205081612e69565b92915050565b60006020828403121561206c5761206b612c74565b5b600061207a84828501611f91565b91505092915050565b6000806040838503121561209a57612099612c74565b5b60006120a885828601611f91565b92505060206120b985828601611f91565b9150509250929050565b6000806000606084860312156120dc576120db612c74565b5b60006120ea86828701611f91565b93505060206120fb86828701611f91565b925050604061210c86828701612041565b9150509250925092565b600080600080608085870312156121305761212f612c74565b5b600061213e87828801611f91565b945050602061214f87828801611f91565b935050604061216087828801612041565b925050606085013567ffffffffffffffff81111561218157612180612c6f565b5b61218d87828801611fe5565b91505092959194509250565b600080604083850312156121b0576121af612c74565b5b60006121be85828601611f91565b92505060206121cf85828601611fa6565b9150509250929050565b600080604083850312156121f0576121ef612c74565b5b60006121fe85828601611f91565b925050602061220f85828601612041565b9150509250929050565b60006020828403121561222f5761222e612c74565b5b600061223d84828501611fa6565b91505092915050565b60006020828403121561225c5761225b612c74565b5b600061226a84828501611fbb565b91505092915050565b60006020828403121561228957612288612c74565b5b600061229784828501611fd0565b91505092915050565b6000602082840312156122b6576122b5612c74565b5b600082013567ffffffffffffffff8111156122d4576122d3612c6f565b5b6122e084828501612013565b91505092915050565b6000602082840312156122ff576122fe612c74565b5b600061230d84828501612041565b91505092915050565b61231f816129e7565b82525050565b61232e816129f9565b82525050565b600061233f82612884565b612349818561289a565b9350612359818560208601612a6a565b61236281612c79565b840191505092915050565b60006123788261288f565b61238281856128b6565b9350612392818560208601612a6a565b61239b81612c79565b840191505092915050565b60006123b18261288f565b6123bb81856128c7565b93506123cb818560208601612a6a565b80840191505092915050565b600081546123e481612a9d565b6123ee81866128c7565b94506001821660008114612409576001811461241a5761244d565b60ff1983168652818601935061244d565b6124238561286f565b60005b8381101561244557815481890152600182019150602081019050612426565b838801955050505b50505092915050565b60006124636026836128b6565b915061246e82612c8a565b604082019050919050565b6000612486600a836128b6565b915061249182612cd9565b602082019050919050565b60006124a96012836128b6565b91506124b482612d02565b602082019050919050565b60006124cc6015836128b6565b91506124d782612d2b565b602082019050919050565b60006124ef6020836128b6565b91506124fa82612d54565b602082019050919050565b60006125126016836128b6565b915061251d82612d7d565b602082019050919050565b60006125356000836128ab565b915061254082612da6565b600082019050919050565b6000612558600e836128b6565b915061256382612da9565b602082019050919050565b600061257b600c836128b6565b915061258682612dd2565b602082019050919050565b600061259e6009836128b6565b91506125a982612dfb565b602082019050919050565b6125bd81612a51565b82525050565b60006125cf82866123d7565b91506125db82856123a6565b91506125e782846123a6565b9150819050949350505050565b60006125ff82612528565b9150819050919050565b600060208201905061261e6000830184612316565b92915050565b60006080820190506126396000830187612316565b6126466020830186612316565b61265360408301856125b4565b81810360608301526126658184612334565b905095945050505050565b60006020820190506126856000830184612325565b92915050565b600060208201905081810360008301526126a5818461236d565b905092915050565b600060208201905081810360008301526126c681612456565b9050919050565b600060208201905081810360008301526126e681612479565b9050919050565b600060208201905081810360008301526127068161249c565b9050919050565b60006020820190508181036000830152612726816124bf565b9050919050565b60006020820190508181036000830152612746816124e2565b9050919050565b6000602082019050818103600083015261276681612505565b9050919050565b600060208201905081810360008301526127868161254b565b9050919050565b600060208201905081810360008301526127a68161256e565b9050919050565b600060208201905081810360008301526127c681612591565b9050919050565b60006020820190506127e260008301846125b4565b92915050565b60006127f2612803565b90506127fe8282612acf565b919050565b6000604051905090565b600067ffffffffffffffff82111561282857612827612c36565b5b61283182612c79565b9050602081019050919050565b600067ffffffffffffffff82111561285957612858612c36565b5b61286282612c79565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006128dd82612a51565b91506128e883612a51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561291d5761291c612b7a565b5b828201905092915050565b600061293382612a51565b915061293e83612a51565b92508261294e5761294d612ba9565b5b828204905092915050565b600061296482612a51565b915061296f83612a51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129a8576129a7612b7a565b5b828202905092915050565b60006129be82612a51565b91506129c983612a51565b9250828210156129dc576129db612b7a565b5b828203905092915050565b60006129f282612a31565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a88578082015181840152602081019050612a6d565b83811115612a97576000848401525b50505050565b60006002820490506001821680612ab557607f821691505b60208210811415612ac957612ac8612bd8565b5b50919050565b612ad882612c79565b810181811067ffffffffffffffff82111715612af757612af6612c36565b5b80604052505050565b6000612b0b82612a51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b3e57612b3d612b7a565b5b600182019050919050565b6000612b5482612a51565b9150612b5f83612a51565b925082612b6f57612b6e612ba9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b7f4e6f74206c697665210000000000000000000000000000000000000000000000600082015250565b612e2d816129e7565b8114612e3857600080fd5b50565b612e44816129f9565b8114612e4f57600080fd5b50565b612e5b81612a05565b8114612e6657600080fd5b50565b612e7281612a51565b8114612e7d57600080fd5b5056fea264697066735822122040cac16b2bceac7cf9f0df3844bfaaf949a2d3b07b2af97884118d20055c345e64736f6c63430008070033
Deployed Bytecode Sourcemap
57583:1926:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24494:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57624:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25396:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57861:423;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31887:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31320:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21147:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35526:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58292:209;;;;;;;;;;;;;:::i;:::-;;38447:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59008:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58813:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57782:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58921:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58618:85;;;;;;;;;;;;;:::i;:::-;;26789:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57694:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22331:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;58711:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25572:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57656:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32445:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39238:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57727:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59105:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32836:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24494:639;24579:4;24918:10;24903:25;;:11;:25;;;;:102;;;;24995:10;24980:25;;:11;:25;;;;24903:102;:179;;;;25072:10;25057:25;;:11;:25;;;;24903:179;24883:199;;24494:639;;;:::o;57624:25::-;;;;:::o;25396:100::-;25450:13;25483:5;25476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25396:100;:::o;57861:423::-;57920:15;57938:12;:10;:12::i;:::-;57920:30;;57969:5;;;;;;;;;;;57961:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;58033:7;58017:13;:11;:13::i;:::-;:23;;;;:::i;:::-;58007:6;;:33;;57999:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;58092:1;58082:7;:11;58074:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;58140:7;58127:20;;:9;:20;;;58119:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;58206:5;;58196:7;:15;;;;:::i;:::-;58183:9;:28;;58175:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58249:27;58259:7;58268;58249:9;:27::i;:::-;57909:375;57861:423;:::o;31887:218::-;31963:7;31988:16;31996:7;31988;:16::i;:::-;31983:64;;32013:34;;;;;;;;;;;;;;31983:64;32067:15;:24;32083:7;32067:24;;;;;;;;;;;:30;;;;;;;;;;;;32060:37;;31887:218;;;:::o;31320:408::-;31409:13;31425:16;31433:7;31425;:16::i;:::-;31409:32;;31481:5;31458:28;;:19;:17;:19::i;:::-;:28;;;31454:175;;31506:44;31523:5;31530:19;:17;:19::i;:::-;31506:16;:44::i;:::-;31501:128;;31578:35;;;;;;;;;;;;;;31501:128;31454:175;31674:2;31641:15;:24;31657:7;31641:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31712:7;31708:2;31692:28;;31701:5;31692:28;;;;;;;;;;;;31398:330;31320:408;;:::o;21147:323::-;21208:7;21436:15;:13;:15::i;:::-;21421:12;;21405:13;;:28;:46;21398:53;;21147:323;:::o;35526:2825::-;35668:27;35698;35717:7;35698:18;:27::i;:::-;35668:57;;35783:4;35742:45;;35758:19;35742:45;;;35738:86;;35796:28;;;;;;;;;;;;;;35738:86;35838:27;35867:23;35894:35;35921:7;35894:26;:35::i;:::-;35837:92;;;;36029:68;36054:15;36071:4;36077:19;:17;:19::i;:::-;36029:24;:68::i;:::-;36024:180;;36117:43;36134:4;36140:19;:17;:19::i;:::-;36117:16;:43::i;:::-;36112:92;;36169:35;;;;;;;;;;;;;;36112:92;36024:180;36235:1;36221:16;;:2;:16;;;36217:52;;;36246:23;;;;;;;;;;;;;;36217:52;36282:43;36304:4;36310:2;36314:7;36323:1;36282:21;:43::i;:::-;36418:15;36415:160;;;36558:1;36537:19;36530:30;36415:160;36955:18;:24;36974:4;36955:24;;;;;;;;;;;;;;;;36953:26;;;;;;;;;;;;37024:18;:22;37043:2;37024:22;;;;;;;;;;;;;;;;37022:24;;;;;;;;;;;37346:146;37383:2;37432:45;37447:4;37453:2;37457:19;37432:14;:45::i;:::-;17546:8;37404:73;37346:18;:146::i;:::-;37317:17;:26;37335:7;37317:26;;;;;;;;;;;:175;;;;37663:1;17546:8;37612:19;:47;:52;37608:627;;;37685:19;37717:1;37707:7;:11;37685:33;;37874:1;37840:17;:30;37858:11;37840:30;;;;;;;;;;;;:35;37836:384;;;37978:13;;37963:11;:28;37959:242;;38158:19;38125:17;:30;38143:11;38125:30;;;;;;;;;;;:52;;;;37959:242;37836:384;37666:569;37608:627;38282:7;38278:2;38263:27;;38272:4;38263:27;;;;;;;;;;;;38301:42;38322:4;38328:2;38332:7;38341:1;38301:20;:42::i;:::-;35657:2694;;;35526:2825;;;:::o;58292:209::-;4511:13;:11;:13::i;:::-;58342:15:::1;58360:21;58342:39;;58393:12;58411;:10;:12::i;:::-;:17;;58436:7;58411:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58392:56;;;58467:7;58459:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;58331:170;;58292:209::o:0;38447:193::-;38593:39;38610:4;38616:2;38620:7;38593:39;;;;;;;;;;;;:16;:39::i;:::-;38447:193;;;:::o;59008:89::-;4511:13;:11;:13::i;:::-;59081:8:::1;59073:5;:16;;;;59008:89:::0;:::o;58813:100::-;4511:13;:11;:13::i;:::-;58897:8:::1;58887:7;:18;;;;;;;;;;;;:::i;:::-;;58813:100:::0;:::o;57782:24::-;;;;;;;;;;;;;:::o;58921:79::-;4511:13;:11;:13::i;:::-;58986:6:::1;58978:5;;:14;;;;;;;;;;;;;;;;;;58921:79:::0;:::o;58618:85::-;4511:13;:11;:13::i;:::-;58668:27:::1;58678:12;:10;:12::i;:::-;58692:2;58668:9;:27::i;:::-;58618:85::o:0;26789:152::-;26861:7;26904:27;26923:7;26904:18;:27::i;:::-;26881:52;;26789:152;;;:::o;57694:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22331:233::-;22403:7;22444:1;22427:19;;:5;:19;;;22423:60;;;22455:28;;;;;;;;;;;;;;22423:60;16490:13;22501:18;:25;22520:5;22501:25;;;;;;;;;;;;;;;;:55;22494:62;;22331:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;58711:94::-;4511:13;:11;:13::i;:::-;58788:9:::1;58779:6;:18;;;;58711:94:::0;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;25572:104::-;25628:13;25661:7;25654:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25572:104;:::o;57656:31::-;;;;:::o;32445:234::-;32592:8;32540:18;:39;32559:19;:17;:19::i;:::-;32540:39;;;;;;;;;;;;;;;:49;32580:8;32540:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32652:8;32616:55;;32631:19;:17;:19::i;:::-;32616:55;;;32662:8;32616:55;;;;;;:::i;:::-;;;;;;;;32445:234;;:::o;39238:407::-;39413:31;39426:4;39432:2;39436:7;39413:12;:31::i;:::-;39477:1;39459:2;:14;;;:19;39455:183;;39498:56;39529:4;39535:2;39539:7;39548:5;39498:30;:56::i;:::-;39493:145;;39582:40;;;;;;;;;;;;;;39493:145;39455:183;39238:407;;;;:::o;57727:46::-;;;;;;;;;;;;;;;;;;;:::o;59105:401::-;59171:13;59205:17;59213:8;59205:7;:17::i;:::-;59197:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;59290:1;59272:7;59266:21;;;;;:::i;:::-;;;:25;:232;;;;;;;;;;;;;;;;;59348:7;59372:26;59389:8;59372:16;:26::i;:::-;59454:13;;;;;;;;;;;;;;;;;59315:167;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59266:232;59259:239;;59105:401;;;:::o;32836:164::-;32933:4;32957:18;:25;32976:5;32957:25;;;;;;;;;;;;;;;:35;32983:8;32957:35;;;;;;;;;;;;;;;;;;;;;;;;;32950:42;;32836:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;49398:112::-;49475:27;49485:2;49489:8;49475:27;;;;;;;;;;;;:9;:27::i;:::-;49398:112;;:::o;33258:282::-;33323:4;33379:7;33360:15;:13;:15::i;:::-;:26;;:66;;;;;33413:13;;33403:7;:23;33360:66;:153;;;;;33512:1;17266:8;33464:17;:26;33482:7;33464:26;;;;;;;;;;;;:44;:49;33360:153;33340:173;;33258:282;;;:::o;55566:105::-;55626:7;55653:10;55646:17;;55566:105;:::o;58509:101::-;58574:7;58601:1;58594:8;;58509:101;:::o;27944:1275::-;28011:7;28031:12;28046:7;28031:22;;28114:4;28095:15;:13;:15::i;:::-;:23;28091:1061;;28148:13;;28141:4;:20;28137:1015;;;28186:14;28203:17;:23;28221:4;28203:23;;;;;;;;;;;;28186:40;;28320:1;17266:8;28292:6;:24;:29;28288:845;;;28957:113;28974:1;28964:6;:11;28957:113;;;29017:17;:25;29035:6;;;;;;;29017:25;;;;;;;;;;;;29008:34;;28957:113;;;29103:6;29096:13;;;;;;28288:845;28163:989;28137:1015;28091:1061;29180:31;;;;;;;;;;;;;;27944:1275;;;;:::o;34421:485::-;34523:27;34552:23;34593:38;34634:15;:24;34650:7;34634:24;;;;;;;;;;;34593:65;;34811:18;34788:41;;34868:19;34862:26;34843:45;;34773:126;34421:485;;;:::o;33649:659::-;33798:11;33963:16;33956:5;33952:28;33943:37;;34123:16;34112:9;34108:32;34095:45;;34273:15;34262:9;34259:30;34251:5;34240:9;34237:20;34234:56;34224:66;;33649:659;;;;;:::o;40307:159::-;;;;;:::o;54875:311::-;55010:7;55030:16;17670:3;55056:19;:41;;55030:68;;17670:3;55124:31;55135:4;55141:2;55145:9;55124:10;:31::i;:::-;55116:40;;:62;;55109:69;;;54875:311;;;;;:::o;29767:450::-;29847:14;30015:16;30008:5;30004:28;29995:37;;30192:5;30178:11;30153:23;30149:41;30146:52;30139:5;30136:63;30126:73;;29767:450;;;;:::o;41131:158::-;;;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;41729:716::-;41892:4;41938:2;41913:45;;;41959:19;:17;:19::i;:::-;41980:4;41986:7;41995:5;41913:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42213:1;42196:6;:13;:18;42192:235;;;42242:40;;;;;;;;;;;;;;42192:235;42385:6;42379:13;42370:6;42366:2;42362:15;42355:38;41909:529;42082:54;;;42072:64;;;:6;:64;;;;42065:71;;;41729:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;48625:689::-;48756:19;48762:2;48766:8;48756:5;:19::i;:::-;48835:1;48817:2;:14;;;:19;48813:483;;48857:11;48871:13;;48857:27;;48903:13;48925:8;48919:3;:14;48903:30;;48952:233;48983:62;49022:1;49026:2;49030:7;;;;;;49039:5;48983:30;:62::i;:::-;48978:167;;49081:40;;;;;;;;;;;;;;48978:167;49180:3;49172:5;:11;48952:233;;49267:3;49250:13;;:20;49246:34;;49272:8;;;49246:34;48838:458;;48813:483;48625:689;;;:::o;54576:147::-;54713:6;54576:147;;;;;:::o;42907:2966::-;42980:20;43003:13;;42980:36;;43043:1;43031:8;:13;43027:44;;;43053:18;;;;;;;;;;;;;;43027:44;43084:61;43114:1;43118:2;43122:12;43136:8;43084:21;:61::i;:::-;43628:1;16628:2;43598:1;:26;;43597:32;43585:8;:45;43559:18;:22;43578:2;43559:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43907:139;43944:2;43998:33;44021:1;44025:2;44029:1;43998:14;:33::i;:::-;43965:30;43986:8;43965:20;:30::i;:::-;:66;43907:18;:139::i;:::-;43873:17;:31;43891:12;43873:31;;;;;;;;;;;:173;;;;44063:16;44094:11;44123:8;44108:12;:23;44094:37;;44644:16;44640:2;44636:25;44624:37;;45016:12;44976:8;44935:1;44873:25;44814:1;44753;44726:335;45387:1;45373:12;45369:20;45327:346;45428:3;45419:7;45416:16;45327:346;;45646:7;45636:8;45633:1;45606:25;45603:1;45600;45595:59;45481:1;45472:7;45468:15;45457:26;;45327:346;;;45331:77;45718:1;45706:8;:13;45702:45;;;45728:19;;;;;;;;;;;;;;45702:45;45780:3;45764:13;:19;;;;43333:2462;;45805:60;45834:1;45838:2;45842:12;45856:8;45805:20;:60::i;:::-;42969:2904;42907:2966;;:::o;30319:324::-;30389:14;30622:1;30612:8;30609:15;30583:24;30579:46;30569:56;;30319:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:398::-;12111:3;12132:83;12213:1;12208:3;12132:83;:::i;:::-;12125:90;;12224:93;12313:3;12224:93;:::i;:::-;12342:1;12337:3;12333:11;12326:18;;11952:398;;;:::o;12356:366::-;12498:3;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12595:93;12684:3;12595:93;:::i;:::-;12713:2;12708:3;12704:12;12697:19;;12356:366;;;:::o;12728:::-;12870:3;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12967:93;13056:3;12967:93;:::i;:::-;13085:2;13080:3;13076:12;13069:19;;12728:366;;;:::o;13100:365::-;13242:3;13263:66;13327:1;13322:3;13263:66;:::i;:::-;13256:73;;13338:93;13427:3;13338:93;:::i;:::-;13456:2;13451:3;13447:12;13440:19;;13100:365;;;:::o;13471:118::-;13558:24;13576:5;13558:24;:::i;:::-;13553:3;13546:37;13471:118;;:::o;13595:589::-;13820:3;13842:92;13930:3;13921:6;13842:92;:::i;:::-;13835:99;;13951:95;14042:3;14033:6;13951:95;:::i;:::-;13944:102;;14063:95;14154:3;14145:6;14063:95;:::i;:::-;14056:102;;14175:3;14168:10;;13595:589;;;;;;:::o;14190:379::-;14374:3;14396:147;14539:3;14396:147;:::i;:::-;14389:154;;14560:3;14553:10;;14190:379;;;:::o;14575:222::-;14668:4;14706:2;14695:9;14691:18;14683:26;;14719:71;14787:1;14776:9;14772:17;14763:6;14719:71;:::i;:::-;14575:222;;;;:::o;14803:640::-;14998:4;15036:3;15025:9;15021:19;15013:27;;15050:71;15118:1;15107:9;15103:17;15094:6;15050:71;:::i;:::-;15131:72;15199:2;15188:9;15184:18;15175:6;15131:72;:::i;:::-;15213;15281:2;15270:9;15266:18;15257:6;15213:72;:::i;:::-;15332:9;15326:4;15322:20;15317:2;15306:9;15302:18;15295:48;15360:76;15431:4;15422:6;15360:76;:::i;:::-;15352:84;;14803:640;;;;;;;:::o;15449:210::-;15536:4;15574:2;15563:9;15559:18;15551:26;;15587:65;15649:1;15638:9;15634:17;15625:6;15587:65;:::i;:::-;15449:210;;;;:::o;15665:313::-;15778:4;15816:2;15805:9;15801:18;15793:26;;15865:9;15859:4;15855:20;15851:1;15840:9;15836:17;15829:47;15893:78;15966:4;15957:6;15893:78;:::i;:::-;15885:86;;15665:313;;;;:::o;15984:419::-;16150:4;16188:2;16177:9;16173:18;16165:26;;16237:9;16231:4;16227:20;16223:1;16212:9;16208:17;16201:47;16265:131;16391:4;16265:131;:::i;:::-;16257:139;;15984:419;;;:::o;16409:::-;16575:4;16613:2;16602:9;16598:18;16590:26;;16662:9;16656:4;16652:20;16648:1;16637:9;16633:17;16626:47;16690:131;16816:4;16690:131;:::i;:::-;16682:139;;16409:419;;;:::o;16834:::-;17000:4;17038:2;17027:9;17023:18;17015:26;;17087:9;17081:4;17077:20;17073:1;17062:9;17058:17;17051:47;17115:131;17241:4;17115:131;:::i;:::-;17107:139;;16834:419;;;:::o;17259:::-;17425:4;17463:2;17452:9;17448:18;17440:26;;17512:9;17506:4;17502:20;17498:1;17487:9;17483:17;17476:47;17540:131;17666:4;17540:131;:::i;:::-;17532:139;;17259:419;;;:::o;17684:::-;17850:4;17888:2;17877:9;17873:18;17865:26;;17937:9;17931:4;17927:20;17923:1;17912:9;17908:17;17901:47;17965:131;18091:4;17965:131;:::i;:::-;17957:139;;17684:419;;;:::o;18109:::-;18275:4;18313:2;18302:9;18298:18;18290:26;;18362:9;18356:4;18352:20;18348:1;18337:9;18333:17;18326:47;18390:131;18516:4;18390:131;:::i;:::-;18382:139;;18109:419;;;:::o;18534:::-;18700:4;18738:2;18727:9;18723:18;18715:26;;18787:9;18781:4;18777:20;18773:1;18762:9;18758:17;18751:47;18815:131;18941:4;18815:131;:::i;:::-;18807:139;;18534:419;;;:::o;18959:::-;19125:4;19163:2;19152:9;19148:18;19140:26;;19212:9;19206:4;19202:20;19198:1;19187:9;19183:17;19176:47;19240:131;19366:4;19240:131;:::i;:::-;19232:139;;18959:419;;;:::o;19384:::-;19550:4;19588:2;19577:9;19573:18;19565:26;;19637:9;19631:4;19627:20;19623:1;19612:9;19608:17;19601:47;19665:131;19791:4;19665:131;:::i;:::-;19657:139;;19384:419;;;:::o;19809:222::-;19902:4;19940:2;19929:9;19925:18;19917:26;;19953:71;20021:1;20010:9;20006:17;19997:6;19953:71;:::i;:::-;19809:222;;;;:::o;20037:129::-;20071:6;20098:20;;:::i;:::-;20088:30;;20127:33;20155:4;20147:6;20127:33;:::i;:::-;20037:129;;;:::o;20172:75::-;20205:6;20238:2;20232:9;20222:19;;20172:75;:::o;20253:307::-;20314:4;20404:18;20396:6;20393:30;20390:56;;;20426:18;;:::i;:::-;20390:56;20464:29;20486:6;20464:29;:::i;:::-;20456:37;;20548:4;20542;20538:15;20530:23;;20253:307;;;:::o;20566:308::-;20628:4;20718:18;20710:6;20707:30;20704:56;;;20740:18;;:::i;:::-;20704:56;20778:29;20800:6;20778:29;:::i;:::-;20770:37;;20862:4;20856;20852:15;20844:23;;20566:308;;;:::o;20880:141::-;20929:4;20952:3;20944:11;;20975:3;20972:1;20965:14;21009:4;21006:1;20996:18;20988:26;;20880:141;;;:::o;21027:98::-;21078:6;21112:5;21106:12;21096:22;;21027:98;;;:::o;21131:99::-;21183:6;21217:5;21211:12;21201:22;;21131:99;;;:::o;21236:168::-;21319:11;21353:6;21348:3;21341:19;21393:4;21388:3;21384:14;21369:29;;21236:168;;;;:::o;21410:147::-;21511:11;21548:3;21533:18;;21410:147;;;;:::o;21563:169::-;21647:11;21681:6;21676:3;21669:19;21721:4;21716:3;21712:14;21697:29;;21563:169;;;;:::o;21738:148::-;21840:11;21877:3;21862:18;;21738:148;;;;:::o;21892:305::-;21932:3;21951:20;21969:1;21951:20;:::i;:::-;21946:25;;21985:20;22003:1;21985:20;:::i;:::-;21980:25;;22139:1;22071:66;22067:74;22064:1;22061:81;22058:107;;;22145:18;;:::i;:::-;22058:107;22189:1;22186;22182:9;22175:16;;21892:305;;;;:::o;22203:185::-;22243:1;22260:20;22278:1;22260:20;:::i;:::-;22255:25;;22294:20;22312:1;22294:20;:::i;:::-;22289:25;;22333:1;22323:35;;22338:18;;:::i;:::-;22323:35;22380:1;22377;22373:9;22368:14;;22203:185;;;;:::o;22394:348::-;22434:7;22457:20;22475:1;22457:20;:::i;:::-;22452:25;;22491:20;22509:1;22491:20;:::i;:::-;22486:25;;22679:1;22611:66;22607:74;22604:1;22601:81;22596:1;22589:9;22582:17;22578:105;22575:131;;;22686:18;;:::i;:::-;22575:131;22734:1;22731;22727:9;22716:20;;22394:348;;;;:::o;22748:191::-;22788:4;22808:20;22826:1;22808:20;:::i;:::-;22803:25;;22842:20;22860:1;22842:20;:::i;:::-;22837:25;;22881:1;22878;22875:8;22872:34;;;22886:18;;:::i;:::-;22872:34;22931:1;22928;22924:9;22916:17;;22748:191;;;;:::o;22945:96::-;22982:7;23011:24;23029:5;23011:24;:::i;:::-;23000:35;;22945:96;;;:::o;23047:90::-;23081:7;23124:5;23117:13;23110:21;23099:32;;23047:90;;;:::o;23143:149::-;23179:7;23219:66;23212:5;23208:78;23197:89;;23143:149;;;:::o;23298:126::-;23335:7;23375:42;23368:5;23364:54;23353:65;;23298:126;;;:::o;23430:77::-;23467:7;23496:5;23485:16;;23430:77;;;:::o;23513:154::-;23597:6;23592:3;23587;23574:30;23659:1;23650:6;23645:3;23641:16;23634:27;23513:154;;;:::o;23673:307::-;23741:1;23751:113;23765:6;23762:1;23759:13;23751:113;;;23850:1;23845:3;23841:11;23835:18;23831:1;23826:3;23822:11;23815:39;23787:2;23784:1;23780:10;23775:15;;23751:113;;;23882:6;23879:1;23876:13;23873:101;;;23962:1;23953:6;23948:3;23944:16;23937:27;23873:101;23722:258;23673:307;;;:::o;23986:320::-;24030:6;24067:1;24061:4;24057:12;24047:22;;24114:1;24108:4;24104:12;24135:18;24125:81;;24191:4;24183:6;24179:17;24169:27;;24125:81;24253:2;24245:6;24242:14;24222:18;24219:38;24216:84;;;24272:18;;:::i;:::-;24216:84;24037:269;23986:320;;;:::o;24312:281::-;24395:27;24417:4;24395:27;:::i;:::-;24387:6;24383:40;24525:6;24513:10;24510:22;24489:18;24477:10;24474:34;24471:62;24468:88;;;24536:18;;:::i;:::-;24468:88;24576:10;24572:2;24565:22;24355:238;24312:281;;:::o;24599:233::-;24638:3;24661:24;24679:5;24661:24;:::i;:::-;24652:33;;24707:66;24700:5;24697:77;24694:103;;;24777:18;;:::i;:::-;24694:103;24824:1;24817:5;24813:13;24806:20;;24599:233;;;:::o;24838:176::-;24870:1;24887:20;24905:1;24887:20;:::i;:::-;24882:25;;24921:20;24939:1;24921:20;:::i;:::-;24916:25;;24960:1;24950:35;;24965:18;;:::i;:::-;24950:35;25006:1;25003;24999:9;24994:14;;24838:176;;;;:::o;25020:180::-;25068:77;25065:1;25058:88;25165:4;25162:1;25155:15;25189:4;25186:1;25179:15;25206:180;25254:77;25251:1;25244:88;25351:4;25348:1;25341:15;25375:4;25372:1;25365:15;25392:180;25440:77;25437:1;25430:88;25537:4;25534:1;25527:15;25561:4;25558:1;25551:15;25578:180;25626:77;25623:1;25616:88;25723:4;25720:1;25713:15;25747:4;25744:1;25737:15;25764:180;25812:77;25809:1;25802:88;25909:4;25906:1;25899:15;25933:4;25930:1;25923:15;25950:117;26059:1;26056;26049:12;26073:117;26182:1;26179;26172:12;26196:117;26305:1;26302;26295:12;26319:117;26428:1;26425;26418:12;26442:102;26483:6;26534:2;26530:7;26525:2;26518:5;26514:14;26510:28;26500:38;;26442:102;;;:::o;26550:225::-;26690:34;26686:1;26678:6;26674:14;26667:58;26759:8;26754:2;26746:6;26742:15;26735:33;26550:225;:::o;26781:160::-;26921:12;26917:1;26909:6;26905:14;26898:36;26781:160;:::o;26947:168::-;27087:20;27083:1;27075:6;27071:14;27064:44;26947:168;:::o;27121:171::-;27261:23;27257:1;27249:6;27245:14;27238:47;27121:171;:::o;27298:182::-;27438:34;27434:1;27426:6;27422:14;27415:58;27298:182;:::o;27486:172::-;27626:24;27622:1;27614:6;27610:14;27603:48;27486:172;:::o;27664:114::-;;:::o;27784:164::-;27924:16;27920:1;27912:6;27908:14;27901:40;27784:164;:::o;27954:162::-;28094:14;28090:1;28082:6;28078:14;28071:38;27954:162;:::o;28122:159::-;28262:11;28258:1;28250:6;28246:14;28239:35;28122:159;:::o;28287:122::-;28360:24;28378:5;28360:24;:::i;:::-;28353:5;28350:35;28340:63;;28399:1;28396;28389:12;28340:63;28287:122;:::o;28415:116::-;28485:21;28500:5;28485:21;:::i;:::-;28478:5;28475:32;28465:60;;28521:1;28518;28511:12;28465:60;28415:116;:::o;28537:120::-;28609:23;28626:5;28609:23;:::i;:::-;28602:5;28599:34;28589:62;;28647:1;28644;28637:12;28589:62;28537:120;:::o;28663:122::-;28736:24;28754:5;28736:24;:::i;:::-;28729:5;28726:35;28716:63;;28775:1;28772;28765:12;28716:63;28663:122;:::o
Swarm Source
ipfs://40cac16b2bceac7cf9f0df3844bfaaf949a2d3b07b2af97884118d20055c345e
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.