Overview
TokenID
692
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JPEGSByCosmic999
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-30 */ /** *Submitted for verification at Etherscan.io on 2022-12-02 */ // SPDX-License-Identifier: MIT // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // 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)) : ''; } /** * @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: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.15; contract JPEGSByCosmic999 is ERC721A, DefaultOperatorFilterer, Ownable { string public baseURI = "ipfs://QmNbQ4Dq3wxqUMe6nX8qBtNTJeQpA3nj7EtyedhwKvUNCa"; string public baseExtension = ".json"; uint256 public price = 0.005 ether; uint256 public maxSupply = 999; uint256 public maxPerTransaction = 10; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor () ERC721A("999 JPEGS By Cosmic", "JPEGS") { } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // Mint function publicMint(uint256 amount) public payable callerIsUser{ require(amount <= maxPerTransaction, "Over Max Per Transaction!"); require(totalSupply() + amount <= maxSupply, "Sold Out!"); uint256 mintAmount = amount; if (totalSupply() % 2 != 0 ) { mintAmount--; } require(msg.value > 0 || mintAmount == 0, "Insufficient Value!"); if (msg.value >= price * mintAmount) { _safeMint(msg.sender, amount); } } ///////////////////////////// // CONTRACT MANAGEMENT ///////////////////////////// function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } ///////////////////////////// // OPENSEA FILTER REGISTRY ///////////////////////////// function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180606001604052806035815260200162003a4260359139600990816200002e9190620006c7565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9081620000759190620006c7565b506611c37937e08000600b556103e7600c55600a600d553480156200009957600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601381526020017f393939204a5045475320427920436f736d6963000000000000000000000000008152506040518060400160405280600581526020017f4a5045475300000000000000000000000000000000000000000000000000000081525081600290816200012e9190620006c7565b508060039081620001409190620006c7565b50620001516200037660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200034e57801562000214576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001da929190620007f3565b600060405180830381600087803b158015620001f557600080fd5b505af11580156200020a573d6000803e3d6000fd5b505050506200034d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ce576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000294929190620007f3565b600060405180830381600087803b158015620002af57600080fd5b505af1158015620002c4573d6000803e3d6000fd5b505050506200034c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000317919062000820565b600060405180830381600087803b1580156200033257600080fd5b505af115801562000347573d6000803e3d6000fd5b505050505b5b5b505062000370620003646200037f60201b60201c565b6200038760201b60201c565b6200083d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004cf57607f821691505b602082108103620004e557620004e462000487565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200054f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000510565b6200055b868362000510565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005a8620005a26200059c8462000573565b6200057d565b62000573565b9050919050565b6000819050919050565b620005c48362000587565b620005dc620005d382620005af565b8484546200051d565b825550505050565b600090565b620005f3620005e4565b62000600818484620005b9565b505050565b5b8181101562000628576200061c600082620005e9565b60018101905062000606565b5050565b601f82111562000677576200064181620004eb565b6200064c8462000500565b810160208510156200065c578190505b620006746200066b8562000500565b83018262000605565b50505b505050565b600082821c905092915050565b60006200069c600019846008026200067c565b1980831691505092915050565b6000620006b7838362000689565b9150826002028217905092915050565b620006d2826200044d565b67ffffffffffffffff811115620006ee57620006ed62000458565b5b620006fa8254620004b6565b620007078282856200062c565b600060209050601f8311600181146200073f57600084156200072a578287015190505b620007368582620006a9565b865550620007a6565b601f1984166200074f86620004eb565b60005b82811015620007795784890151825560018201915060208501945060208101905062000752565b8683101562000799578489015162000795601f89168262000689565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007db82620007ae565b9050919050565b620007ed81620007ce565b82525050565b60006040820190506200080a6000830185620007e2565b620008196020830184620007e2565b9392505050565b6000602082019050620008376000830184620007e2565b92915050565b6131f5806200084d6000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461054d578063d5abeb011461058a578063e985e9c5146105b5578063f2fde38b146105f25761019c565b8063a22cb465146104dd578063b88d4fde14610506578063c6682862146105225761019c565b80638da5cb5b116100c65780638da5cb5b1461043357806391b7f5ed1461045e57806395d89b4114610487578063a035b1fe146104b25761019c565b80636c0360eb146103b457806370a08231146103df578063715018a61461041c5761019c565b80632db115441161015957806342842e0e1161013357806342842e0e146103075780634b980d671461032357806355f804b31461034e5780636352211e146103775761019c565b80632db11544146102a95780633ccfd60b146102c557806341f43434146102dc5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806323b872dd1461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906122bc565b61061b565b6040516101d59190612304565b60405180910390f35b3480156101ea57600080fd5b506101f36106ad565b60405161020091906123af565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612407565b61073f565b60405161023d9190612475565b60405180910390f35b610260600480360381019061025b91906124bc565b6107be565b005b34801561026e57600080fd5b506102776108c8565b604051610284919061250b565b60405180910390f35b6102a760048036038101906102a29190612526565b6108df565b005b6102c360048036038101906102be9190612407565b610a2f565b005b3480156102d157600080fd5b506102da610bd9565b005b3480156102e857600080fd5b506102f1610c2a565b6040516102fe91906125d8565b60405180910390f35b610321600480360381019061031c9190612526565b610c3c565b005b34801561032f57600080fd5b50610338610d8c565b604051610345919061250b565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612728565b610d92565b005b34801561038357600080fd5b5061039e60048036038101906103999190612407565b610dad565b6040516103ab9190612475565b60405180910390f35b3480156103c057600080fd5b506103c9610dbf565b6040516103d691906123af565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190612771565b610e4d565b604051610413919061250b565b60405180910390f35b34801561042857600080fd5b50610431610f05565b005b34801561043f57600080fd5b50610448610f19565b6040516104559190612475565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612407565b610f43565b005b34801561049357600080fd5b5061049c610f55565b6040516104a991906123af565b60405180910390f35b3480156104be57600080fd5b506104c7610fe7565b6040516104d4919061250b565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906127ca565b610fed565b005b610520600480360381019061051b91906128ab565b6110f7565b005b34801561052e57600080fd5b5061053761124a565b60405161054491906123af565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612407565b6112d8565b60405161058191906123af565b60405180910390f35b34801561059657600080fd5b5061059f61136c565b6040516105ac919061250b565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d7919061292e565b611372565b6040516105e99190612304565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612771565b611406565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc9061299d565b80601f01602080910402602001604051908101604052809291908181526020018280546106e89061299d565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611489565b610780576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108b9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108369291906129ce565b602060405180830381865afa158015610853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108779190612a0c565b6108b857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108af9190612475565b60405180910390fd5b5b6108c383836114e8565b505050565b60006108d261162c565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a1d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109515761094c848484611635565b610a29565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161099a9291906129ce565b602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db9190612a0c565b610a1c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a139190612475565b60405180910390fd5b5b610a28848484611635565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490612a85565b60405180910390fd5b600d54811115610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612af1565b60405180910390fd5b600c5481610aee6108c8565b610af89190612b40565b1115610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612bc0565b60405180910390fd5b600081905060006002610b4a6108c8565b610b549190612c0f565b14610b68578080610b6490612c40565b9150505b6000341180610b775750600081145b610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90612cb5565b60405180910390fd5b80600b54610bc49190612cd5565b3410610bd557610bd43383611957565b5b5050565b610be1611975565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d7a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cae57610ca98484846119f3565b610d86565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cf79291906129ce565b602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612a0c565b610d7957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d709190612475565b60405180910390fd5b5b610d858484846119f3565b5b50505050565b600d5481565b610d9a611975565b8060099081610da99190612eb9565b5050565b6000610db882611a13565b9050919050565b60098054610dcc9061299d565b80601f0160208091040260200160405190810160405280929190818152602001828054610df89061299d565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d611975565b610f176000611adf565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f4b611975565b80600b8190555050565b606060038054610f649061299d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f909061299d565b8015610fdd5780601f10610fb257610100808354040283529160200191610fdd565b820191906000526020600020905b815481529060010190602001808311610fc057829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110e8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110659291906129ce565b602060405180830381865afa158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a69190612a0c565b6110e757806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110de9190612475565b60405180910390fd5b5b6110f28383611ba5565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611236573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361116a5761116585858585611cb0565b611243565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111b39291906129ce565b602060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612a0c565b61123557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161122c9190612475565b60405180910390fd5b5b61124285858585611cb0565b5b5050505050565b600a80546112579061299d565b80601f01602080910402602001604051908101604052809291908181526020018280546112839061299d565b80156112d05780601f106112a5576101008083540402835291602001916112d0565b820191906000526020600020905b8154815290600101906020018083116112b357829003601f168201915b505050505081565b60606112e382611489565b611319576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611323611d23565b905060008151036113435760405180602001604052806000815250611364565b806040516020016113549190612fc7565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61140e611975565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490613050565b60405180910390fd5b61148681611adf565b50565b60008161149461162c565b111580156114a3575060005482105b80156114e1575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f382610dad565b90508073ffffffffffffffffffffffffffffffffffffffff16611514611db5565b73ffffffffffffffffffffffffffffffffffffffff1614611577576115408161153b611db5565b611372565b611576576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061164082611a13565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116a7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116b384611dbd565b915091506116c981876116c4611db5565b611de4565b611715576116de866116d9611db5565b611372565b611714576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361177b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117888686866001611e28565b801561179357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118618561183d888887611e2e565b7c020000000000000000000000000000000000000000000000000000000017611e56565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118e757600060018501905060006004600083815260200190815260200160002054036118e55760005481146118e4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461194f8686866001611e81565b505050505050565b611971828260405180602001604052806000815250611e87565b5050565b61197d611f24565b73ffffffffffffffffffffffffffffffffffffffff1661199b610f19565b73ffffffffffffffffffffffffffffffffffffffff16146119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e8906130bc565b60405180910390fd5b565b611a0e838383604051806020016040528060008152506110f7565b505050565b60008082905080611a2261162c565b11611aa857600054811015611aa75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611aa5575b60008103611a9b576004600083600190039350838152602001908152602001600020549050611a71565b8092505050611ada565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611bb2611db5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5f611db5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ca49190612304565b60405180910390a35050565b611cbb8484846108df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d1d57611ce684848484611f2c565b611d1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611d329061299d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5e9061299d565b8015611dab5780601f10611d8057610100808354040283529160200191611dab565b820191906000526020600020905b815481529060010190602001808311611d8e57829003601f168201915b5050505050905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e4586868461207c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e918383612085565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f1f57600080549050600083820390505b611ed16000868380600101945086611f2c565b611f07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ebe578160005414611f1c57600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f52611db5565b8786866040518563ffffffff1660e01b8152600401611f749493929190613131565b6020604051808303816000875af1925050508015611fb057506040513d601f19601f82011682018060405250810190611fad9190613192565b60015b612029573d8060008114611fe0576040519150601f19603f3d011682016040523d82523d6000602084013e611fe5565b606091505b506000815103612021576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036120c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d26000848385611e28565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121498361213a6000866000611e2e565b61214385612240565b17611e56565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121ea57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121af565b5060008203612225576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061223b6000848385611e81565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61229981612264565b81146122a457600080fd5b50565b6000813590506122b681612290565b92915050565b6000602082840312156122d2576122d161225a565b5b60006122e0848285016122a7565b91505092915050565b60008115159050919050565b6122fe816122e9565b82525050565b600060208201905061231960008301846122f5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561235957808201518184015260208101905061233e565b60008484015250505050565b6000601f19601f8301169050919050565b60006123818261231f565b61238b818561232a565b935061239b81856020860161233b565b6123a481612365565b840191505092915050565b600060208201905081810360008301526123c98184612376565b905092915050565b6000819050919050565b6123e4816123d1565b81146123ef57600080fd5b50565b600081359050612401816123db565b92915050565b60006020828403121561241d5761241c61225a565b5b600061242b848285016123f2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061245f82612434565b9050919050565b61246f81612454565b82525050565b600060208201905061248a6000830184612466565b92915050565b61249981612454565b81146124a457600080fd5b50565b6000813590506124b681612490565b92915050565b600080604083850312156124d3576124d261225a565b5b60006124e1858286016124a7565b92505060206124f2858286016123f2565b9150509250929050565b612505816123d1565b82525050565b600060208201905061252060008301846124fc565b92915050565b60008060006060848603121561253f5761253e61225a565b5b600061254d868287016124a7565b935050602061255e868287016124a7565b925050604061256f868287016123f2565b9150509250925092565b6000819050919050565b600061259e61259961259484612434565b612579565b612434565b9050919050565b60006125b082612583565b9050919050565b60006125c2826125a5565b9050919050565b6125d2816125b7565b82525050565b60006020820190506125ed60008301846125c9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61263582612365565b810181811067ffffffffffffffff82111715612654576126536125fd565b5b80604052505050565b6000612667612250565b9050612673828261262c565b919050565b600067ffffffffffffffff821115612693576126926125fd565b5b61269c82612365565b9050602081019050919050565b82818337600083830152505050565b60006126cb6126c684612678565b61265d565b9050828152602081018484840111156126e7576126e66125f8565b5b6126f28482856126a9565b509392505050565b600082601f83011261270f5761270e6125f3565b5b813561271f8482602086016126b8565b91505092915050565b60006020828403121561273e5761273d61225a565b5b600082013567ffffffffffffffff81111561275c5761275b61225f565b5b612768848285016126fa565b91505092915050565b6000602082840312156127875761278661225a565b5b6000612795848285016124a7565b91505092915050565b6127a7816122e9565b81146127b257600080fd5b50565b6000813590506127c48161279e565b92915050565b600080604083850312156127e1576127e061225a565b5b60006127ef858286016124a7565b9250506020612800858286016127b5565b9150509250929050565b600067ffffffffffffffff821115612825576128246125fd565b5b61282e82612365565b9050602081019050919050565b600061284e6128498461280a565b61265d565b90508281526020810184848401111561286a576128696125f8565b5b6128758482856126a9565b509392505050565b600082601f830112612892576128916125f3565b5b81356128a284826020860161283b565b91505092915050565b600080600080608085870312156128c5576128c461225a565b5b60006128d3878288016124a7565b94505060206128e4878288016124a7565b93505060406128f5878288016123f2565b925050606085013567ffffffffffffffff8111156129165761291561225f565b5b6129228782880161287d565b91505092959194509250565b600080604083850312156129455761294461225a565b5b6000612953858286016124a7565b9250506020612964858286016124a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129b557607f821691505b6020821081036129c8576129c761296e565b5b50919050565b60006040820190506129e36000830185612466565b6129f06020830184612466565b9392505050565b600081519050612a068161279e565b92915050565b600060208284031215612a2257612a2161225a565b5b6000612a30848285016129f7565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612a6f601e8361232a565b9150612a7a82612a39565b602082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f4f766572204d617820506572205472616e73616374696f6e2100000000000000600082015250565b6000612adb60198361232a565b9150612ae682612aa5565b602082019050919050565b60006020820190508181036000830152612b0a81612ace565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b4b826123d1565b9150612b56836123d1565b9250828201905080821115612b6e57612b6d612b11565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612baa60098361232a565b9150612bb582612b74565b602082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1a826123d1565b9150612c25836123d1565b925082612c3557612c34612be0565b5b828206905092915050565b6000612c4b826123d1565b915060008203612c5e57612c5d612b11565b5b600182039050919050565b7f496e73756666696369656e742056616c75652100000000000000000000000000600082015250565b6000612c9f60138361232a565b9150612caa82612c69565b602082019050919050565b60006020820190508181036000830152612cce81612c92565b9050919050565b6000612ce0826123d1565b9150612ceb836123d1565b9250828202612cf9816123d1565b91508282048414831517612d1057612d0f612b11565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d3c565b612d838683612d3c565b95508019841693508086168417925050509392505050565b6000612db6612db1612dac846123d1565b612579565b6123d1565b9050919050565b6000819050919050565b612dd083612d9b565b612de4612ddc82612dbd565b848454612d49565b825550505050565b600090565b612df9612dec565b612e04818484612dc7565b505050565b5b81811015612e2857612e1d600082612df1565b600181019050612e0a565b5050565b601f821115612e6d57612e3e81612d17565b612e4784612d2c565b81016020851015612e56578190505b612e6a612e6285612d2c565b830182612e09565b50505b505050565b600082821c905092915050565b6000612e9060001984600802612e72565b1980831691505092915050565b6000612ea98383612e7f565b9150826002028217905092915050565b612ec28261231f565b67ffffffffffffffff811115612edb57612eda6125fd565b5b612ee5825461299d565b612ef0828285612e2c565b600060209050601f831160018114612f235760008415612f11578287015190505b612f1b8582612e9d565b865550612f83565b601f198416612f3186612d17565b60005b82811015612f5957848901518255600182019150602085019450602081019050612f34565b86831015612f765784890151612f72601f891682612e7f565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612fa18261231f565b612fab8185612f8b565b9350612fbb81856020860161233b565b80840191505092915050565b6000612fd38284612f96565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061303a60268361232a565b915061304582612fde565b604082019050919050565b600060208201905081810360008301526130698161302d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130a660208361232a565b91506130b182613070565b602082019050919050565b600060208201905081810360008301526130d581613099565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613103826130dc565b61310d81856130e7565b935061311d81856020860161233b565b61312681612365565b840191505092915050565b60006080820190506131466000830187612466565b6131536020830186612466565b61316060408301856124fc565b818103606083015261317281846130f8565b905095945050505050565b60008151905061318c81612290565b92915050565b6000602082840312156131a8576131a761225a565b5b60006131b68482850161317d565b9150509291505056fea264697066735822122051bf30f0e9e38483c28c6d19dfc22281445bad34ec6486a30da01af302fe0fda64736f6c63430008110033697066733a2f2f516d4e625134447133777871554d65366e58387142744e544a65517041336e6a37457479656468774b76554e4361
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461054d578063d5abeb011461058a578063e985e9c5146105b5578063f2fde38b146105f25761019c565b8063a22cb465146104dd578063b88d4fde14610506578063c6682862146105225761019c565b80638da5cb5b116100c65780638da5cb5b1461043357806391b7f5ed1461045e57806395d89b4114610487578063a035b1fe146104b25761019c565b80636c0360eb146103b457806370a08231146103df578063715018a61461041c5761019c565b80632db115441161015957806342842e0e1161013357806342842e0e146103075780634b980d671461032357806355f804b31461034e5780636352211e146103775761019c565b80632db11544146102a95780633ccfd60b146102c557806341f43434146102dc5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806323b872dd1461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906122bc565b61061b565b6040516101d59190612304565b60405180910390f35b3480156101ea57600080fd5b506101f36106ad565b60405161020091906123af565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612407565b61073f565b60405161023d9190612475565b60405180910390f35b610260600480360381019061025b91906124bc565b6107be565b005b34801561026e57600080fd5b506102776108c8565b604051610284919061250b565b60405180910390f35b6102a760048036038101906102a29190612526565b6108df565b005b6102c360048036038101906102be9190612407565b610a2f565b005b3480156102d157600080fd5b506102da610bd9565b005b3480156102e857600080fd5b506102f1610c2a565b6040516102fe91906125d8565b60405180910390f35b610321600480360381019061031c9190612526565b610c3c565b005b34801561032f57600080fd5b50610338610d8c565b604051610345919061250b565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612728565b610d92565b005b34801561038357600080fd5b5061039e60048036038101906103999190612407565b610dad565b6040516103ab9190612475565b60405180910390f35b3480156103c057600080fd5b506103c9610dbf565b6040516103d691906123af565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190612771565b610e4d565b604051610413919061250b565b60405180910390f35b34801561042857600080fd5b50610431610f05565b005b34801561043f57600080fd5b50610448610f19565b6040516104559190612475565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612407565b610f43565b005b34801561049357600080fd5b5061049c610f55565b6040516104a991906123af565b60405180910390f35b3480156104be57600080fd5b506104c7610fe7565b6040516104d4919061250b565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906127ca565b610fed565b005b610520600480360381019061051b91906128ab565b6110f7565b005b34801561052e57600080fd5b5061053761124a565b60405161054491906123af565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612407565b6112d8565b60405161058191906123af565b60405180910390f35b34801561059657600080fd5b5061059f61136c565b6040516105ac919061250b565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d7919061292e565b611372565b6040516105e99190612304565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612771565b611406565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc9061299d565b80601f01602080910402602001604051908101604052809291908181526020018280546106e89061299d565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611489565b610780576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108b9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108369291906129ce565b602060405180830381865afa158015610853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108779190612a0c565b6108b857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108af9190612475565b60405180910390fd5b5b6108c383836114e8565b505050565b60006108d261162c565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a1d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109515761094c848484611635565b610a29565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161099a9291906129ce565b602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db9190612a0c565b610a1c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a139190612475565b60405180910390fd5b5b610a28848484611635565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490612a85565b60405180910390fd5b600d54811115610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612af1565b60405180910390fd5b600c5481610aee6108c8565b610af89190612b40565b1115610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612bc0565b60405180910390fd5b600081905060006002610b4a6108c8565b610b549190612c0f565b14610b68578080610b6490612c40565b9150505b6000341180610b775750600081145b610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90612cb5565b60405180910390fd5b80600b54610bc49190612cd5565b3410610bd557610bd43383611957565b5b5050565b610be1611975565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d7a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cae57610ca98484846119f3565b610d86565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cf79291906129ce565b602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612a0c565b610d7957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d709190612475565b60405180910390fd5b5b610d858484846119f3565b5b50505050565b600d5481565b610d9a611975565b8060099081610da99190612eb9565b5050565b6000610db882611a13565b9050919050565b60098054610dcc9061299d565b80601f0160208091040260200160405190810160405280929190818152602001828054610df89061299d565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d611975565b610f176000611adf565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f4b611975565b80600b8190555050565b606060038054610f649061299d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f909061299d565b8015610fdd5780601f10610fb257610100808354040283529160200191610fdd565b820191906000526020600020905b815481529060010190602001808311610fc057829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110e8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110659291906129ce565b602060405180830381865afa158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a69190612a0c565b6110e757806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110de9190612475565b60405180910390fd5b5b6110f28383611ba5565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611236573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361116a5761116585858585611cb0565b611243565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111b39291906129ce565b602060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612a0c565b61123557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161122c9190612475565b60405180910390fd5b5b61124285858585611cb0565b5b5050505050565b600a80546112579061299d565b80601f01602080910402602001604051908101604052809291908181526020018280546112839061299d565b80156112d05780601f106112a5576101008083540402835291602001916112d0565b820191906000526020600020905b8154815290600101906020018083116112b357829003601f168201915b505050505081565b60606112e382611489565b611319576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611323611d23565b905060008151036113435760405180602001604052806000815250611364565b806040516020016113549190612fc7565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61140e611975565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490613050565b60405180910390fd5b61148681611adf565b50565b60008161149461162c565b111580156114a3575060005482105b80156114e1575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f382610dad565b90508073ffffffffffffffffffffffffffffffffffffffff16611514611db5565b73ffffffffffffffffffffffffffffffffffffffff1614611577576115408161153b611db5565b611372565b611576576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061164082611a13565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116a7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116b384611dbd565b915091506116c981876116c4611db5565b611de4565b611715576116de866116d9611db5565b611372565b611714576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361177b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117888686866001611e28565b801561179357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118618561183d888887611e2e565b7c020000000000000000000000000000000000000000000000000000000017611e56565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118e757600060018501905060006004600083815260200190815260200160002054036118e55760005481146118e4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461194f8686866001611e81565b505050505050565b611971828260405180602001604052806000815250611e87565b5050565b61197d611f24565b73ffffffffffffffffffffffffffffffffffffffff1661199b610f19565b73ffffffffffffffffffffffffffffffffffffffff16146119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e8906130bc565b60405180910390fd5b565b611a0e838383604051806020016040528060008152506110f7565b505050565b60008082905080611a2261162c565b11611aa857600054811015611aa75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611aa5575b60008103611a9b576004600083600190039350838152602001908152602001600020549050611a71565b8092505050611ada565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611bb2611db5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5f611db5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ca49190612304565b60405180910390a35050565b611cbb8484846108df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d1d57611ce684848484611f2c565b611d1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611d329061299d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5e9061299d565b8015611dab5780601f10611d8057610100808354040283529160200191611dab565b820191906000526020600020905b815481529060010190602001808311611d8e57829003601f168201915b5050505050905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e4586868461207c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e918383612085565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f1f57600080549050600083820390505b611ed16000868380600101945086611f2c565b611f07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ebe578160005414611f1c57600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f52611db5565b8786866040518563ffffffff1660e01b8152600401611f749493929190613131565b6020604051808303816000875af1925050508015611fb057506040513d601f19601f82011682018060405250810190611fad9190613192565b60015b612029573d8060008114611fe0576040519150601f19603f3d011682016040523d82523d6000602084013e611fe5565b606091505b506000815103612021576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036120c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d26000848385611e28565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121498361213a6000866000611e2e565b61214385612240565b17611e56565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121ea57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121af565b5060008203612225576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061223b6000848385611e81565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61229981612264565b81146122a457600080fd5b50565b6000813590506122b681612290565b92915050565b6000602082840312156122d2576122d161225a565b5b60006122e0848285016122a7565b91505092915050565b60008115159050919050565b6122fe816122e9565b82525050565b600060208201905061231960008301846122f5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561235957808201518184015260208101905061233e565b60008484015250505050565b6000601f19601f8301169050919050565b60006123818261231f565b61238b818561232a565b935061239b81856020860161233b565b6123a481612365565b840191505092915050565b600060208201905081810360008301526123c98184612376565b905092915050565b6000819050919050565b6123e4816123d1565b81146123ef57600080fd5b50565b600081359050612401816123db565b92915050565b60006020828403121561241d5761241c61225a565b5b600061242b848285016123f2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061245f82612434565b9050919050565b61246f81612454565b82525050565b600060208201905061248a6000830184612466565b92915050565b61249981612454565b81146124a457600080fd5b50565b6000813590506124b681612490565b92915050565b600080604083850312156124d3576124d261225a565b5b60006124e1858286016124a7565b92505060206124f2858286016123f2565b9150509250929050565b612505816123d1565b82525050565b600060208201905061252060008301846124fc565b92915050565b60008060006060848603121561253f5761253e61225a565b5b600061254d868287016124a7565b935050602061255e868287016124a7565b925050604061256f868287016123f2565b9150509250925092565b6000819050919050565b600061259e61259961259484612434565b612579565b612434565b9050919050565b60006125b082612583565b9050919050565b60006125c2826125a5565b9050919050565b6125d2816125b7565b82525050565b60006020820190506125ed60008301846125c9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61263582612365565b810181811067ffffffffffffffff82111715612654576126536125fd565b5b80604052505050565b6000612667612250565b9050612673828261262c565b919050565b600067ffffffffffffffff821115612693576126926125fd565b5b61269c82612365565b9050602081019050919050565b82818337600083830152505050565b60006126cb6126c684612678565b61265d565b9050828152602081018484840111156126e7576126e66125f8565b5b6126f28482856126a9565b509392505050565b600082601f83011261270f5761270e6125f3565b5b813561271f8482602086016126b8565b91505092915050565b60006020828403121561273e5761273d61225a565b5b600082013567ffffffffffffffff81111561275c5761275b61225f565b5b612768848285016126fa565b91505092915050565b6000602082840312156127875761278661225a565b5b6000612795848285016124a7565b91505092915050565b6127a7816122e9565b81146127b257600080fd5b50565b6000813590506127c48161279e565b92915050565b600080604083850312156127e1576127e061225a565b5b60006127ef858286016124a7565b9250506020612800858286016127b5565b9150509250929050565b600067ffffffffffffffff821115612825576128246125fd565b5b61282e82612365565b9050602081019050919050565b600061284e6128498461280a565b61265d565b90508281526020810184848401111561286a576128696125f8565b5b6128758482856126a9565b509392505050565b600082601f830112612892576128916125f3565b5b81356128a284826020860161283b565b91505092915050565b600080600080608085870312156128c5576128c461225a565b5b60006128d3878288016124a7565b94505060206128e4878288016124a7565b93505060406128f5878288016123f2565b925050606085013567ffffffffffffffff8111156129165761291561225f565b5b6129228782880161287d565b91505092959194509250565b600080604083850312156129455761294461225a565b5b6000612953858286016124a7565b9250506020612964858286016124a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129b557607f821691505b6020821081036129c8576129c761296e565b5b50919050565b60006040820190506129e36000830185612466565b6129f06020830184612466565b9392505050565b600081519050612a068161279e565b92915050565b600060208284031215612a2257612a2161225a565b5b6000612a30848285016129f7565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612a6f601e8361232a565b9150612a7a82612a39565b602082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f4f766572204d617820506572205472616e73616374696f6e2100000000000000600082015250565b6000612adb60198361232a565b9150612ae682612aa5565b602082019050919050565b60006020820190508181036000830152612b0a81612ace565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b4b826123d1565b9150612b56836123d1565b9250828201905080821115612b6e57612b6d612b11565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612baa60098361232a565b9150612bb582612b74565b602082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1a826123d1565b9150612c25836123d1565b925082612c3557612c34612be0565b5b828206905092915050565b6000612c4b826123d1565b915060008203612c5e57612c5d612b11565b5b600182039050919050565b7f496e73756666696369656e742056616c75652100000000000000000000000000600082015250565b6000612c9f60138361232a565b9150612caa82612c69565b602082019050919050565b60006020820190508181036000830152612cce81612c92565b9050919050565b6000612ce0826123d1565b9150612ceb836123d1565b9250828202612cf9816123d1565b91508282048414831517612d1057612d0f612b11565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d3c565b612d838683612d3c565b95508019841693508086168417925050509392505050565b6000612db6612db1612dac846123d1565b612579565b6123d1565b9050919050565b6000819050919050565b612dd083612d9b565b612de4612ddc82612dbd565b848454612d49565b825550505050565b600090565b612df9612dec565b612e04818484612dc7565b505050565b5b81811015612e2857612e1d600082612df1565b600181019050612e0a565b5050565b601f821115612e6d57612e3e81612d17565b612e4784612d2c565b81016020851015612e56578190505b612e6a612e6285612d2c565b830182612e09565b50505b505050565b600082821c905092915050565b6000612e9060001984600802612e72565b1980831691505092915050565b6000612ea98383612e7f565b9150826002028217905092915050565b612ec28261231f565b67ffffffffffffffff811115612edb57612eda6125fd565b5b612ee5825461299d565b612ef0828285612e2c565b600060209050601f831160018114612f235760008415612f11578287015190505b612f1b8582612e9d565b865550612f83565b601f198416612f3186612d17565b60005b82811015612f5957848901518255600182019150602085019450602081019050612f34565b86831015612f765784890151612f72601f891682612e7f565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612fa18261231f565b612fab8185612f8b565b9350612fbb81856020860161233b565b80840191505092915050565b6000612fd38284612f96565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061303a60268361232a565b915061304582612fde565b604082019050919050565b600060208201905081810360008301526130698161302d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130a660208361232a565b91506130b182613070565b602082019050919050565b600060208201905081810360008301526130d581613099565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613103826130dc565b61310d81856130e7565b935061311d81856020860161233b565b61312681612365565b840191505092915050565b60006080820190506131466000830187612466565b6131536020830186612466565b61316060408301856124fc565b818103606083015261317281846130f8565b905095945050505050565b60008151905061318c81612290565b92915050565b6000602082840312156131a8576131a761225a565b5b60006131b68482850161317d565b9150509291505056fea264697066735822122051bf30f0e9e38483c28c6d19dfc22281445bad34ec6486a30da01af302fe0fda64736f6c63430008110033
Deployed Bytecode Sourcemap
63994:2809:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24409:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25314:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31785:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66016:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21062:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66189:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64651:521;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65498:108;;;;;;;;;;;;;:::i;:::-;;3191:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66368:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64284:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65618:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26687:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64074:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22246:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63145:103;;;;;;;;;;;;;:::i;:::-;;62497:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65286:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25490:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64206:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65832:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66555:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64162:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25700:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64247:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32734:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63403:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24409:639;24494:4;24833:10;24818:25;;:11;:25;;;;:102;;;;24910:10;24895:25;;:11;:25;;;;24818:102;:179;;;;24987:10;24972:25;;:11;:25;;;;24818:179;24798:199;;24409:639;;;:::o;25314:100::-;25368:13;25401:5;25394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25314:100;:::o;31785:218::-;31861:7;31886:16;31894:7;31886;:16::i;:::-;31881:64;;31911:34;;;;;;;;;;;;;;31881:64;31965:15;:24;31981:7;31965:24;;;;;;;;;;;:30;;;;;;;;;;;;31958:37;;31785:218;;;:::o;66016:165::-;66120:8;5233:1;3291:42;5185:45;;;:49;5181:225;;;3291:42;5256;;;5307:4;5314:8;5256:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5251:144;;5370:8;5351:28;;;;;;;;;;;:::i;:::-;;;;;;;;5251:144;5181:225;66141:32:::1;66155:8;66165:7;66141:13;:32::i;:::-;66016:165:::0;;;:::o;21062:323::-;21123:7;21351:15;:13;:15::i;:::-;21336:12;;21320:13;;:28;:46;21313:53;;21062:323;:::o;66189:171::-;66298:4;4487:1;3291:42;4439:45;;;:49;4435:539;;;4728:10;4720:18;;:4;:18;;;4716:85;;66315:37:::1;66334:4;66340:2;66344:7;66315:18;:37::i;:::-;4779:7:::0;;4716:85;3291:42;4820;;;4871:4;4878:10;4820:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4815:148;;4936:10;4917:30;;;;;;;;;;;:::i;:::-;;;;;;;;4815:148;4435:539;66315:37:::1;66334:4;66340:2;66344:7;66315:18;:37::i;:::-;66189:171:::0;;;;;:::o;64651:521::-;64387:10;64374:23;;:9;:23;;;64366:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;64743:17:::1;;64733:6;:27;;64725:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64835:9;;64825:6;64809:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;64801:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;64869:18;64890:6;64869:27;;64942:1;64937;64921:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:22;64917:68;;64961:12;;;;;:::i;:::-;;;;64917:68;65017:1;65005:9;:13;:32;;;;65036:1;65022:10;:15;65005:32;64997:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;65097:10;65089:5;;:18;;;;:::i;:::-;65076:9;:31;65072:93;;65124:29;65134:10;65146:6;65124:9;:29::i;:::-;65072:93;64714:458;64651:521:::0;:::o;65498:108::-;62383:13;:11;:13::i;:::-;65548:10:::1;65540:28;;:51;65569:21;65540:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65498:108::o:0;3191:143::-;3291:42;3191:143;:::o;66368:179::-;66481:4;4487:1;3291:42;4439:45;;;:49;4435:539;;;4728:10;4720:18;;:4;:18;;;4716:85;;66498:41:::1;66521:4;66527:2;66531:7;66498:22;:41::i;:::-;4779:7:::0;;4716:85;3291:42;4820;;;4871:4;4878:10;4820:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4815:148;;4936:10;4917:30;;;;;;;;;;;:::i;:::-;;;;;;;;4815:148;4435:539;66498:41:::1;66521:4;66527:2;66531:7;66498:22;:41::i;:::-;66368:179:::0;;;;;:::o;64284:37::-;;;;:::o;65618:100::-;62383:13;:11;:13::i;:::-;65702:8:::1;65692:7;:18;;;;;;:::i;:::-;;65618:100:::0;:::o;26687:152::-;26759:7;26802:27;26821:7;26802:18;:27::i;:::-;26779:52;;26687:152;;;:::o;64074:79::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22246:233::-;22318:7;22359:1;22342:19;;:5;:19;;;22338:60;;22370:28;;;;;;;;;;;;;;22338:60;16405:13;22416:18;:25;22435:5;22416:25;;;;;;;;;;;;;;;;:55;22409:62;;22246:233;;;:::o;63145:103::-;62383:13;:11;:13::i;:::-;63210:30:::1;63237:1;63210:18;:30::i;:::-;63145:103::o:0;62497:87::-;62543:7;62570:6;;;;;;;;;;;62563:13;;62497:87;:::o;65286:88::-;62383:13;:11;:13::i;:::-;65358:8:::1;65350:5;:16;;;;65286:88:::0;:::o;25490:104::-;25546:13;25579:7;25572:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25490:104;:::o;64206:34::-;;;;:::o;65832:176::-;65936:8;5233:1;3291:42;5185:45;;;:49;5181:225;;;3291:42;5256;;;5307:4;5314:8;5256:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5251:144;;5370:8;5351:28;;;;;;;;;;;:::i;:::-;;;;;;;;5251:144;5181:225;65957:43:::1;65981:8;65991;65957:23;:43::i;:::-;65832:176:::0;;;:::o;66555:245::-;66723:4;4487:1;3291:42;4439:45;;;:49;4435:539;;;4728:10;4720:18;;:4;:18;;;4716:85;;66745:47:::1;66768:4;66774:2;66778:7;66787:4;66745:22;:47::i;:::-;4779:7:::0;;4716:85;3291:42;4820;;;4871:4;4878:10;4820:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4815:148;;4936:10;4917:30;;;;;;;;;;;:::i;:::-;;;;;;;;4815:148;4435:539;66745:47:::1;66768:4;66774:2;66778:7;66787:4;66745:22;:47::i;:::-;66555:245:::0;;;;;;:::o;64162:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25700:298::-;25773:13;25804:16;25812:7;25804;:16::i;:::-;25799:59;;25829:29;;;;;;;;;;;;;;25799:59;25871:21;25895:10;:8;:10::i;:::-;25871:34;;25948:1;25929:7;25923:21;:26;:67;;;;;;;;;;;;;;;;;25976:7;25959:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;25923:67;25916:74;;;25700:298;;;:::o;64247:30::-;;;;:::o;32734:164::-;32831:4;32855:18;:25;32874:5;32855:25;;;;;;;;;;;;;;;:35;32881:8;32855:35;;;;;;;;;;;;;;;;;;;;;;;;;32848:42;;32734:164;;;;:::o;63403:201::-;62383:13;:11;:13::i;:::-;63512:1:::1;63492:22;;:8;:22;;::::0;63484:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63568:28;63587:8;63568:18;:28::i;:::-;63403:201:::0;:::o;33156:282::-;33221:4;33277:7;33258:15;:13;:15::i;:::-;:26;;:66;;;;;33311:13;;33301:7;:23;33258:66;:153;;;;;33410:1;17181:8;33362:17;:26;33380:7;33362:26;;;;;;;;;;;;:44;:49;33258:153;33238:173;;33156:282;;;:::o;31218:408::-;31307:13;31323:16;31331:7;31323;:16::i;:::-;31307:32;;31379:5;31356:28;;:19;:17;:19::i;:::-;:28;;;31352:175;;31404:44;31421:5;31428:19;:17;:19::i;:::-;31404:16;:44::i;:::-;31399:128;;31476:35;;;;;;;;;;;;;;31399:128;31352:175;31572:2;31539:15;:24;31555:7;31539:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31610:7;31606:2;31590:28;;31599:5;31590:28;;;;;;;;;;;;31296:330;31218:408;;:::o;64529:101::-;64594:7;64621:1;64614:8;;64529:101;:::o;35424:2825::-;35566:27;35596;35615:7;35596:18;:27::i;:::-;35566:57;;35681:4;35640:45;;35656:19;35640:45;;;35636:86;;35694:28;;;;;;;;;;;;;;35636:86;35736:27;35765:23;35792:35;35819:7;35792:26;:35::i;:::-;35735:92;;;;35927:68;35952:15;35969:4;35975:19;:17;:19::i;:::-;35927:24;:68::i;:::-;35922:180;;36015:43;36032:4;36038:19;:17;:19::i;:::-;36015:16;:43::i;:::-;36010:92;;36067:35;;;;;;;;;;;;;;36010:92;35922:180;36133:1;36119:16;;:2;:16;;;36115:52;;36144:23;;;;;;;;;;;;;;36115:52;36180:43;36202:4;36208:2;36212:7;36221:1;36180:21;:43::i;:::-;36316:15;36313:160;;;36456:1;36435:19;36428:30;36313:160;36853:18;:24;36872:4;36853:24;;;;;;;;;;;;;;;;36851:26;;;;;;;;;;;;36922:18;:22;36941:2;36922:22;;;;;;;;;;;;;;;;36920:24;;;;;;;;;;;37244:146;37281:2;37330:45;37345:4;37351:2;37355:19;37330:14;:45::i;:::-;17461:8;37302:73;37244:18;:146::i;:::-;37215:17;:26;37233:7;37215:26;;;;;;;;;;;:175;;;;37561:1;17461:8;37510:19;:47;:52;37506:627;;37583:19;37615:1;37605:7;:11;37583:33;;37772:1;37738:17;:30;37756:11;37738:30;;;;;;;;;;;;:35;37734:384;;37876:13;;37861:11;:28;37857:242;;38056:19;38023:17;:30;38041:11;38023:30;;;;;;;;;;;:52;;;;37857:242;37734:384;37564:569;37506:627;38180:7;38176:2;38161:27;;38170:4;38161:27;;;;;;;;;;;;38199:42;38220:4;38226:2;38230:7;38239:1;38199:20;:42::i;:::-;35555:2694;;;35424:2825;;;:::o;49296:112::-;49373:27;49383:2;49387:8;49373:27;;;;;;;;;;;;:9;:27::i;:::-;49296:112;;:::o;62662:132::-;62737:12;:10;:12::i;:::-;62726:23;;:7;:5;:7::i;:::-;:23;;;62718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62662:132::o;38345:193::-;38491:39;38508:4;38514:2;38518:7;38491:39;;;;;;;;;;;;:16;:39::i;:::-;38345:193;;;:::o;27842:1275::-;27909:7;27929:12;27944:7;27929:22;;28012:4;27993:15;:13;:15::i;:::-;:23;27989:1061;;28046:13;;28039:4;:20;28035:1015;;;28084:14;28101:17;:23;28119:4;28101:23;;;;;;;;;;;;28084:40;;28218:1;17181:8;28190:6;:24;:29;28186:845;;28855:113;28872:1;28862:6;:11;28855:113;;28915:17;:25;28933:6;;;;;;;28915:25;;;;;;;;;;;;28906:34;;28855:113;;;29001:6;28994:13;;;;;;28186:845;28061:989;28035:1015;27989:1061;29078:31;;;;;;;;;;;;;;27842:1275;;;;:::o;63764:191::-;63838:16;63857:6;;;;;;;;;;;63838:25;;63883:8;63874:6;;:17;;;;;;;;;;;;;;;;;;63938:8;63907:40;;63928:8;63907:40;;;;;;;;;;;;63827:128;63764:191;:::o;32343:234::-;32490:8;32438:18;:39;32457:19;:17;:19::i;:::-;32438:39;;;;;;;;;;;;;;;:49;32478:8;32438:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32550:8;32514:55;;32529:19;:17;:19::i;:::-;32514:55;;;32560:8;32514:55;;;;;;:::i;:::-;;;;;;;;32343:234;;:::o;39136:407::-;39311:31;39324:4;39330:2;39334:7;39311:12;:31::i;:::-;39375:1;39357:2;:14;;;:19;39353:183;;39396:56;39427:4;39433:2;39437:7;39446:5;39396:30;:56::i;:::-;39391:145;;39480:40;;;;;;;;;;;;;;39391:145;39353:183;39136:407;;;;:::o;65382:108::-;65442:13;65475:7;65468:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65382:108;:::o;55464:105::-;55524:7;55551:10;55544:17;;55464:105;:::o;34319:485::-;34421:27;34450:23;34491:38;34532:15;:24;34548:7;34532:24;;;;;;;;;;;34491:65;;34709:18;34686:41;;34766:19;34760:26;34741:45;;34671:126;34319:485;;;:::o;33547:659::-;33696:11;33861:16;33854:5;33850:28;33841:37;;34021:16;34010:9;34006:32;33993:45;;34171:15;34160:9;34157:30;34149:5;34138:9;34135:20;34132:56;34122:66;;33547:659;;;;;:::o;40205:159::-;;;;;:::o;54773:311::-;54908:7;54928:16;17585:3;54954:19;:41;;54928:68;;17585:3;55022:31;55033:4;55039:2;55043:9;55022:10;:31::i;:::-;55014:40;;:62;;55007:69;;;54773:311;;;;;:::o;29665:450::-;29745:14;29913:16;29906:5;29902:28;29893:37;;30090:5;30076:11;30051:23;30047:41;30044:52;30037:5;30034:63;30024:73;;29665:450;;;;:::o;41029:158::-;;;;;:::o;48523:689::-;48654:19;48660:2;48664:8;48654:5;:19::i;:::-;48733:1;48715:2;:14;;;:19;48711:483;;48755:11;48769:13;;48755:27;;48801:13;48823:8;48817:3;:14;48801:30;;48850:233;48881:62;48920:1;48924:2;48928:7;;;;;;48937:5;48881:30;:62::i;:::-;48876:167;;48979:40;;;;;;;;;;;;;;48876:167;49078:3;49070:5;:11;48850:233;;49165:3;49148:13;;:20;49144:34;;49170:8;;;49144:34;48736:458;;48711:483;48523:689;;;:::o;61048:98::-;61101:7;61128:10;61121:17;;61048:98;:::o;41627:716::-;41790:4;41836:2;41811:45;;;41857:19;:17;:19::i;:::-;41878:4;41884:7;41893:5;41811:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41807:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42111:1;42094:6;:13;:18;42090:235;;42140:40;;;;;;;;;;;;;;42090:235;42283:6;42277:13;42268:6;42264:2;42260:15;42253:38;41807:529;41980:54;;;41970:64;;;:6;:64;;;;41963:71;;;41627:716;;;;;;:::o;54474:147::-;54611:6;54474:147;;;;;:::o;42805:2966::-;42878:20;42901:13;;42878:36;;42941:1;42929:8;:13;42925:44;;42951:18;;;;;;;;;;;;;;42925:44;42982:61;43012:1;43016:2;43020:12;43034:8;42982:21;:61::i;:::-;43526:1;16543:2;43496:1;:26;;43495:32;43483:8;:45;43457:18;:22;43476:2;43457:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43805:139;43842:2;43896:33;43919:1;43923:2;43927:1;43896:14;:33::i;:::-;43863:30;43884:8;43863:20;:30::i;:::-;:66;43805:18;:139::i;:::-;43771:17;:31;43789:12;43771:31;;;;;;;;;;;:173;;;;43961:16;43992:11;44021:8;44006:12;:23;43992:37;;44542:16;44538:2;44534:25;44522:37;;44914:12;44874:8;44833:1;44771:25;44712:1;44651;44624:335;45285:1;45271:12;45267:20;45225:346;45326:3;45317:7;45314:16;45225:346;;45544:7;45534:8;45531:1;45504:25;45501:1;45498;45493:59;45379:1;45370:7;45366:15;45355:26;;45225:346;;;45229:77;45616:1;45604:8;:13;45600:45;;45626:19;;;;;;;;;;;;;;45600:45;45678:3;45662:13;:19;;;;43231:2462;;45703:60;45732:1;45736:2;45740:12;45754:8;45703:20;:60::i;:::-;42867:2904;42805:2966;;:::o;30217:324::-;30287:14;30520:1;30510:8;30507:15;30481:24;30477:46;30467:56;;30217:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:332::-;13722:4;13760:2;13749:9;13745:18;13737:26;;13773:71;13841:1;13830:9;13826:17;13817:6;13773:71;:::i;:::-;13854:72;13922:2;13911:9;13907:18;13898:6;13854:72;:::i;:::-;13601:332;;;;;:::o;13939:137::-;13993:5;14024:6;14018:13;14009:22;;14040:30;14064:5;14040:30;:::i;:::-;13939:137;;;;:::o;14082:345::-;14149:6;14198:2;14186:9;14177:7;14173:23;14169:32;14166:119;;;14204:79;;:::i;:::-;14166:119;14324:1;14349:61;14402:7;14393:6;14382:9;14378:22;14349:61;:::i;:::-;14339:71;;14295:125;14082:345;;;;:::o;14433:180::-;14573:32;14569:1;14561:6;14557:14;14550:56;14433:180;:::o;14619:366::-;14761:3;14782:67;14846:2;14841:3;14782:67;:::i;:::-;14775:74;;14858:93;14947:3;14858:93;:::i;:::-;14976:2;14971:3;14967:12;14960:19;;14619:366;;;:::o;14991:419::-;15157:4;15195:2;15184:9;15180:18;15172:26;;15244:9;15238:4;15234:20;15230:1;15219:9;15215:17;15208:47;15272:131;15398:4;15272:131;:::i;:::-;15264:139;;14991:419;;;:::o;15416:175::-;15556:27;15552:1;15544:6;15540:14;15533:51;15416:175;:::o;15597:366::-;15739:3;15760:67;15824:2;15819:3;15760:67;:::i;:::-;15753:74;;15836:93;15925:3;15836:93;:::i;:::-;15954:2;15949:3;15945:12;15938:19;;15597:366;;;:::o;15969:419::-;16135:4;16173:2;16162:9;16158:18;16150:26;;16222:9;16216:4;16212:20;16208:1;16197:9;16193:17;16186:47;16250:131;16376:4;16250:131;:::i;:::-;16242:139;;15969:419;;;:::o;16394:180::-;16442:77;16439:1;16432:88;16539:4;16536:1;16529:15;16563:4;16560:1;16553:15;16580:191;16620:3;16639:20;16657:1;16639:20;:::i;:::-;16634:25;;16673:20;16691:1;16673:20;:::i;:::-;16668:25;;16716:1;16713;16709:9;16702:16;;16737:3;16734:1;16731:10;16728:36;;;16744:18;;:::i;:::-;16728:36;16580:191;;;;:::o;16777:159::-;16917:11;16913:1;16905:6;16901:14;16894:35;16777:159;:::o;16942:365::-;17084:3;17105:66;17169:1;17164:3;17105:66;:::i;:::-;17098:73;;17180:93;17269:3;17180:93;:::i;:::-;17298:2;17293:3;17289:12;17282:19;;16942:365;;;:::o;17313:419::-;17479:4;17517:2;17506:9;17502:18;17494:26;;17566:9;17560:4;17556:20;17552:1;17541:9;17537:17;17530:47;17594:131;17720:4;17594:131;:::i;:::-;17586:139;;17313:419;;;:::o;17738:180::-;17786:77;17783:1;17776:88;17883:4;17880:1;17873:15;17907:4;17904:1;17897:15;17924:176;17956:1;17973:20;17991:1;17973:20;:::i;:::-;17968:25;;18007:20;18025:1;18007:20;:::i;:::-;18002:25;;18046:1;18036:35;;18051:18;;:::i;:::-;18036:35;18092:1;18089;18085:9;18080:14;;17924:176;;;;:::o;18106:171::-;18145:3;18168:24;18186:5;18168:24;:::i;:::-;18159:33;;18214:4;18207:5;18204:15;18201:41;;18222:18;;:::i;:::-;18201:41;18269:1;18262:5;18258:13;18251:20;;18106:171;;;:::o;18283:169::-;18423:21;18419:1;18411:6;18407:14;18400:45;18283:169;:::o;18458:366::-;18600:3;18621:67;18685:2;18680:3;18621:67;:::i;:::-;18614:74;;18697:93;18786:3;18697:93;:::i;:::-;18815:2;18810:3;18806:12;18799:19;;18458:366;;;:::o;18830:419::-;18996:4;19034:2;19023:9;19019:18;19011:26;;19083:9;19077:4;19073:20;19069:1;19058:9;19054:17;19047:47;19111:131;19237:4;19111:131;:::i;:::-;19103:139;;18830:419;;;:::o;19255:410::-;19295:7;19318:20;19336:1;19318:20;:::i;:::-;19313:25;;19352:20;19370:1;19352:20;:::i;:::-;19347:25;;19407:1;19404;19400:9;19429:30;19447:11;19429:30;:::i;:::-;19418:41;;19608:1;19599:7;19595:15;19592:1;19589:22;19569:1;19562:9;19542:83;19519:139;;19638:18;;:::i;:::-;19519:139;19303:362;19255:410;;;;:::o;19671:141::-;19720:4;19743:3;19735:11;;19766:3;19763:1;19756:14;19800:4;19797:1;19787:18;19779:26;;19671:141;;;:::o;19818:93::-;19855:6;19902:2;19897;19890:5;19886:14;19882:23;19872:33;;19818:93;;;:::o;19917:107::-;19961:8;20011:5;20005:4;20001:16;19980:37;;19917:107;;;;:::o;20030:393::-;20099:6;20149:1;20137:10;20133:18;20172:97;20202:66;20191:9;20172:97;:::i;:::-;20290:39;20320:8;20309:9;20290:39;:::i;:::-;20278:51;;20362:4;20358:9;20351:5;20347:21;20338:30;;20411:4;20401:8;20397:19;20390:5;20387:30;20377:40;;20106:317;;20030:393;;;;;:::o;20429:142::-;20479:9;20512:53;20530:34;20539:24;20557:5;20539:24;:::i;:::-;20530:34;:::i;:::-;20512:53;:::i;:::-;20499:66;;20429:142;;;:::o;20577:75::-;20620:3;20641:5;20634:12;;20577:75;;;:::o;20658:269::-;20768:39;20799:7;20768:39;:::i;:::-;20829:91;20878:41;20902:16;20878:41;:::i;:::-;20870:6;20863:4;20857:11;20829:91;:::i;:::-;20823:4;20816:105;20734:193;20658:269;;;:::o;20933:73::-;20978:3;20933:73;:::o;21012:189::-;21089:32;;:::i;:::-;21130:65;21188:6;21180;21174:4;21130:65;:::i;:::-;21065:136;21012:189;;:::o;21207:186::-;21267:120;21284:3;21277:5;21274:14;21267:120;;;21338:39;21375:1;21368:5;21338:39;:::i;:::-;21311:1;21304:5;21300:13;21291:22;;21267:120;;;21207:186;;:::o;21399:543::-;21500:2;21495:3;21492:11;21489:446;;;21534:38;21566:5;21534:38;:::i;:::-;21618:29;21636:10;21618:29;:::i;:::-;21608:8;21604:44;21801:2;21789:10;21786:18;21783:49;;;21822:8;21807:23;;21783:49;21845:80;21901:22;21919:3;21901:22;:::i;:::-;21891:8;21887:37;21874:11;21845:80;:::i;:::-;21504:431;;21489:446;21399:543;;;:::o;21948:117::-;22002:8;22052:5;22046:4;22042:16;22021:37;;21948:117;;;;:::o;22071:169::-;22115:6;22148:51;22196:1;22192:6;22184:5;22181:1;22177:13;22148:51;:::i;:::-;22144:56;22229:4;22223;22219:15;22209:25;;22122:118;22071:169;;;;:::o;22245:295::-;22321:4;22467:29;22492:3;22486:4;22467:29;:::i;:::-;22459:37;;22529:3;22526:1;22522:11;22516:4;22513:21;22505:29;;22245:295;;;;:::o;22545:1395::-;22662:37;22695:3;22662:37;:::i;:::-;22764:18;22756:6;22753:30;22750:56;;;22786:18;;:::i;:::-;22750:56;22830:38;22862:4;22856:11;22830:38;:::i;:::-;22915:67;22975:6;22967;22961:4;22915:67;:::i;:::-;23009:1;23033:4;23020:17;;23065:2;23057:6;23054:14;23082:1;23077:618;;;;23739:1;23756:6;23753:77;;;23805:9;23800:3;23796:19;23790:26;23781:35;;23753:77;23856:67;23916:6;23909:5;23856:67;:::i;:::-;23850:4;23843:81;23712:222;23047:887;;23077:618;23129:4;23125:9;23117:6;23113:22;23163:37;23195:4;23163:37;:::i;:::-;23222:1;23236:208;23250:7;23247:1;23244:14;23236:208;;;23329:9;23324:3;23320:19;23314:26;23306:6;23299:42;23380:1;23372:6;23368:14;23358:24;;23427:2;23416:9;23412:18;23399:31;;23273:4;23270:1;23266:12;23261:17;;23236:208;;;23472:6;23463:7;23460:19;23457:179;;;23530:9;23525:3;23521:19;23515:26;23573:48;23615:4;23607:6;23603:17;23592:9;23573:48;:::i;:::-;23565:6;23558:64;23480:156;23457:179;23682:1;23678;23670:6;23666:14;23662:22;23656:4;23649:36;23084:611;;;23047:887;;22637:1303;;;22545:1395;;:::o;23946:148::-;24048:11;24085:3;24070:18;;23946:148;;;;:::o;24100:390::-;24206:3;24234:39;24267:5;24234:39;:::i;:::-;24289:89;24371:6;24366:3;24289:89;:::i;:::-;24282:96;;24387:65;24445:6;24440:3;24433:4;24426:5;24422:16;24387:65;:::i;:::-;24477:6;24472:3;24468:16;24461:23;;24210:280;24100:390;;;;:::o;24496:275::-;24628:3;24650:95;24741:3;24732:6;24650:95;:::i;:::-;24643:102;;24762:3;24755:10;;24496:275;;;;:::o;24777:225::-;24917:34;24913:1;24905:6;24901:14;24894:58;24986:8;24981:2;24973:6;24969:15;24962:33;24777:225;:::o;25008:366::-;25150:3;25171:67;25235:2;25230:3;25171:67;:::i;:::-;25164:74;;25247:93;25336:3;25247:93;:::i;:::-;25365:2;25360:3;25356:12;25349:19;;25008:366;;;:::o;25380:419::-;25546:4;25584:2;25573:9;25569:18;25561:26;;25633:9;25627:4;25623:20;25619:1;25608:9;25604:17;25597:47;25661:131;25787:4;25661:131;:::i;:::-;25653:139;;25380:419;;;:::o;25805:182::-;25945:34;25941:1;25933:6;25929:14;25922:58;25805:182;:::o;25993:366::-;26135:3;26156:67;26220:2;26215:3;26156:67;:::i;:::-;26149:74;;26232:93;26321:3;26232:93;:::i;:::-;26350:2;26345:3;26341:12;26334:19;;25993:366;;;:::o;26365:419::-;26531:4;26569:2;26558:9;26554:18;26546:26;;26618:9;26612:4;26608:20;26604:1;26593:9;26589:17;26582:47;26646:131;26772:4;26646:131;:::i;:::-;26638:139;;26365:419;;;:::o;26790:98::-;26841:6;26875:5;26869:12;26859:22;;26790:98;;;:::o;26894:168::-;26977:11;27011:6;27006:3;26999:19;27051:4;27046:3;27042:14;27027:29;;26894:168;;;;:::o;27068:373::-;27154:3;27182:38;27214:5;27182:38;:::i;:::-;27236:70;27299:6;27294:3;27236:70;:::i;:::-;27229:77;;27315:65;27373:6;27368:3;27361:4;27354:5;27350:16;27315:65;:::i;:::-;27405:29;27427:6;27405:29;:::i;:::-;27400:3;27396:39;27389:46;;27158:283;27068:373;;;;:::o;27447:640::-;27642:4;27680:3;27669:9;27665:19;27657:27;;27694:71;27762:1;27751:9;27747:17;27738:6;27694:71;:::i;:::-;27775:72;27843:2;27832:9;27828:18;27819:6;27775:72;:::i;:::-;27857;27925:2;27914:9;27910:18;27901:6;27857:72;:::i;:::-;27976:9;27970:4;27966:20;27961:2;27950:9;27946:18;27939:48;28004:76;28075:4;28066:6;28004:76;:::i;:::-;27996:84;;27447:640;;;;;;;:::o;28093:141::-;28149:5;28180:6;28174:13;28165:22;;28196:32;28222:5;28196:32;:::i;:::-;28093:141;;;;:::o;28240:349::-;28309:6;28358:2;28346:9;28337:7;28333:23;28329:32;28326:119;;;28364:79;;:::i;:::-;28326:119;28484:1;28509:63;28564:7;28555:6;28544:9;28540:22;28509:63;:::i;:::-;28499:73;;28455:127;28240:349;;;;:::o
Swarm Source
ipfs://51bf30f0e9e38483c28c6d19dfc22281445bad34ec6486a30da01af302fe0fda
Loading...
Loading
Loading...
Loading
[ 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.