Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
147 DEGEN
Holders
32
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 DEGENLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Degennpc
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-10 */ // File: contracts/OpenZeppelin_ERC721_-_2/contracts/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function 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: contracts/OpenZeppelin_ERC721_-_2/contracts/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 { // 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) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view 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: contracts/OpenZeppelin_ERC721_-_2/contracts/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: contracts/OpenZeppelin_ERC721_-_2/contracts/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: contracts/OpenZeppelin_ERC721_-_2/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 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: contracts/OpenZeppelin_ERC721_-_2/contracts/ERC721A.sol pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/OpenZeppelin_ERC721_-_2/contracts/degennpc.sol pragma solidity ^0.8.13; contract Degennpc is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer{ using Strings for uint256; uint256 public _maxSupply = 9999; uint256 public maxMintAmountPerWallet = 100; uint256 public maxMintAmountPerTx = 10; string baseURL = ""; string ExtensionURL = ".json"; uint256 _initalPrice = 0 ether; uint256 public costOfNFT = 0.00169 ether; uint256 public numberOfFreeNFTs = 1; string HiddenURL; bool revealed = false; bool paused = true; error ContractPaused(); error MaxMintWalletExceeded(); error MaxSupply(); error InvalidMintAmount(); error InsufficientFund(); error NoSmartContract(); error TokenNotExisting(); constructor(string memory _initBaseURI) ERC721A("Degennpc", "DEGEN") { baseURL = _initBaseURI; } // ================== Mint Function ======================= modifier mintCompliance(uint256 _mintAmount) { if (msg.sender != tx.origin) revert NoSmartContract(); if (totalSupply() + _mintAmount > _maxSupply) revert MaxSupply(); if (_mintAmount > maxMintAmountPerTx) revert InvalidMintAmount(); if(paused) revert ContractPaused(); _; } modifier mintPriceCompliance(uint256 _mintAmount) { if(balanceOf(msg.sender) + _mintAmount > maxMintAmountPerWallet) revert MaxMintWalletExceeded(); if (_mintAmount < 0 || _mintAmount > maxMintAmountPerWallet) revert InvalidMintAmount(); if (msg.value < checkCost(_mintAmount)) revert InsufficientFund(); _; } /// @notice compliance of minting /// @dev user (msg.sender) mint /// @param _mintAmount the amount of tokens to mint function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount){ _safeMint(msg.sender, _mintAmount); } /// @dev user (msg.sender) mint /// @param _mintAmount the amount of tokens to mint /// @return value from number to mint function checkCost(uint256 _mintAmount) public view returns (uint256) { uint256 totalMints = _mintAmount + balanceOf(msg.sender); if ((totalMints <= numberOfFreeNFTs) ) { return _initalPrice; } else if ((balanceOf(msg.sender) == 0) && (totalMints > numberOfFreeNFTs) ) { uint256 total = costOfNFT * (_mintAmount - numberOfFreeNFTs); return total; } else { uint256 total2 = costOfNFT * _mintAmount; return total2; } } /// @notice airdrop function to airdrop same amount of tokens to addresses /// @dev only owner function /// @param accounts array of addresses /// @param amount the amount of tokens to airdrop users function airdrop(address[] memory accounts, uint256 amount)public onlyOwner mintCompliance(amount) { for(uint256 i = 0; i < accounts.length; i++){ _safeMint(accounts[i], amount); } } // =================== Orange Functions (Owner Only) =============== /// @dev pause/unpause minting function pause() public onlyOwner { paused = !paused; } /// @dev set URI /// @param uri new URI function setbaseURL(string memory uri) public onlyOwner{ baseURL = uri; } /// @dev extension URI like 'json' function setExtensionURL(string memory uri) public onlyOwner{ ExtensionURL = uri; } /// @dev set new cost of tokenId in WEI /// @param _cost new price in wei function setCostPrice(uint256 _cost) public onlyOwner{ costOfNFT = _cost; } /// @dev only owner /// @param perTx new max mint per transaction function setMaxMintAmountPerTx(uint256 perTx) public onlyOwner{ maxMintAmountPerTx = perTx; } /// @dev only owner /// @param perWallet new max mint per wallet function setMaxMintAmountPerWallet(uint256 perWallet) public onlyOwner{ maxMintAmountPerWallet = perWallet; } /// @dev only owner /// @param perWallet set free number of nft per wallet function setnumberOfFreeNFTs(uint256 perWallet) public onlyOwner{ numberOfFreeNFTs = perWallet; } // ================================ Withdraw Function ==================== /// @notice withdraw ether from contract. /// @dev only owner function function withdraw() public onlyOwner nonReentrant{ (bool owner, ) = payable(owner()).call{value: address(this).balance}(''); require(owner); } // =================== Blue Functions (View Only) ==================== /// @dev return uri of token ID /// @param tokenId token ID to find uri for ///@return value for 'tokenId uri' function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { if (!_exists(tokenId)) revert TokenNotExisting(); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ''; } /// @dev tokenId to start (1) function _startTokenId() internal view virtual override returns (uint256) { return 1; } ///@dev maxSupply of token /// @return max supply function _baseURI() internal view virtual override returns (string memory) { return baseURL; } /// @dev internal function to /// @param from user address where token belongs /// @param to user address /// @param tokenId number of tokenId function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } /// @dev internal function to /// @param from user address where token belongs /// @param to user address /// @param tokenId number of tokenId function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } /// @dev internal function to /// @param from user address where token belongs /// @param to user address /// @param tokenId number of 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
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"InsufficientFund","type":"error"},{"inputs":[],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"MaxMintWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoSmartContract","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":"TokenNotExisting","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":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costOfNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfFreeNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setnumberOfFreeNFTs","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
608060405261270f600a556064600b55600a600c5560405180602001604052806000815250600d90805190602001906200003b929190620004eb565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908051906020019062000089929190620004eb565b506000600f556606010bc9aba00060105560016011556000601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff021916908315150217905550348015620000e257600080fd5b5060405162003bb638038062003bb6833981810160405281019062000108919062000738565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f446567656e6e70630000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f444547454e0000000000000000000000000000000000000000000000000000008152508160029080519060200190620001a3929190620004eb565b508060039080519060200190620001bc929190620004eb565b50620001cd6200041460201b60201c565b6000819055505050620001f5620001e96200041d60201b60201c565b6200042560201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003f2578015620002b8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200027e929190620007ce565b600060405180830381600087803b1580156200029957600080fd5b505af1158015620002ae573d6000803e3d6000fd5b50505050620003f1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000372576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000338929190620007ce565b600060405180830381600087803b1580156200035357600080fd5b505af115801562000368573d6000803e3d6000fd5b50505050620003f0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003bb9190620007fb565b600060405180830381600087803b158015620003d657600080fd5b505af1158015620003eb573d6000803e3d6000fd5b505050505b5b5b505080600d90805190602001906200040c929190620004eb565b50506200087c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004f99062000847565b90600052602060002090601f0160209004810192826200051d576000855562000569565b82601f106200053857805160ff191683800117855562000569565b8280016001018555821562000569579182015b82811115620005685782518255916020019190600101906200054b565b5b5090506200057891906200057c565b5090565b5b80821115620005975760008160009055506001016200057d565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200060482620005b9565b810181811067ffffffffffffffff82111715620006265762000625620005ca565b5b80604052505050565b60006200063b6200059b565b9050620006498282620005f9565b919050565b600067ffffffffffffffff8211156200066c576200066b620005ca565b5b6200067782620005b9565b9050602081019050919050565b60005b83811015620006a457808201518184015260208101905062000687565b83811115620006b4576000848401525b50505050565b6000620006d1620006cb846200064e565b6200062f565b905082815260208101848484011115620006f057620006ef620005b4565b5b620006fd84828562000684565b509392505050565b600082601f8301126200071d576200071c620005af565b5b81516200072f848260208601620006ba565b91505092915050565b600060208284031215620007515762000750620005a5565b5b600082015167ffffffffffffffff811115620007725762000771620005aa565b5b620007808482850162000705565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007b68262000789565b9050919050565b620007c881620007a9565b82525050565b6000604082019050620007e56000830185620007bd565b620007f46020830184620007bd565b9392505050565b6000602082019050620008126000830184620007bd565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086057607f821691505b60208210810362000876576200087562000818565b5b50919050565b61332a806200088c6000396000f3fe6080604052600436106101f95760003560e01c8063766b7d091161010d578063b071401b116100a0578063c204642c1161006f578063c204642c146106a2578063c87b56dd146106cb578063e098ff7314610708578063e985e9c514610733578063f2fde38b14610770576101f9565b8063b071401b14610607578063b0fe641414610630578063b88d4fde1461065b578063bc951b9114610677576101f9565b806394354fd0116100dc57806394354fd01461056c57806395d89b4114610597578063a0712d68146105c2578063a22cb465146105de576101f9565b8063766b7d09146104d85780638456cb59146105015780638da5cb5b1461051857806393e90b2314610543576101f9565b80633ccfd60b11610190578063626ab3b81161015f578063626ab3b8146103f55780636352211e1461041e578063676f26021461045b57806370a0823114610484578063715018a6146104c1576101f9565b80633ccfd60b1461036e57806341f434341461038557806342842e0e146103b05780634d534a7d146103cc576101f9565b806311b4a832116101cc57806311b4a832146102bf57806318160ddd146102fc57806322f4596f1461032757806323b872dd14610352576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061259e565b610799565b60405161023291906125e6565b60405180910390f35b34801561024757600080fd5b5061025061082b565b60405161025d919061269a565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906126f2565b6108bd565b60405161029a9190612760565b60405180910390f35b6102bd60048036038101906102b891906127a7565b61093c565b005b3480156102cb57600080fd5b506102e660048036038101906102e191906126f2565b610a80565b6040516102f391906127f6565b60405180910390f35b34801561030857600080fd5b50610311610b11565b60405161031e91906127f6565b60405180910390f35b34801561033357600080fd5b5061033c610b28565b60405161034991906127f6565b60405180910390f35b61036c60048036038101906103679190612811565b610b2e565b005b34801561037a57600080fd5b50610383610b7d565b005b34801561039157600080fd5b5061039a610c15565b6040516103a791906128c3565b60405180910390f35b6103ca60048036038101906103c59190612811565b610c27565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612a13565b610c76565b005b34801561040157600080fd5b5061041c60048036038101906104179190612a13565b610c98565b005b34801561042a57600080fd5b50610445600480360381019061044091906126f2565b610cba565b6040516104529190612760565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d91906126f2565b610ccc565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612a5c565b610cde565b6040516104b891906127f6565b60405180910390f35b3480156104cd57600080fd5b506104d6610d96565b005b3480156104e457600080fd5b506104ff60048036038101906104fa91906126f2565b610daa565b005b34801561050d57600080fd5b50610516610dbc565b005b34801561052457600080fd5b5061052d610df0565b60405161053a9190612760565b60405180910390f35b34801561054f57600080fd5b5061056a600480360381019061056591906126f2565b610e1a565b005b34801561057857600080fd5b50610581610e2c565b60405161058e91906127f6565b60405180910390f35b3480156105a357600080fd5b506105ac610e32565b6040516105b9919061269a565b60405180910390f35b6105dc60048036038101906105d791906126f2565b610ec4565b005b3480156105ea57600080fd5b5061060560048036038101906106009190612ab5565b6110e3565b005b34801561061357600080fd5b5061062e600480360381019061062991906126f2565b6111ee565b005b34801561063c57600080fd5b50610645611200565b60405161065291906127f6565b60405180910390f35b61067560048036038101906106709190612b96565b611206565b005b34801561068357600080fd5b5061068c611257565b60405161069991906127f6565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190612ce1565b61125d565b005b3480156106d757600080fd5b506106f260048036038101906106ed91906126f2565b6113e5565b6040516106ff919061269a565b60405180910390f35b34801561071457600080fd5b5061071d611483565b60405161072a91906127f6565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612d3d565b611489565b60405161076791906125e6565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612a5c565b61151d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083a90612dac565b80601f016020809104026020016040519081016040528092919081815260200182805461086690612dac565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c8826115a0565b6108fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782610cba565b90508073ffffffffffffffffffffffffffffffffffffffff166109686115ff565b73ffffffffffffffffffffffffffffffffffffffff16146109cb576109948161098f6115ff565b611489565b6109ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610a8c33610cde565b83610a979190612e0c565b90506011548111610aad57600f54915050610b0c565b6000610ab833610cde565b148015610ac6575060115481115b15610af457600060115484610adb9190612e62565b601054610ae89190612e96565b90508092505050610b0c565b600083601054610b049190612e96565b905080925050505b919050565b6000610b1b611607565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6c57610b6b33611610565b5b610b7784848461170d565b50505050565b610b85611a2f565b610b8d611aad565b6000610b97610df0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bba90612f21565b60006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c0a57600080fd5b50610c13611afc565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6557610c6433611610565b5b610c70848484611b06565b50505050565b610c7e611a2f565b80600e9080519060200190610c9492919061248f565b5050565b610ca0611a2f565b80600d9080519060200190610cb692919061248f565b5050565b6000610cc582611b26565b9050919050565b610cd4611a2f565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d45576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d9e611a2f565b610da86000611bf2565b565b610db2611a2f565b80600b8190555050565b610dc4611a2f565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e22611a2f565b8060118190555050565b600c5481565b606060038054610e4190612dac565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6d90612dac565b8015610eba5780601f10610e8f57610100808354040283529160200191610eba565b820191906000526020600020905b815481529060010190602001808311610e9d57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610f36610b11565b610f409190612e0c565b1115610f78576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610fb4576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615610ffb576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b548161100933610cde565b6110139190612e0c565b111561104b576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081108061105b5750600b5481115b15611092576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109b81610a80565b3410156110d4576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110de3384611cb8565b505050565b80600760006110f06115ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119d6115ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111e291906125e6565b60405180910390a35050565b6111f6611a2f565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112445761124333611610565b5b61125085858585611cd6565b5050505050565b600b5481565b611265611a2f565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816112d7610b11565b6112e19190612e0c565b1115611319576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611355576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff161561139c576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156113df576113cc8482815181106113be576113bd612f36565b5b602002602001015184611cb8565b80806113d790612f65565b91505061139f565b50505050565b60606113f0826115a0565b611426576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611430611d49565b90506000815111611450576040518060200160405280600081525061147b565b8061145a84611ddb565b60405160200161146b929190612fe9565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611525611a2f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b9061307f565b60405180910390fd5b61159d81611bf2565b50565b6000816115ab611607565b111580156115ba575060005482105b80156115f8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561170a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161168792919061309f565b602060405180830381865afa1580156116a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c891906130dd565b61170957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117009190612760565b60405180910390fd5b5b50565b600061171882611b26565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461177f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061178b84611ea9565b915091506117a1818761179c6115ff565b611ed0565b6117ed576117b6866117b16115ff565b611489565b6117ec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611853576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118608686866001611f14565b801561186b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061193985611915888887611f1a565b7c020000000000000000000000000000000000000000000000000000000017611f42565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119bf57600060018501905060006004600083815260200190815260200160002054036119bd5760005481146119bc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a278686866001611f6d565b505050505050565b611a37611f73565b73ffffffffffffffffffffffffffffffffffffffff16611a55610df0565b73ffffffffffffffffffffffffffffffffffffffff1614611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613156565b60405180910390fd5b565b600260095403611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906131c2565b60405180910390fd5b6002600981905550565b6001600981905550565b611b2183838360405180602001604052806000815250611206565b505050565b60008082905080611b35611607565b11611bbb57600054811015611bba5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bb8575b60008103611bae576004600083600190039350838152602001908152602001600020549050611b84565b8092505050611bed565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cd2828260405180602001604052806000815250611f7b565b5050565b611ce1848484610b2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d4357611d0c84848484612018565b611d42576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611d5890612dac565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8490612dac565b8015611dd15780601f10611da657610100808354040283529160200191611dd1565b820191906000526020600020905b815481529060010190602001808311611db457829003601f168201915b5050505050905090565b606060006001611dea84612168565b01905060008167ffffffffffffffff811115611e0957611e086128e8565b5b6040519080825280601f01601f191660200182016040528015611e3b5781602001600182028036833780820191505090505b509050600082602001820190505b600115611e9e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e9257611e916131e2565b5b04945060008503611e49575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f318686846122bb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611f8583836122c4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461201357600080549050600083820390505b611fc56000868380600101945086612018565b611ffb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fb257816000541461201057600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261203e6115ff565b8786866040518563ffffffff1660e01b81526004016120609493929190613266565b6020604051808303816000875af192505050801561209c57506040513d601f19601f8201168201806040525081019061209991906132c7565b60015b612115573d80600081146120cc576040519150601f19603f3d011682016040523d82523d6000602084013e6120d1565b606091505b50600081510361210d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106121c6577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121bc576121bb6131e2565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612203576d04ee2d6d415b85acef810000000083816121f9576121f86131e2565b5b0492506020810190505b662386f26fc10000831061223257662386f26fc100008381612228576122276131e2565b5b0492506010810190505b6305f5e100831061225b576305f5e1008381612251576122506131e2565b5b0492506008810190505b6127108310612280576127108381612276576122756131e2565b5b0492506004810190505b606483106122a35760648381612299576122986131e2565b5b0492506002810190505b600a83106122b2576001810190505b80915050919050565b60009392505050565b60008054905060008203612304576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123116000848385611f14565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612388836123796000866000611f1a565b6123828561247f565b17611f42565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461242957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123ee565b5060008203612464576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061247a6000848385611f6d565b505050565b60006001821460e11b9050919050565b82805461249b90612dac565b90600052602060002090601f0160209004810192826124bd5760008555612504565b82601f106124d657805160ff1916838001178555612504565b82800160010185558215612504579182015b828111156125035782518255916020019190600101906124e8565b5b5090506125119190612515565b5090565b5b8082111561252e576000816000905550600101612516565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257b81612546565b811461258657600080fd5b50565b60008135905061259881612572565b92915050565b6000602082840312156125b4576125b361253c565b5b60006125c284828501612589565b91505092915050565b60008115159050919050565b6125e0816125cb565b82525050565b60006020820190506125fb60008301846125d7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263b578082015181840152602081019050612620565b8381111561264a576000848401525b50505050565b6000601f19601f8301169050919050565b600061266c82612601565b612676818561260c565b935061268681856020860161261d565b61268f81612650565b840191505092915050565b600060208201905081810360008301526126b48184612661565b905092915050565b6000819050919050565b6126cf816126bc565b81146126da57600080fd5b50565b6000813590506126ec816126c6565b92915050565b6000602082840312156127085761270761253c565b5b6000612716848285016126dd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061274a8261271f565b9050919050565b61275a8161273f565b82525050565b60006020820190506127756000830184612751565b92915050565b6127848161273f565b811461278f57600080fd5b50565b6000813590506127a18161277b565b92915050565b600080604083850312156127be576127bd61253c565b5b60006127cc85828601612792565b92505060206127dd858286016126dd565b9150509250929050565b6127f0816126bc565b82525050565b600060208201905061280b60008301846127e7565b92915050565b60008060006060848603121561282a5761282961253c565b5b600061283886828701612792565b935050602061284986828701612792565b925050604061285a868287016126dd565b9150509250925092565b6000819050919050565b600061288961288461287f8461271f565b612864565b61271f565b9050919050565b600061289b8261286e565b9050919050565b60006128ad82612890565b9050919050565b6128bd816128a2565b82525050565b60006020820190506128d860008301846128b4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61292082612650565b810181811067ffffffffffffffff8211171561293f5761293e6128e8565b5b80604052505050565b6000612952612532565b905061295e8282612917565b919050565b600067ffffffffffffffff82111561297e5761297d6128e8565b5b61298782612650565b9050602081019050919050565b82818337600083830152505050565b60006129b66129b184612963565b612948565b9050828152602081018484840111156129d2576129d16128e3565b5b6129dd848285612994565b509392505050565b600082601f8301126129fa576129f96128de565b5b8135612a0a8482602086016129a3565b91505092915050565b600060208284031215612a2957612a2861253c565b5b600082013567ffffffffffffffff811115612a4757612a46612541565b5b612a53848285016129e5565b91505092915050565b600060208284031215612a7257612a7161253c565b5b6000612a8084828501612792565b91505092915050565b612a92816125cb565b8114612a9d57600080fd5b50565b600081359050612aaf81612a89565b92915050565b60008060408385031215612acc57612acb61253c565b5b6000612ada85828601612792565b9250506020612aeb85828601612aa0565b9150509250929050565b600067ffffffffffffffff821115612b1057612b0f6128e8565b5b612b1982612650565b9050602081019050919050565b6000612b39612b3484612af5565b612948565b905082815260208101848484011115612b5557612b546128e3565b5b612b60848285612994565b509392505050565b600082601f830112612b7d57612b7c6128de565b5b8135612b8d848260208601612b26565b91505092915050565b60008060008060808587031215612bb057612baf61253c565b5b6000612bbe87828801612792565b9450506020612bcf87828801612792565b9350506040612be0878288016126dd565b925050606085013567ffffffffffffffff811115612c0157612c00612541565b5b612c0d87828801612b68565b91505092959194509250565b600067ffffffffffffffff821115612c3457612c336128e8565b5b602082029050602081019050919050565b600080fd5b6000612c5d612c5884612c19565b612948565b90508083825260208201905060208402830185811115612c8057612c7f612c45565b5b835b81811015612ca95780612c958882612792565b845260208401935050602081019050612c82565b5050509392505050565b600082601f830112612cc857612cc76128de565b5b8135612cd8848260208601612c4a565b91505092915050565b60008060408385031215612cf857612cf761253c565b5b600083013567ffffffffffffffff811115612d1657612d15612541565b5b612d2285828601612cb3565b9250506020612d33858286016126dd565b9150509250929050565b60008060408385031215612d5457612d5361253c565b5b6000612d6285828601612792565b9250506020612d7385828601612792565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc457607f821691505b602082108103612dd757612dd6612d7d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e17826126bc565b9150612e22836126bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e5757612e56612ddd565b5b828201905092915050565b6000612e6d826126bc565b9150612e78836126bc565b925082821015612e8b57612e8a612ddd565b5b828203905092915050565b6000612ea1826126bc565b9150612eac836126bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee557612ee4612ddd565b5b828202905092915050565b600081905092915050565b50565b6000612f0b600083612ef0565b9150612f1682612efb565b600082019050919050565b6000612f2c82612efe565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f70826126bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fa257612fa1612ddd565b5b600182019050919050565b600081905092915050565b6000612fc382612601565b612fcd8185612fad565b9350612fdd81856020860161261d565b80840191505092915050565b6000612ff58285612fb8565b91506130018284612fb8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061306960268361260c565b91506130748261300d565b604082019050919050565b600060208201905081810360008301526130988161305c565b9050919050565b60006040820190506130b46000830185612751565b6130c16020830184612751565b9392505050565b6000815190506130d781612a89565b92915050565b6000602082840312156130f3576130f261253c565b5b6000613101848285016130c8565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061314060208361260c565b915061314b8261310a565b602082019050919050565b6000602082019050818103600083015261316f81613133565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131ac601f8361260c565b91506131b782613176565b602082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061323882613211565b613242818561321c565b935061325281856020860161261d565b61325b81612650565b840191505092915050565b600060808201905061327b6000830187612751565b6132886020830186612751565b61329560408301856127e7565b81810360608301526132a7818461322d565b905095945050505050565b6000815190506132c181612572565b92915050565b6000602082840312156132dd576132dc61253c565b5b60006132eb848285016132b2565b9150509291505056fea264697066735822122026a6def96302fa77d90f6ad2ca1e73ddf78d48838293e1c7743ca586aeed7f7e64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063766b7d091161010d578063b071401b116100a0578063c204642c1161006f578063c204642c146106a2578063c87b56dd146106cb578063e098ff7314610708578063e985e9c514610733578063f2fde38b14610770576101f9565b8063b071401b14610607578063b0fe641414610630578063b88d4fde1461065b578063bc951b9114610677576101f9565b806394354fd0116100dc57806394354fd01461056c57806395d89b4114610597578063a0712d68146105c2578063a22cb465146105de576101f9565b8063766b7d09146104d85780638456cb59146105015780638da5cb5b1461051857806393e90b2314610543576101f9565b80633ccfd60b11610190578063626ab3b81161015f578063626ab3b8146103f55780636352211e1461041e578063676f26021461045b57806370a0823114610484578063715018a6146104c1576101f9565b80633ccfd60b1461036e57806341f434341461038557806342842e0e146103b05780634d534a7d146103cc576101f9565b806311b4a832116101cc57806311b4a832146102bf57806318160ddd146102fc57806322f4596f1461032757806323b872dd14610352576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061259e565b610799565b60405161023291906125e6565b60405180910390f35b34801561024757600080fd5b5061025061082b565b60405161025d919061269a565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906126f2565b6108bd565b60405161029a9190612760565b60405180910390f35b6102bd60048036038101906102b891906127a7565b61093c565b005b3480156102cb57600080fd5b506102e660048036038101906102e191906126f2565b610a80565b6040516102f391906127f6565b60405180910390f35b34801561030857600080fd5b50610311610b11565b60405161031e91906127f6565b60405180910390f35b34801561033357600080fd5b5061033c610b28565b60405161034991906127f6565b60405180910390f35b61036c60048036038101906103679190612811565b610b2e565b005b34801561037a57600080fd5b50610383610b7d565b005b34801561039157600080fd5b5061039a610c15565b6040516103a791906128c3565b60405180910390f35b6103ca60048036038101906103c59190612811565b610c27565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612a13565b610c76565b005b34801561040157600080fd5b5061041c60048036038101906104179190612a13565b610c98565b005b34801561042a57600080fd5b50610445600480360381019061044091906126f2565b610cba565b6040516104529190612760565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d91906126f2565b610ccc565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612a5c565b610cde565b6040516104b891906127f6565b60405180910390f35b3480156104cd57600080fd5b506104d6610d96565b005b3480156104e457600080fd5b506104ff60048036038101906104fa91906126f2565b610daa565b005b34801561050d57600080fd5b50610516610dbc565b005b34801561052457600080fd5b5061052d610df0565b60405161053a9190612760565b60405180910390f35b34801561054f57600080fd5b5061056a600480360381019061056591906126f2565b610e1a565b005b34801561057857600080fd5b50610581610e2c565b60405161058e91906127f6565b60405180910390f35b3480156105a357600080fd5b506105ac610e32565b6040516105b9919061269a565b60405180910390f35b6105dc60048036038101906105d791906126f2565b610ec4565b005b3480156105ea57600080fd5b5061060560048036038101906106009190612ab5565b6110e3565b005b34801561061357600080fd5b5061062e600480360381019061062991906126f2565b6111ee565b005b34801561063c57600080fd5b50610645611200565b60405161065291906127f6565b60405180910390f35b61067560048036038101906106709190612b96565b611206565b005b34801561068357600080fd5b5061068c611257565b60405161069991906127f6565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190612ce1565b61125d565b005b3480156106d757600080fd5b506106f260048036038101906106ed91906126f2565b6113e5565b6040516106ff919061269a565b60405180910390f35b34801561071457600080fd5b5061071d611483565b60405161072a91906127f6565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612d3d565b611489565b60405161076791906125e6565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612a5c565b61151d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083a90612dac565b80601f016020809104026020016040519081016040528092919081815260200182805461086690612dac565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c8826115a0565b6108fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782610cba565b90508073ffffffffffffffffffffffffffffffffffffffff166109686115ff565b73ffffffffffffffffffffffffffffffffffffffff16146109cb576109948161098f6115ff565b611489565b6109ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610a8c33610cde565b83610a979190612e0c565b90506011548111610aad57600f54915050610b0c565b6000610ab833610cde565b148015610ac6575060115481115b15610af457600060115484610adb9190612e62565b601054610ae89190612e96565b90508092505050610b0c565b600083601054610b049190612e96565b905080925050505b919050565b6000610b1b611607565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6c57610b6b33611610565b5b610b7784848461170d565b50505050565b610b85611a2f565b610b8d611aad565b6000610b97610df0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bba90612f21565b60006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c0a57600080fd5b50610c13611afc565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6557610c6433611610565b5b610c70848484611b06565b50505050565b610c7e611a2f565b80600e9080519060200190610c9492919061248f565b5050565b610ca0611a2f565b80600d9080519060200190610cb692919061248f565b5050565b6000610cc582611b26565b9050919050565b610cd4611a2f565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d45576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d9e611a2f565b610da86000611bf2565b565b610db2611a2f565b80600b8190555050565b610dc4611a2f565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e22611a2f565b8060118190555050565b600c5481565b606060038054610e4190612dac565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6d90612dac565b8015610eba5780601f10610e8f57610100808354040283529160200191610eba565b820191906000526020600020905b815481529060010190602001808311610e9d57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610f36610b11565b610f409190612e0c565b1115610f78576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610fb4576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615610ffb576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b548161100933610cde565b6110139190612e0c565b111561104b576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081108061105b5750600b5481115b15611092576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109b81610a80565b3410156110d4576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110de3384611cb8565b505050565b80600760006110f06115ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119d6115ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111e291906125e6565b60405180910390a35050565b6111f6611a2f565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112445761124333611610565b5b61125085858585611cd6565b5050505050565b600b5481565b611265611a2f565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816112d7610b11565b6112e19190612e0c565b1115611319576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611355576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff161561139c576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156113df576113cc8482815181106113be576113bd612f36565b5b602002602001015184611cb8565b80806113d790612f65565b91505061139f565b50505050565b60606113f0826115a0565b611426576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611430611d49565b90506000815111611450576040518060200160405280600081525061147b565b8061145a84611ddb565b60405160200161146b929190612fe9565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611525611a2f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b9061307f565b60405180910390fd5b61159d81611bf2565b50565b6000816115ab611607565b111580156115ba575060005482105b80156115f8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561170a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161168792919061309f565b602060405180830381865afa1580156116a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c891906130dd565b61170957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117009190612760565b60405180910390fd5b5b50565b600061171882611b26565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461177f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061178b84611ea9565b915091506117a1818761179c6115ff565b611ed0565b6117ed576117b6866117b16115ff565b611489565b6117ec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611853576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118608686866001611f14565b801561186b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061193985611915888887611f1a565b7c020000000000000000000000000000000000000000000000000000000017611f42565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119bf57600060018501905060006004600083815260200190815260200160002054036119bd5760005481146119bc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a278686866001611f6d565b505050505050565b611a37611f73565b73ffffffffffffffffffffffffffffffffffffffff16611a55610df0565b73ffffffffffffffffffffffffffffffffffffffff1614611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613156565b60405180910390fd5b565b600260095403611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906131c2565b60405180910390fd5b6002600981905550565b6001600981905550565b611b2183838360405180602001604052806000815250611206565b505050565b60008082905080611b35611607565b11611bbb57600054811015611bba5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bb8575b60008103611bae576004600083600190039350838152602001908152602001600020549050611b84565b8092505050611bed565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cd2828260405180602001604052806000815250611f7b565b5050565b611ce1848484610b2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d4357611d0c84848484612018565b611d42576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611d5890612dac565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8490612dac565b8015611dd15780601f10611da657610100808354040283529160200191611dd1565b820191906000526020600020905b815481529060010190602001808311611db457829003601f168201915b5050505050905090565b606060006001611dea84612168565b01905060008167ffffffffffffffff811115611e0957611e086128e8565b5b6040519080825280601f01601f191660200182016040528015611e3b5781602001600182028036833780820191505090505b509050600082602001820190505b600115611e9e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e9257611e916131e2565b5b04945060008503611e49575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f318686846122bb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611f8583836122c4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461201357600080549050600083820390505b611fc56000868380600101945086612018565b611ffb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fb257816000541461201057600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261203e6115ff565b8786866040518563ffffffff1660e01b81526004016120609493929190613266565b6020604051808303816000875af192505050801561209c57506040513d601f19601f8201168201806040525081019061209991906132c7565b60015b612115573d80600081146120cc576040519150601f19603f3d011682016040523d82523d6000602084013e6120d1565b606091505b50600081510361210d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106121c6577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121bc576121bb6131e2565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612203576d04ee2d6d415b85acef810000000083816121f9576121f86131e2565b5b0492506020810190505b662386f26fc10000831061223257662386f26fc100008381612228576122276131e2565b5b0492506010810190505b6305f5e100831061225b576305f5e1008381612251576122506131e2565b5b0492506008810190505b6127108310612280576127108381612276576122756131e2565b5b0492506004810190505b606483106122a35760648381612299576122986131e2565b5b0492506002810190505b600a83106122b2576001810190505b80915050919050565b60009392505050565b60008054905060008203612304576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123116000848385611f14565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612388836123796000866000611f1a565b6123828561247f565b17611f42565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461242957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123ee565b5060008203612464576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061247a6000848385611f6d565b505050565b60006001821460e11b9050919050565b82805461249b90612dac565b90600052602060002090601f0160209004810192826124bd5760008555612504565b82601f106124d657805160ff1916838001178555612504565b82800160010185558215612504579182015b828111156125035782518255916020019190600101906124e8565b5b5090506125119190612515565b5090565b5b8082111561252e576000816000905550600101612516565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257b81612546565b811461258657600080fd5b50565b60008135905061259881612572565b92915050565b6000602082840312156125b4576125b361253c565b5b60006125c284828501612589565b91505092915050565b60008115159050919050565b6125e0816125cb565b82525050565b60006020820190506125fb60008301846125d7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263b578082015181840152602081019050612620565b8381111561264a576000848401525b50505050565b6000601f19601f8301169050919050565b600061266c82612601565b612676818561260c565b935061268681856020860161261d565b61268f81612650565b840191505092915050565b600060208201905081810360008301526126b48184612661565b905092915050565b6000819050919050565b6126cf816126bc565b81146126da57600080fd5b50565b6000813590506126ec816126c6565b92915050565b6000602082840312156127085761270761253c565b5b6000612716848285016126dd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061274a8261271f565b9050919050565b61275a8161273f565b82525050565b60006020820190506127756000830184612751565b92915050565b6127848161273f565b811461278f57600080fd5b50565b6000813590506127a18161277b565b92915050565b600080604083850312156127be576127bd61253c565b5b60006127cc85828601612792565b92505060206127dd858286016126dd565b9150509250929050565b6127f0816126bc565b82525050565b600060208201905061280b60008301846127e7565b92915050565b60008060006060848603121561282a5761282961253c565b5b600061283886828701612792565b935050602061284986828701612792565b925050604061285a868287016126dd565b9150509250925092565b6000819050919050565b600061288961288461287f8461271f565b612864565b61271f565b9050919050565b600061289b8261286e565b9050919050565b60006128ad82612890565b9050919050565b6128bd816128a2565b82525050565b60006020820190506128d860008301846128b4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61292082612650565b810181811067ffffffffffffffff8211171561293f5761293e6128e8565b5b80604052505050565b6000612952612532565b905061295e8282612917565b919050565b600067ffffffffffffffff82111561297e5761297d6128e8565b5b61298782612650565b9050602081019050919050565b82818337600083830152505050565b60006129b66129b184612963565b612948565b9050828152602081018484840111156129d2576129d16128e3565b5b6129dd848285612994565b509392505050565b600082601f8301126129fa576129f96128de565b5b8135612a0a8482602086016129a3565b91505092915050565b600060208284031215612a2957612a2861253c565b5b600082013567ffffffffffffffff811115612a4757612a46612541565b5b612a53848285016129e5565b91505092915050565b600060208284031215612a7257612a7161253c565b5b6000612a8084828501612792565b91505092915050565b612a92816125cb565b8114612a9d57600080fd5b50565b600081359050612aaf81612a89565b92915050565b60008060408385031215612acc57612acb61253c565b5b6000612ada85828601612792565b9250506020612aeb85828601612aa0565b9150509250929050565b600067ffffffffffffffff821115612b1057612b0f6128e8565b5b612b1982612650565b9050602081019050919050565b6000612b39612b3484612af5565b612948565b905082815260208101848484011115612b5557612b546128e3565b5b612b60848285612994565b509392505050565b600082601f830112612b7d57612b7c6128de565b5b8135612b8d848260208601612b26565b91505092915050565b60008060008060808587031215612bb057612baf61253c565b5b6000612bbe87828801612792565b9450506020612bcf87828801612792565b9350506040612be0878288016126dd565b925050606085013567ffffffffffffffff811115612c0157612c00612541565b5b612c0d87828801612b68565b91505092959194509250565b600067ffffffffffffffff821115612c3457612c336128e8565b5b602082029050602081019050919050565b600080fd5b6000612c5d612c5884612c19565b612948565b90508083825260208201905060208402830185811115612c8057612c7f612c45565b5b835b81811015612ca95780612c958882612792565b845260208401935050602081019050612c82565b5050509392505050565b600082601f830112612cc857612cc76128de565b5b8135612cd8848260208601612c4a565b91505092915050565b60008060408385031215612cf857612cf761253c565b5b600083013567ffffffffffffffff811115612d1657612d15612541565b5b612d2285828601612cb3565b9250506020612d33858286016126dd565b9150509250929050565b60008060408385031215612d5457612d5361253c565b5b6000612d6285828601612792565b9250506020612d7385828601612792565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc457607f821691505b602082108103612dd757612dd6612d7d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e17826126bc565b9150612e22836126bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e5757612e56612ddd565b5b828201905092915050565b6000612e6d826126bc565b9150612e78836126bc565b925082821015612e8b57612e8a612ddd565b5b828203905092915050565b6000612ea1826126bc565b9150612eac836126bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee557612ee4612ddd565b5b828202905092915050565b600081905092915050565b50565b6000612f0b600083612ef0565b9150612f1682612efb565b600082019050919050565b6000612f2c82612efe565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f70826126bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fa257612fa1612ddd565b5b600182019050919050565b600081905092915050565b6000612fc382612601565b612fcd8185612fad565b9350612fdd81856020860161261d565b80840191505092915050565b6000612ff58285612fb8565b91506130018284612fb8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061306960268361260c565b91506130748261300d565b604082019050919050565b600060208201905081810360008301526130988161305c565b9050919050565b60006040820190506130b46000830185612751565b6130c16020830184612751565b9392505050565b6000815190506130d781612a89565b92915050565b6000602082840312156130f3576130f261253c565b5b6000613101848285016130c8565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061314060208361260c565b915061314b8261310a565b602082019050919050565b6000602082019050818103600083015261316f81613133565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131ac601f8361260c565b91506131b782613176565b602082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061323882613211565b613242818561321c565b935061325281856020860161261d565b61325b81612650565b840191505092915050565b600060808201905061327b6000830187612751565b6132886020830186612751565b61329560408301856127e7565b81810360608301526132a7818461322d565b905095945050505050565b6000815190506132c181612572565b92915050565b6000602082840312156132dd576132dc61253c565b5b60006132eb848285016132b2565b9150509291505056fea264697066735822122026a6def96302fa77d90f6ad2ca1e73ddf78d48838293e1c7743ca586aeed7f7e64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
78658:7385:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26720:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27622:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34113:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33546:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81028:550;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23373:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78792:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85037:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83679:197;;;;;;;;;;;;;:::i;:::-;;2955:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85416:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82501:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82352:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29015:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82717:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24557:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77726:103;;;;;;;;;;;;;:::i;:::-;;83119:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82194:75;;;;;;;;;;;;;:::i;:::-;;77078:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83363:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78897:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27798:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80672:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34671:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82910:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79128:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85794:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78839:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81838:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84107:367;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79073:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35062:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77984:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26720:639;26805:4;27144:10;27129:25;;:11;:25;;;;:102;;;;27221:10;27206:25;;:11;:25;;;;27129:102;:179;;;;27298:10;27283:25;;:11;:25;;;;27129:179;27109:199;;26720:639;;;:::o;27622:100::-;27676:13;27709:5;27702:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27622:100;:::o;34113:218::-;34189:7;34214:16;34222:7;34214;:16::i;:::-;34209:64;;34239:34;;;;;;;;;;;;;;34209:64;34293:15;:24;34309:7;34293:24;;;;;;;;;;;:30;;;;;;;;;;;;34286:37;;34113:218;;;:::o;33546:408::-;33635:13;33651:16;33659:7;33651;:16::i;:::-;33635:32;;33707:5;33684:28;;:19;:17;:19::i;:::-;:28;;;33680:175;;33732:44;33749:5;33756:19;:17;:19::i;:::-;33732:16;:44::i;:::-;33727:128;;33804:35;;;;;;;;;;;;;;33727:128;33680:175;33900:2;33867:15;:24;33883:7;33867:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33938:7;33934:2;33918:28;;33927:5;33918:28;;;;;;;;;;;;33624:330;33546:408;;:::o;81028:550::-;81089:7;81111:18;81146:21;81156:10;81146:9;:21::i;:::-;81132:11;:35;;;;:::i;:::-;81111:56;;81199:16;;81185:10;:30;81180:387;;81239:12;;81232:19;;;;;81180:387;81301:1;81276:21;81286:10;81276:9;:21::i;:::-;:26;81275:63;;;;;81321:16;;81308:10;:29;81275:63;81271:296;;;81355:13;81398:16;;81384:11;:30;;;;:::i;:::-;81371:9;;:44;;;;:::i;:::-;81355:60;;81435:5;81428:12;;;;;;81271:296;81485:14;81514:11;81502:9;;:23;;;;:::i;:::-;81485:40;;81545:6;81538:13;;;;81028:550;;;;:::o;23373:323::-;23434:7;23662:15;:13;:15::i;:::-;23647:12;;23631:13;;:28;:46;23624:53;;23373:323;:::o;78792:32::-;;;;:::o;85037:176::-;85147:4;4304:10;4296:18;;:4;:18;;;4292:83;;4331:32;4352:10;4331:20;:32::i;:::-;4292:83;85164:37:::1;85183:4;85189:2;85193:7;85164:18;:37::i;:::-;85037:176:::0;;;;:::o;83679:197::-;76964:13;:11;:13::i;:::-;7742:21:::1;:19;:21::i;:::-;83768:10:::2;83792:7;:5;:7::i;:::-;83784:21;;83813;83784:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83767:72;;;83858:5;83850:14;;;::::0;::::2;;83728:148;7786:20:::1;:18;:20::i;:::-;83679:197::o:0;2955:143::-;3055:42;2955:143;:::o;85416:183::-;85529:4;4304:10;4296:18;;:4;:18;;;4292:83;;4331:32;4352:10;4331:20;:32::i;:::-;4292:83;85546:41:::1;85569:4;85575:2;85579:7;85546:22;:41::i;:::-;85416:183:::0;;;;:::o;82501:103::-;76964:13;:11;:13::i;:::-;82589:3:::1;82574:12;:18;;;;;;;;;;;;:::i;:::-;;82501:103:::0;:::o;82352:93::-;76964:13;:11;:13::i;:::-;82430:3:::1;82420:7;:13;;;;;;;;;;;;:::i;:::-;;82352:93:::0;:::o;29015:152::-;29087:7;29130:27;29149:7;29130:18;:27::i;:::-;29107:52;;29015:152;;;:::o;82717:95::-;76964:13;:11;:13::i;:::-;82795:5:::1;82783:9;:17;;;;82717:95:::0;:::o;24557:233::-;24629:7;24670:1;24653:19;;:5;:19;;;24649:60;;24681:28;;;;;;;;;;;;;;24649:60;18716:13;24727:18;:25;24746:5;24727:25;;;;;;;;;;;;;;;;:55;24720:62;;24557:233;;;:::o;77726:103::-;76964:13;:11;:13::i;:::-;77791:30:::1;77818:1;77791:18;:30::i;:::-;77726:103::o:0;83119:129::-;76964:13;:11;:13::i;:::-;83227:9:::1;83202:22;:34;;;;83119:129:::0;:::o;82194:75::-;76964:13;:11;:13::i;:::-;82251:6:::1;;;;;;;;;;;82250:7;82241:6;;:16;;;;;;;;;;;;;;;;;;82194:75::o:0;77078:87::-;77124:7;77151:6;;;;;;;;;;;77144:13;;77078:87;:::o;83363:117::-;76964:13;:11;:13::i;:::-;83459:9:::1;83440:16;:28;;;;83363:117:::0;:::o;78897:38::-;;;;:::o;27798:104::-;27854:13;27887:7;27880:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27798:104;:::o;80672:194::-;80737:11;79852:9;79838:23;;:10;:23;;;79834:53;;79870:17;;;;;;;;;;;;;;79834:53;79937:10;;79923:11;79906:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;79902:65;;;79956:11;;;;;;;;;;;;;;79902:65;80000:18;;79986:11;:32;79982:64;;;80027:19;;;;;;;;;;;;;;79982:64;80064:6;;;;;;;;;;;80061:34;;;80079:16;;;;;;;;;;;;;;80061:34;80770:11:::1;80241:22;;80227:11;80203:21;80213:10;80203:9;:21::i;:::-;:35;;;;:::i;:::-;:60;80200:95;;;80272:23;;;;;;;;;;;;;;80200:95;80328:1;80314:11;:15;:55;;;;80347:22;;80333:11;:36;80314:55;80310:87;;;80378:19;;;;;;;;;;;;;;80310:87;80430:22;80440:11;80430:9;:22::i;:::-;80418:9;:34;80414:65;;;80461:18;;;;;;;;;;;;;;80414:65;80818:34:::2;80828:10;80840:11;80818:9;:34::i;:::-;80110:1:::1;80672:194:::0;;:::o;34671:234::-;34818:8;34766:18;:39;34785:19;:17;:19::i;:::-;34766:39;;;;;;;;;;;;;;;:49;34806:8;34766:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;34878:8;34842:55;;34857:19;:17;:19::i;:::-;34842:55;;;34888:8;34842:55;;;;;;:::i;:::-;;;;;;;;34671:234;;:::o;82910:113::-;76964:13;:11;:13::i;:::-;83006:5:::1;82985:18;:26;;;;82910:113:::0;:::o;79128:35::-;;;;:::o;85794:244::-;85953:4;4304:10;4296:18;;:4;:18;;;4292:83;;4331:32;4352:10;4331:20;:32::i;:::-;4292:83;85979:47:::1;86002:4;86008:2;86012:7;86021:4;85979:22;:47::i;:::-;85794:244:::0;;;;;:::o;78839:43::-;;;;:::o;81838:224::-;76964:13;:11;:13::i;:::-;81929:6:::1;79852:9;79838:23;;:10;:23;;;79834:53;;79870:17;;;;;;;;;;;;;;79834:53;79937:10;;79923:11;79906:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;79902:65;;;79956:11;;;;;;;;;;;;;;79902:65;80000:18;;79986:11;:32;79982:64;;;80027:19;;;;;;;;;;;;;;79982:64;80064:6;;;;;;;;;;;80061:34;;;80079:16;;;;;;;;;;;;;;80061:34;81954:9:::2;81950:101;81973:8;:15;81969:1;:19;81950:101;;;82007:30;82017:8;82026:1;82017:11;;;;;;;;:::i;:::-;;;;;;;;82030:6;82007:9;:30::i;:::-;81990:3;;;;;:::i;:::-;;;;81950:101;;;;76988:1:::1;81838:224:::0;;:::o;84107:367::-;84181:13;84214:16;84222:7;84214;:16::i;:::-;84209:48;;84239:18;;;;;;;;;;;;;;84209:48;84285:28;84316:10;:8;:10::i;:::-;84285:41;;84375:1;84350:14;84344:28;:32;:118;;;;;;;;;;;;;;;;;84412:14;84428:18;:7;:16;:18::i;:::-;84395:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84344:118;84337:125;;;84107:367;;;:::o;79073:40::-;;;;:::o;35062:164::-;35159:4;35183:18;:25;35202:5;35183:25;;;;;;;;;;;;;;;:35;35209:8;35183:35;;;;;;;;;;;;;;;;;;;;;;;;;35176:42;;35062:164;;;;:::o;77984:201::-;76964:13;:11;:13::i;:::-;78093:1:::1;78073:22;;:8;:22;;::::0;78065:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;78149:28;78168:8;78149:18;:28::i;:::-;77984:201:::0;:::o;35484:282::-;35549:4;35605:7;35586:15;:13;:15::i;:::-;:26;;:66;;;;;35639:13;;35629:7;:23;35586:66;:153;;;;;35738:1;19492:8;35690:17;:26;35708:7;35690:26;;;;;;;;;;;;:44;:49;35586:153;35566:173;;35484:282;;;:::o;57792:105::-;57852:7;57879:10;57872:17;;57792:105;:::o;84533:107::-;84598:7;84627:1;84620:8;;84533:107;:::o;4534:419::-;4773:1;3055:42;4725:45;;;:49;4721:225;;;3055:42;4796;;;4847:4;4854:8;4796:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4791:144;;4910:8;4891:28;;;;;;;;;;;:::i;:::-;;;;;;;;4791:144;4721:225;4534:419;:::o;37752:2825::-;37894:27;37924;37943:7;37924:18;:27::i;:::-;37894:57;;38009:4;37968:45;;37984:19;37968:45;;;37964:86;;38022:28;;;;;;;;;;;;;;37964:86;38064:27;38093:23;38120:35;38147:7;38120:26;:35::i;:::-;38063:92;;;;38255:68;38280:15;38297:4;38303:19;:17;:19::i;:::-;38255:24;:68::i;:::-;38250:180;;38343:43;38360:4;38366:19;:17;:19::i;:::-;38343:16;:43::i;:::-;38338:92;;38395:35;;;;;;;;;;;;;;38338:92;38250:180;38461:1;38447:16;;:2;:16;;;38443:52;;38472:23;;;;;;;;;;;;;;38443:52;38508:43;38530:4;38536:2;38540:7;38549:1;38508:21;:43::i;:::-;38644:15;38641:160;;;38784:1;38763:19;38756:30;38641:160;39181:18;:24;39200:4;39181:24;;;;;;;;;;;;;;;;39179:26;;;;;;;;;;;;39250:18;:22;39269:2;39250:22;;;;;;;;;;;;;;;;39248:24;;;;;;;;;;;39572:146;39609:2;39658:45;39673:4;39679:2;39683:19;39658:14;:45::i;:::-;19772:8;39630:73;39572:18;:146::i;:::-;39543:17;:26;39561:7;39543:26;;;;;;;;;;;:175;;;;39889:1;19772:8;39838:19;:47;:52;39834:627;;39911:19;39943:1;39933:7;:11;39911:33;;40100:1;40066:17;:30;40084:11;40066:30;;;;;;;;;;;;:35;40062:384;;40204:13;;40189:11;:28;40185:242;;40384:19;40351:17;:30;40369:11;40351:30;;;;;;;;;;;:52;;;;40185:242;40062:384;39892:569;39834:627;40508:7;40504:2;40489:27;;40498:4;40489:27;;;;;;;;;;;;40527:42;40548:4;40554:2;40558:7;40567:1;40527:20;:42::i;:::-;37883:2694;;;37752:2825;;;:::o;77243:132::-;77318:12;:10;:12::i;:::-;77307:23;;:7;:5;:7::i;:::-;:23;;;77299:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77243:132::o;7822:293::-;7224:1;7956:7;;:19;7948:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7224:1;8089:7;:18;;;;7822:293::o;8123:213::-;7180:1;8306:7;:22;;;;8123:213::o;40673:193::-;40819:39;40836:4;40842:2;40846:7;40819:39;;;;;;;;;;;;:16;:39::i;:::-;40673:193;;;:::o;30170:1275::-;30237:7;30257:12;30272:7;30257:22;;30340:4;30321:15;:13;:15::i;:::-;:23;30317:1061;;30374:13;;30367:4;:20;30363:1015;;;30412:14;30429:17;:23;30447:4;30429:23;;;;;;;;;;;;30412:40;;30546:1;19492:8;30518:6;:24;:29;30514:845;;31183:113;31200:1;31190:6;:11;31183:113;;31243:17;:25;31261:6;;;;;;;31243:25;;;;;;;;;;;;31234:34;;31183:113;;;31329:6;31322:13;;;;;;30514:845;30389:989;30363:1015;30317:1061;31406:31;;;;;;;;;;;;;;30170:1275;;;;:::o;78345:191::-;78419:16;78438:6;;;;;;;;;;;78419:25;;78464:8;78455:6;;:17;;;;;;;;;;;;;;;;;;78519:8;78488:40;;78509:8;78488:40;;;;;;;;;;;;78408:128;78345:191;:::o;51624:112::-;51701:27;51711:2;51715:8;51701:27;;;;;;;;;;;;:9;:27::i;:::-;51624:112;;:::o;41464:407::-;41639:31;41652:4;41658:2;41662:7;41639:12;:31::i;:::-;41703:1;41685:2;:14;;;:19;41681:183;;41724:56;41755:4;41761:2;41765:7;41774:5;41724:30;:56::i;:::-;41719:145;;41808:40;;;;;;;;;;;;;;41719:145;41681:183;41464:407;;;;:::o;84720:114::-;84780:13;84815:7;84808:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84720:114;:::o;73056:716::-;73112:13;73163:14;73200:1;73180:17;73191:5;73180:10;:17::i;:::-;:21;73163:38;;73216:20;73250:6;73239:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73216:41;;73272:11;73401:6;73397:2;73393:15;73385:6;73381:28;73374:35;;73438:288;73445:4;73438:288;;;73470:5;;;;;;;;73612:8;73607:2;73600:5;73596:14;73591:30;73586:3;73578:44;73668:2;73659:11;;;;;;:::i;:::-;;;;;73702:1;73693:5;:10;73438:288;73689:21;73438:288;73747:6;73740:13;;;;;73056:716;;;:::o;36647:485::-;36749:27;36778:23;36819:38;36860:15;:24;36876:7;36860:24;;;;;;;;;;;36819:65;;37037:18;37014:41;;37094:19;37088:26;37069:45;;36999:126;36647:485;;;:::o;35875:659::-;36024:11;36189:16;36182:5;36178:28;36169:37;;36349:16;36338:9;36334:32;36321:45;;36499:15;36488:9;36485:30;36477:5;36466:9;36463:20;36460:56;36450:66;;35875:659;;;;;:::o;42533:159::-;;;;;:::o;57101:311::-;57236:7;57256:16;19896:3;57282:19;:41;;57256:68;;19896:3;57350:31;57361:4;57367:2;57371:9;57350:10;:31::i;:::-;57342:40;;:62;;57335:69;;;57101:311;;;;;:::o;31993:450::-;32073:14;32241:16;32234:5;32230:28;32221:37;;32418:5;32404:11;32379:23;32375:41;32372:52;32365:5;32362:63;32352:73;;31993:450;;;;:::o;43357:158::-;;;;;:::o;75629:98::-;75682:7;75709:10;75702:17;;75629:98;:::o;50851:689::-;50982:19;50988:2;50992:8;50982:5;:19::i;:::-;51061:1;51043:2;:14;;;:19;51039:483;;51083:11;51097:13;;51083:27;;51129:13;51151:8;51145:3;:14;51129:30;;51178:233;51209:62;51248:1;51252:2;51256:7;;;;;;51265:5;51209:30;:62::i;:::-;51204:167;;51307:40;;;;;;;;;;;;;;51204:167;51406:3;51398:5;:11;51178:233;;51493:3;51476:13;;:20;51472:34;;51498:8;;;51472:34;51064:458;;51039:483;50851:689;;;:::o;43955:716::-;44118:4;44164:2;44139:45;;;44185:19;:17;:19::i;:::-;44206:4;44212:7;44221:5;44139:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44135:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44439:1;44422:6;:13;:18;44418:235;;44468:40;;;;;;;;;;;;;;44418:235;44611:6;44605:13;44596:6;44592:2;44588:15;44581:38;44135:529;44308:54;;;44298:64;;;:6;:64;;;;44291:71;;;43955:716;;;;;;:::o;69922:922::-;69975:7;69995:14;70012:1;69995:18;;70062:6;70053:5;:15;70049:102;;70098:6;70089:15;;;;;;:::i;:::-;;;;;70133:2;70123:12;;;;70049:102;70178:6;70169:5;:15;70165:102;;70214:6;70205:15;;;;;;:::i;:::-;;;;;70249:2;70239:12;;;;70165:102;70294:6;70285:5;:15;70281:102;;70330:6;70321:15;;;;;;:::i;:::-;;;;;70365:2;70355:12;;;;70281:102;70410:5;70401;:14;70397:99;;70445:5;70436:14;;;;;;:::i;:::-;;;;;70479:1;70469:11;;;;70397:99;70523:5;70514;:14;70510:99;;70558:5;70549:14;;;;;;:::i;:::-;;;;;70592:1;70582:11;;;;70510:99;70636:5;70627;:14;70623:99;;70671:5;70662:14;;;;;;:::i;:::-;;;;;70705:1;70695:11;;;;70623:99;70749:5;70740;:14;70736:66;;70785:1;70775:11;;;;70736:66;70830:6;70823:13;;;69922:922;;;:::o;56802:147::-;56939:6;56802:147;;;;;:::o;45133:2966::-;45206:20;45229:13;;45206:36;;45269:1;45257:8;:13;45253:44;;45279:18;;;;;;;;;;;;;;45253:44;45310:61;45340:1;45344:2;45348:12;45362:8;45310:21;:61::i;:::-;45854:1;18854:2;45824:1;:26;;45823:32;45811:8;:45;45785:18;:22;45804:2;45785:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46133:139;46170:2;46224:33;46247:1;46251:2;46255:1;46224:14;:33::i;:::-;46191:30;46212:8;46191:20;:30::i;:::-;:66;46133:18;:139::i;:::-;46099:17;:31;46117:12;46099:31;;;;;;;;;;;:173;;;;46289:16;46320:11;46349:8;46334:12;:23;46320:37;;46870:16;46866:2;46862:25;46850:37;;47242:12;47202:8;47161:1;47099:25;47040:1;46979;46952:335;47613:1;47599:12;47595:20;47553:346;47654:3;47645:7;47642:16;47553:346;;47872:7;47862:8;47859:1;47832:25;47829:1;47826;47821:59;47707:1;47698:7;47694:15;47683:26;;47553:346;;;47557:77;47944:1;47932:8;:13;47928:45;;47954:19;;;;;;;;;;;;;;47928:45;48006:3;47990:13;:19;;;;45559:2462;;48031:60;48060:1;48064:2;48068:12;48082:8;48031:20;:60::i;:::-;45195:2904;45133:2966;;:::o;32545:324::-;32615:14;32848:1;32838:8;32835:15;32809:24;32805:46;32795:56;;32545:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:60::-;5943:3;5964:5;5957:12;;5915:60;;;:::o;5981:142::-;6031:9;6064:53;6082:34;6091:24;6109:5;6091:24;:::i;:::-;6082:34;:::i;:::-;6064:53;:::i;:::-;6051:66;;5981:142;;;:::o;6129:126::-;6179:9;6212:37;6243:5;6212:37;:::i;:::-;6199:50;;6129:126;;;:::o;6261:157::-;6342:9;6375:37;6406:5;6375:37;:::i;:::-;6362:50;;6261:157;;;:::o;6424:193::-;6542:68;6604:5;6542:68;:::i;:::-;6537:3;6530:81;6424:193;;:::o;6623:284::-;6747:4;6785:2;6774:9;6770:18;6762:26;;6798:102;6897:1;6886:9;6882:17;6873:6;6798:102;:::i;:::-;6623:284;;;;:::o;6913:117::-;7022:1;7019;7012:12;7036:117;7145:1;7142;7135:12;7159:180;7207:77;7204:1;7197:88;7304:4;7301:1;7294:15;7328:4;7325:1;7318:15;7345:281;7428:27;7450:4;7428:27;:::i;:::-;7420:6;7416:40;7558:6;7546:10;7543:22;7522:18;7510:10;7507:34;7504:62;7501:88;;;7569:18;;:::i;:::-;7501:88;7609:10;7605:2;7598:22;7388:238;7345:281;;:::o;7632:129::-;7666:6;7693:20;;:::i;:::-;7683:30;;7722:33;7750:4;7742:6;7722:33;:::i;:::-;7632:129;;;:::o;7767:308::-;7829:4;7919:18;7911:6;7908:30;7905:56;;;7941:18;;:::i;:::-;7905:56;7979:29;8001:6;7979:29;:::i;:::-;7971:37;;8063:4;8057;8053:15;8045:23;;7767:308;;;:::o;8081:154::-;8165:6;8160:3;8155;8142:30;8227:1;8218:6;8213:3;8209:16;8202:27;8081:154;;;:::o;8241:412::-;8319:5;8344:66;8360:49;8402:6;8360:49;:::i;:::-;8344:66;:::i;:::-;8335:75;;8433:6;8426:5;8419:21;8471:4;8464:5;8460:16;8509:3;8500:6;8495:3;8491:16;8488:25;8485:112;;;8516:79;;:::i;:::-;8485:112;8606:41;8640:6;8635:3;8630;8606:41;:::i;:::-;8325:328;8241:412;;;;;:::o;8673:340::-;8729:5;8778:3;8771:4;8763:6;8759:17;8755:27;8745:122;;8786:79;;:::i;:::-;8745:122;8903:6;8890:20;8928:79;9003:3;8995:6;8988:4;8980:6;8976:17;8928:79;:::i;:::-;8919:88;;8735:278;8673:340;;;;:::o;9019:509::-;9088:6;9137:2;9125:9;9116:7;9112:23;9108:32;9105:119;;;9143:79;;:::i;:::-;9105:119;9291:1;9280:9;9276:17;9263:31;9321:18;9313:6;9310:30;9307:117;;;9343:79;;:::i;:::-;9307:117;9448:63;9503:7;9494:6;9483:9;9479:22;9448:63;:::i;:::-;9438:73;;9234:287;9019:509;;;;:::o;9534:329::-;9593:6;9642:2;9630:9;9621:7;9617:23;9613:32;9610:119;;;9648:79;;:::i;:::-;9610:119;9768:1;9793:53;9838:7;9829:6;9818:9;9814:22;9793:53;:::i;:::-;9783:63;;9739:117;9534:329;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:468::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:50;10573:7;10564:6;10553:9;10549:22;10531:50;:::i;:::-;10521:60;;10476:115;10130:468;;;;;:::o;10604:307::-;10665:4;10755:18;10747:6;10744:30;10741:56;;;10777:18;;:::i;:::-;10741:56;10815:29;10837:6;10815:29;:::i;:::-;10807:37;;10899:4;10893;10889:15;10881:23;;10604:307;;;:::o;10917:410::-;10994:5;11019:65;11035:48;11076:6;11035:48;:::i;:::-;11019:65;:::i;:::-;11010:74;;11107:6;11100:5;11093:21;11145:4;11138:5;11134:16;11183:3;11174:6;11169:3;11165:16;11162:25;11159:112;;;11190:79;;:::i;:::-;11159:112;11280:41;11314:6;11309:3;11304;11280:41;:::i;:::-;11000:327;10917:410;;;;;:::o;11346:338::-;11401:5;11450:3;11443:4;11435:6;11431:17;11427:27;11417:122;;11458:79;;:::i;:::-;11417:122;11575:6;11562:20;11600:78;11674:3;11666:6;11659:4;11651:6;11647:17;11600:78;:::i;:::-;11591:87;;11407:277;11346:338;;;;:::o;11690:943::-;11785:6;11793;11801;11809;11858:3;11846:9;11837:7;11833:23;11829:33;11826:120;;;11865:79;;:::i;:::-;11826:120;11985:1;12010:53;12055:7;12046:6;12035:9;12031:22;12010:53;:::i;:::-;12000:63;;11956:117;12112:2;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12083:118;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;12396:2;12385:9;12381:18;12368:32;12427:18;12419:6;12416:30;12413:117;;;12449:79;;:::i;:::-;12413:117;12554:62;12608:7;12599:6;12588:9;12584:22;12554:62;:::i;:::-;12544:72;;12339:287;11690:943;;;;;;;:::o;12639:311::-;12716:4;12806:18;12798:6;12795:30;12792:56;;;12828:18;;:::i;:::-;12792:56;12878:4;12870:6;12866:17;12858:25;;12938:4;12932;12928:15;12920:23;;12639:311;;;:::o;12956:117::-;13065:1;13062;13055:12;13096:710;13192:5;13217:81;13233:64;13290:6;13233:64;:::i;:::-;13217:81;:::i;:::-;13208:90;;13318:5;13347:6;13340:5;13333:21;13381:4;13374:5;13370:16;13363:23;;13434:4;13426:6;13422:17;13414:6;13410:30;13463:3;13455:6;13452:15;13449:122;;;13482:79;;:::i;:::-;13449:122;13597:6;13580:220;13614:6;13609:3;13606:15;13580:220;;;13689:3;13718:37;13751:3;13739:10;13718:37;:::i;:::-;13713:3;13706:50;13785:4;13780:3;13776:14;13769:21;;13656:144;13640:4;13635:3;13631:14;13624:21;;13580:220;;;13584:21;13198:608;;13096:710;;;;;:::o;13829:370::-;13900:5;13949:3;13942:4;13934:6;13930:17;13926:27;13916:122;;13957:79;;:::i;:::-;13916:122;14074:6;14061:20;14099:94;14189:3;14181:6;14174:4;14166:6;14162:17;14099:94;:::i;:::-;14090:103;;13906:293;13829:370;;;;:::o;14205:684::-;14298:6;14306;14355:2;14343:9;14334:7;14330:23;14326:32;14323:119;;;14361:79;;:::i;:::-;14323:119;14509:1;14498:9;14494:17;14481:31;14539:18;14531:6;14528:30;14525:117;;;14561:79;;:::i;:::-;14525:117;14666:78;14736:7;14727:6;14716:9;14712:22;14666:78;:::i;:::-;14656:88;;14452:302;14793:2;14819:53;14864:7;14855:6;14844:9;14840:22;14819:53;:::i;:::-;14809:63;;14764:118;14205:684;;;;;:::o;14895:474::-;14963:6;14971;15020:2;15008:9;14999:7;14995:23;14991:32;14988:119;;;15026:79;;:::i;:::-;14988:119;15146:1;15171:53;15216:7;15207:6;15196:9;15192:22;15171:53;:::i;:::-;15161:63;;15117:117;15273:2;15299:53;15344:7;15335:6;15324:9;15320:22;15299:53;:::i;:::-;15289:63;;15244:118;14895:474;;;;;:::o;15375:180::-;15423:77;15420:1;15413:88;15520:4;15517:1;15510:15;15544:4;15541:1;15534:15;15561:320;15605:6;15642:1;15636:4;15632:12;15622:22;;15689:1;15683:4;15679:12;15710:18;15700:81;;15766:4;15758:6;15754:17;15744:27;;15700:81;15828:2;15820:6;15817:14;15797:18;15794:38;15791:84;;15847:18;;:::i;:::-;15791:84;15612:269;15561:320;;;:::o;15887:180::-;15935:77;15932:1;15925:88;16032:4;16029:1;16022:15;16056:4;16053:1;16046:15;16073:305;16113:3;16132:20;16150:1;16132:20;:::i;:::-;16127:25;;16166:20;16184:1;16166:20;:::i;:::-;16161:25;;16320:1;16252:66;16248:74;16245:1;16242:81;16239:107;;;16326:18;;:::i;:::-;16239:107;16370:1;16367;16363:9;16356:16;;16073:305;;;;:::o;16384:191::-;16424:4;16444:20;16462:1;16444:20;:::i;:::-;16439:25;;16478:20;16496:1;16478:20;:::i;:::-;16473:25;;16517:1;16514;16511:8;16508:34;;;16522:18;;:::i;:::-;16508:34;16567:1;16564;16560:9;16552:17;;16384:191;;;;:::o;16581:348::-;16621:7;16644:20;16662:1;16644:20;:::i;:::-;16639:25;;16678:20;16696:1;16678:20;:::i;:::-;16673:25;;16866:1;16798:66;16794:74;16791:1;16788:81;16783:1;16776:9;16769:17;16765:105;16762:131;;;16873:18;;:::i;:::-;16762:131;16921:1;16918;16914:9;16903:20;;16581:348;;;;:::o;16935:147::-;17036:11;17073:3;17058:18;;16935:147;;;;:::o;17088:114::-;;:::o;17208:398::-;17367:3;17388:83;17469:1;17464:3;17388:83;:::i;:::-;17381:90;;17480:93;17569:3;17480:93;:::i;:::-;17598:1;17593:3;17589:11;17582:18;;17208:398;;;:::o;17612:379::-;17796:3;17818:147;17961:3;17818:147;:::i;:::-;17811:154;;17982:3;17975:10;;17612:379;;;:::o;17997:180::-;18045:77;18042:1;18035:88;18142:4;18139:1;18132:15;18166:4;18163:1;18156:15;18183:233;18222:3;18245:24;18263:5;18245:24;:::i;:::-;18236:33;;18291:66;18284:5;18281:77;18278:103;;18361:18;;:::i;:::-;18278:103;18408:1;18401:5;18397:13;18390:20;;18183:233;;;:::o;18422:148::-;18524:11;18561:3;18546:18;;18422:148;;;;:::o;18576:377::-;18682:3;18710:39;18743:5;18710:39;:::i;:::-;18765:89;18847:6;18842:3;18765:89;:::i;:::-;18758:96;;18863:52;18908:6;18903:3;18896:4;18889:5;18885:16;18863:52;:::i;:::-;18940:6;18935:3;18931:16;18924:23;;18686:267;18576:377;;;;:::o;18959:435::-;19139:3;19161:95;19252:3;19243:6;19161:95;:::i;:::-;19154:102;;19273:95;19364:3;19355:6;19273:95;:::i;:::-;19266:102;;19385:3;19378:10;;18959:435;;;;;:::o;19400:225::-;19540:34;19536:1;19528:6;19524:14;19517:58;19609:8;19604:2;19596:6;19592:15;19585:33;19400:225;:::o;19631:366::-;19773:3;19794:67;19858:2;19853:3;19794:67;:::i;:::-;19787:74;;19870:93;19959:3;19870:93;:::i;:::-;19988:2;19983:3;19979:12;19972:19;;19631:366;;;:::o;20003:419::-;20169:4;20207:2;20196:9;20192:18;20184:26;;20256:9;20250:4;20246:20;20242:1;20231:9;20227:17;20220:47;20284:131;20410:4;20284:131;:::i;:::-;20276:139;;20003:419;;;:::o;20428:332::-;20549:4;20587:2;20576:9;20572:18;20564:26;;20600:71;20668:1;20657:9;20653:17;20644:6;20600:71;:::i;:::-;20681:72;20749:2;20738:9;20734:18;20725:6;20681:72;:::i;:::-;20428:332;;;;;:::o;20766:137::-;20820:5;20851:6;20845:13;20836:22;;20867:30;20891:5;20867:30;:::i;:::-;20766:137;;;;:::o;20909:345::-;20976:6;21025:2;21013:9;21004:7;21000:23;20996:32;20993:119;;;21031:79;;:::i;:::-;20993:119;21151:1;21176:61;21229:7;21220:6;21209:9;21205:22;21176:61;:::i;:::-;21166:71;;21122:125;20909:345;;;;:::o;21260:182::-;21400:34;21396:1;21388:6;21384:14;21377:58;21260:182;:::o;21448:366::-;21590:3;21611:67;21675:2;21670:3;21611:67;:::i;:::-;21604:74;;21687:93;21776:3;21687:93;:::i;:::-;21805:2;21800:3;21796:12;21789:19;;21448:366;;;:::o;21820:419::-;21986:4;22024:2;22013:9;22009:18;22001:26;;22073:9;22067:4;22063:20;22059:1;22048:9;22044:17;22037:47;22101:131;22227:4;22101:131;:::i;:::-;22093:139;;21820:419;;;:::o;22245:181::-;22385:33;22381:1;22373:6;22369:14;22362:57;22245:181;:::o;22432:366::-;22574:3;22595:67;22659:2;22654:3;22595:67;:::i;:::-;22588:74;;22671:93;22760:3;22671:93;:::i;:::-;22789:2;22784:3;22780:12;22773:19;;22432:366;;;:::o;22804:419::-;22970:4;23008:2;22997:9;22993:18;22985:26;;23057:9;23051:4;23047:20;23043:1;23032:9;23028:17;23021:47;23085:131;23211:4;23085:131;:::i;:::-;23077:139;;22804:419;;;:::o;23229:180::-;23277:77;23274:1;23267:88;23374:4;23371:1;23364:15;23398:4;23395:1;23388:15;23415:98;23466:6;23500:5;23494:12;23484:22;;23415:98;;;:::o;23519:168::-;23602:11;23636:6;23631:3;23624:19;23676:4;23671:3;23667:14;23652:29;;23519:168;;;;:::o;23693:360::-;23779:3;23807:38;23839:5;23807:38;:::i;:::-;23861:70;23924:6;23919:3;23861:70;:::i;:::-;23854:77;;23940:52;23985:6;23980:3;23973:4;23966:5;23962:16;23940:52;:::i;:::-;24017:29;24039:6;24017:29;:::i;:::-;24012:3;24008:39;24001:46;;23783:270;23693:360;;;;:::o;24059:640::-;24254:4;24292:3;24281:9;24277:19;24269:27;;24306:71;24374:1;24363:9;24359:17;24350:6;24306:71;:::i;:::-;24387:72;24455:2;24444:9;24440:18;24431:6;24387:72;:::i;:::-;24469;24537:2;24526:9;24522:18;24513:6;24469:72;:::i;:::-;24588:9;24582:4;24578:20;24573:2;24562:9;24558:18;24551:48;24616:76;24687:4;24678:6;24616:76;:::i;:::-;24608:84;;24059:640;;;;;;;:::o;24705:141::-;24761:5;24792:6;24786:13;24777:22;;24808:32;24834:5;24808:32;:::i;:::-;24705:141;;;;:::o;24852:349::-;24921:6;24970:2;24958:9;24949:7;24945:23;24941:32;24938:119;;;24976:79;;:::i;:::-;24938:119;25096:1;25121:63;25176:7;25167:6;25156:9;25152:22;25121:63;:::i;:::-;25111:73;;25067:127;24852:349;;;;:::o
Swarm Source
ipfs://26a6def96302fa77d90f6ad2ca1e73ddf78d48838293e1c7743ca586aeed7f7e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.