Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
259 GhX
Holders
85
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GhXLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GhostX
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-30 */ /** *Submitted for verification at Etherscan.io on 2022-12-30 */ /** *Submitted for verification at Etherscan.io on 2022-12-29 */ // SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 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`. * * 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 calldata data ) external; /** * @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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool 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)) } } } } /** * @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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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`. * * 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 calldata data ) external; /** * @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 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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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 (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; contract GhostX is ERC721A, Ownable { using Strings for uint256; string private baseURI; string public uriSuffix = ".json"; uint256 public price = 0.005 ether; uint256 public maxPerTx = 20; uint256 public maxFreePerWallet = 1; uint256 public totalFree = 5000; uint256 public maxSupply = 5000; bool public mintEnabled = true; mapping(address => uint256) private _mintedFreeAmount; constructor() ERC721A("Ghost_X", "GhX") { _safeMint(msg.sender, 1); setBaseURI("ipfs://QmbQM1pLpeReqje7naoqD6Vm4f24G22k3iZh81wjbeRAXY/"); } function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalSupply() + count < totalFree + 1) && (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)); if (isFree) { cost = 0; } require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < maxSupply + 1, "No more"); require(mintEnabled, "Minting is not live yet"); require(count < maxPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), uriSuffix)); } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setFreeAmount(uint256 amount) external onlyOwner { totalFree = amount; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function flipSale() external onlyOwner { mintEnabled = !mintEnabled; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000802565b506611c37937e08000600b556014600c556001600d55611388600e55611388600f556001601060006101000a81548160ff0219169083151502179055503480156200009b57600080fd5b506040518060400160405280600781526020017f47686f73745f58000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f476858000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012092919062000802565b5080600390805190602001906200013992919062000802565b506200014a620001b560201b60201c565b60008190555050506200017262000166620001ba60201b60201c565b620001c260201b60201c565b620001853360016200028860201b60201c565b620001af60405180606001604052806036815260200162003e9d60369139620002ae60201b60201c565b62000b86565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002aa8282604051806020016040528060008152506200035960201b60201c565b5050565b620002be620001ba60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e46200063e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033490620009d9565b60405180910390fd5b80600990805190602001906200035592919062000802565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620003c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000403576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200041860008583866200066860201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000485600185146200066e60201b60201c565b901b60a042901b6200049d866200067860201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14620005ae575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200055a60008784806001019550876200068260201b60201c565b62000591576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620004e3578260005414620005a857600080fd5b6200061a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620005af575b816000819055505050620006386000858386620007f460201b60201c565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006b0620007fa60201b60201c565b8786866040518563ffffffff1660e01b8152600401620006d4949392919062000985565b602060405180830381600087803b158015620006ef57600080fd5b505af19250505080156200072357506040513d601f19601f82011682018060405250810190620007209190620008c9565b60015b620007a1573d806000811462000756576040519150601f19603f3d011682016040523d82523d6000602084013e6200075b565b606091505b5060008151141562000799576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620008109062000ac8565b90600052602060002090601f01602090048101928262000834576000855562000880565b82601f106200084f57805160ff191683800117855562000880565b8280016001018555821562000880579182015b828111156200087f57825182559160200191906001019062000862565b5b5090506200088f919062000893565b5090565b5b80821115620008ae57600081600090555060010162000894565b5090565b600081519050620008c38162000b6c565b92915050565b600060208284031215620008e257620008e162000b2d565b5b6000620008f284828501620008b2565b91505092915050565b620009068162000a28565b82525050565b60006200091982620009fb565b62000925818562000a06565b93506200093781856020860162000a92565b620009428162000b32565b840191505092915050565b60006200095c60208362000a17565b9150620009698262000b43565b602082019050919050565b6200097f8162000a88565b82525050565b60006080820190506200099c6000830187620008fb565b620009ab6020830186620008fb565b620009ba604083018562000974565b8181036060830152620009ce81846200090c565b905095945050505050565b60006020820190508181036000830152620009f4816200094d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a358262000a68565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ab257808201518184015260208101905062000a95565b8381111562000ac2576000848401525b50505050565b6000600282049050600182168062000ae157607f821691505b6020821081141562000af85762000af762000afe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000b778162000a3c565b811462000b8357600080fd5b50565b6133078062000b966000396000f3fe6080604052600436106101d85760003560e01c80637ba5e62111610102578063a702735711610095578063d5abeb0111610064578063d5abeb0114610663578063e985e9c51461068e578063f2fde38b146106cb578063f968adbe146106f4576101d8565b8063a7027357146105a7578063b88d4fde146105d2578063c87b56dd146105fb578063d123973014610638576101d8565b806395d89b41116100d157806395d89b411461050c578063a035b1fe14610537578063a0712d6814610562578063a22cb4651461057e576101d8565b80637ba5e621146104785780638da5cb5b1461048f57806391b7f5ed146104ba57806392910eec146104e3576101d8565b8063333e44e61161017a57806355f804b31161014957806355f804b3146103be5780636352211e146103e757806370a0823114610424578063715018a614610461576101d8565b8063333e44e6146103285780633ccfd60b1461035357806342842e0e1461036a5780635503a0e814610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806316ba10e0146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906126dd565b61071f565b6040516102119190612ae4565b60405180910390f35b34801561022657600080fd5b5061022f6107b1565b60405161023c9190612aff565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612780565b610843565b6040516102799190612a7d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061269d565b6108bf565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612737565b610a66565b005b3480156102e057600080fd5b506102e9610afc565b6040516102f69190612c21565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612587565b610b13565b005b34801561033457600080fd5b5061033d610b23565b60405161034a9190612c21565b60405180910390f35b34801561035f57600080fd5b50610368610b29565b005b34801561037657600080fd5b50610391600480360381019061038c9190612587565b610c54565b005b34801561039f57600080fd5b506103a8610c74565b6040516103b59190612aff565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190612737565b610d02565b005b3480156103f357600080fd5b5061040e60048036038101906104099190612780565b610d98565b60405161041b9190612a7d565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061251a565b610daa565b6040516104589190612c21565b60405180910390f35b34801561046d57600080fd5b50610476610e63565b005b34801561048457600080fd5b5061048d610eeb565b005b34801561049b57600080fd5b506104a4610f93565b6040516104b19190612a7d565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190612780565b610fbd565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190612780565b611043565b005b34801561051857600080fd5b506105216110c9565b60405161052e9190612aff565b60405180910390f35b34801561054357600080fd5b5061054c61115b565b6040516105599190612c21565b60405180910390f35b61057c60048036038101906105779190612780565b611161565b005b34801561058a57600080fd5b506105a560048036038101906105a0919061265d565b6113ad565b005b3480156105b357600080fd5b506105bc611525565b6040516105c99190612c21565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f491906125da565b61152b565b005b34801561060757600080fd5b50610622600480360381019061061d9190612780565b61159e565b60405161062f9190612aff565b60405180910390f35b34801561064457600080fd5b5061064d61161d565b60405161065a9190612ae4565b60405180910390f35b34801561066f57600080fd5b50610678611630565b6040516106859190612c21565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612547565b611636565b6040516106c29190612ae4565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed919061251a565b6116ca565b005b34801561070057600080fd5b506107096117c2565b6040516107169190612c21565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107c090612ef1565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec90612ef1565b80156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b5050505050905090565b600061084e826117c8565b610884576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ca82611827565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610932576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109516118f5565b73ffffffffffffffffffffffffffffffffffffffff16146109b45761097d816109786118f5565b611636565b6109b3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a6e6118fd565b73ffffffffffffffffffffffffffffffffffffffff16610a8c610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612b81565b60405180910390fd5b80600a9080519060200190610af892919061232e565b5050565b6000610b06611905565b6001546000540303905090565b610b1e83838361190a565b505050565b600e5481565b610b316118fd565b73ffffffffffffffffffffffffffffffffffffffff16610b4f610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90612b81565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610bcb90612a68565b60006040518083038185875af1925050503d8060008114610c08576040519150601f19603f3d011682016040523d82523d6000602084013e610c0d565b606091505b5050905080610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890612be1565b60405180910390fd5b50565b610c6f8383836040518060200160405280600081525061152b565b505050565b600a8054610c8190612ef1565b80601f0160208091040260200160405190810160405280929190818152602001828054610cad90612ef1565b8015610cfa5780601f10610ccf57610100808354040283529160200191610cfa565b820191906000526020600020905b815481529060010190602001808311610cdd57829003601f168201915b505050505081565b610d0a6118fd565b73ffffffffffffffffffffffffffffffffffffffff16610d28610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590612b81565b60405180910390fd5b8060099080519060200190610d9492919061232e565b5050565b6000610da382611827565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e6b6118fd565b73ffffffffffffffffffffffffffffffffffffffff16610e89610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690612b81565b60405180910390fd5b610ee96000611cb4565b565b610ef36118fd565b73ffffffffffffffffffffffffffffffffffffffff16610f11610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90612b81565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fc56118fd565b73ffffffffffffffffffffffffffffffffffffffff16610fe3610f93565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103090612b81565b60405180910390fd5b80600b8190555050565b61104b6118fd565b73ffffffffffffffffffffffffffffffffffffffff16611069610f93565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612b81565b60405180910390fd5b80600e8190555050565b6060600380546110d890612ef1565b80601f016020809104026020016040519081016040528092919081815260200182805461110490612ef1565b80156111515780601f1061112657610100808354040283529160200191611151565b820191906000526020600020905b81548152906001019060200180831161113457829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546111799190612d26565b83611182610afc565b61118c9190612d26565b1080156111e55750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111e29190612d26565b11155b905080156111f257600091505b81836111fe9190612dad565b341015611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790612bc1565b60405180910390fd5b6001600f5461124f9190612d26565b83611258610afc565b6112629190612d26565b106112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990612b41565b60405180910390fd5b601060009054906101000a900460ff166112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612b21565b60405180910390fd5b6001600c546113009190612d26565b8310611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890612c01565b60405180910390fd5b801561139e5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113969190612d26565b925050819055505b6113a83384611d7a565b505050565b6113b56118f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114276118f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d46118f5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115199190612ae4565b60405180910390a35050565b600d5481565b61153684848461190a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115985761156184848484611d98565b611597576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115a9826117c8565b6115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90612ba1565b60405180910390fd5b60096115f383611ef8565b600a60405160200161160793929190612a37565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116d26118fd565b73ffffffffffffffffffffffffffffffffffffffff166116f0610f93565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90612b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90612b61565b60405180910390fd5b6117bf81611cb4565b50565b600c5481565b6000816117d3611905565b111580156117e2575060005482105b8015611820575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611836611905565b116118be576000548110156118bd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118bb575b60008114156118b1576004600083600190039350838152602001908152602001600020549050611886565b80925050506118f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b600061191582611827565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461197c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661199d6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614806119cc57506119cb856119c66118f5565b611636565b5b80611a1157506119da6118f5565b73ffffffffffffffffffffffffffffffffffffffff166119f984610843565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a4a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ab1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611abe8585856001612059565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611bbb8661205f565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611c45576000600184019050600060046000838152602001908152602001600020541415611c43576000548114611c42578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cad8585856001612069565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d9482826040518060200160405280600081525061206f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbe6118f5565b8786866040518563ffffffff1660e01b8152600401611de09493929190612a98565b602060405180830381600087803b158015611dfa57600080fd5b505af1925050508015611e2b57506040513d601f19601f82011682018060405250810190611e28919061270a565b60015b611ea5573d8060008114611e5b576040519150601f19603f3d011682016040523d82523d6000602084013e611e60565b606091505b50600081511415611e9d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f40576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612054565b600082905060005b60008214611f72578080611f5b90612f54565b915050600a82611f6b9190612d7c565b9150611f48565b60008167ffffffffffffffff811115611f8e57611f8d61308a565b5b6040519080825280601f01601f191660200182016040528015611fc05781602001600182028036833780820191505090505b5090505b6000851461204d57600182611fd99190612e07565b9150600a85611fe89190612f9d565b6030611ff49190612d26565b60f81b81838151811061200a5761200961305b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120469190612d7c565b9450611fc4565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120dc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612117576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121246000858386612059565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161218960018514612324565b901b60a042901b6121998661205f565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461229d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461224d6000878480600101955087611d98565b612283576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121de57826000541461229857600080fd5b612308565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061229e575b81600081905550505061231e6000858386612069565b50505050565b6000819050919050565b82805461233a90612ef1565b90600052602060002090601f01602090048101928261235c57600085556123a3565b82601f1061237557805160ff19168380011785556123a3565b828001600101855582156123a3579182015b828111156123a2578251825591602001919060010190612387565b5b5090506123b091906123b4565b5090565b5b808211156123cd5760008160009055506001016123b5565b5090565b60006123e46123df84612c61565b612c3c565b905082815260208101848484011115612400576123ff6130be565b5b61240b848285612eaf565b509392505050565b600061242661242184612c92565b612c3c565b905082815260208101848484011115612442576124416130be565b5b61244d848285612eaf565b509392505050565b60008135905061246481613275565b92915050565b6000813590506124798161328c565b92915050565b60008135905061248e816132a3565b92915050565b6000815190506124a3816132a3565b92915050565b600082601f8301126124be576124bd6130b9565b5b81356124ce8482602086016123d1565b91505092915050565b600082601f8301126124ec576124eb6130b9565b5b81356124fc848260208601612413565b91505092915050565b600081359050612514816132ba565b92915050565b6000602082840312156125305761252f6130c8565b5b600061253e84828501612455565b91505092915050565b6000806040838503121561255e5761255d6130c8565b5b600061256c85828601612455565b925050602061257d85828601612455565b9150509250929050565b6000806000606084860312156125a05761259f6130c8565b5b60006125ae86828701612455565b93505060206125bf86828701612455565b92505060406125d086828701612505565b9150509250925092565b600080600080608085870312156125f4576125f36130c8565b5b600061260287828801612455565b945050602061261387828801612455565b935050604061262487828801612505565b925050606085013567ffffffffffffffff811115612645576126446130c3565b5b612651878288016124a9565b91505092959194509250565b60008060408385031215612674576126736130c8565b5b600061268285828601612455565b92505060206126938582860161246a565b9150509250929050565b600080604083850312156126b4576126b36130c8565b5b60006126c285828601612455565b92505060206126d385828601612505565b9150509250929050565b6000602082840312156126f3576126f26130c8565b5b60006127018482850161247f565b91505092915050565b6000602082840312156127205761271f6130c8565b5b600061272e84828501612494565b91505092915050565b60006020828403121561274d5761274c6130c8565b5b600082013567ffffffffffffffff81111561276b5761276a6130c3565b5b612777848285016124d7565b91505092915050565b600060208284031215612796576127956130c8565b5b60006127a484828501612505565b91505092915050565b6127b681612e3b565b82525050565b6127c581612e4d565b82525050565b60006127d682612cd8565b6127e08185612cee565b93506127f0818560208601612ebe565b6127f9816130cd565b840191505092915050565b600061280f82612ce3565b6128198185612d0a565b9350612829818560208601612ebe565b612832816130cd565b840191505092915050565b600061284882612ce3565b6128528185612d1b565b9350612862818560208601612ebe565b80840191505092915050565b6000815461287b81612ef1565b6128858186612d1b565b945060018216600081146128a057600181146128b1576128e4565b60ff198316865281860193506128e4565b6128ba85612cc3565b60005b838110156128dc578154818901526001820191506020810190506128bd565b838801955050505b50505092915050565b60006128fa601783612d0a565b9150612905826130de565b602082019050919050565b600061291d600783612d0a565b915061292882613107565b602082019050919050565b6000612940602683612d0a565b915061294b82613130565b604082019050919050565b6000612963602083612d0a565b915061296e8261317f565b602082019050919050565b6000612986602f83612d0a565b9150612991826131a8565b604082019050919050565b60006129a9601d83612d0a565b91506129b4826131f7565b602082019050919050565b60006129cc600083612cff565b91506129d782613220565b600082019050919050565b60006129ef601083612d0a565b91506129fa82613223565b602082019050919050565b6000612a12601383612d0a565b9150612a1d8261324c565b602082019050919050565b612a3181612ea5565b82525050565b6000612a43828661286e565b9150612a4f828561283d565b9150612a5b828461286e565b9150819050949350505050565b6000612a73826129bf565b9150819050919050565b6000602082019050612a9260008301846127ad565b92915050565b6000608082019050612aad60008301876127ad565b612aba60208301866127ad565b612ac76040830185612a28565b8181036060830152612ad981846127cb565b905095945050505050565b6000602082019050612af960008301846127bc565b92915050565b60006020820190508181036000830152612b198184612804565b905092915050565b60006020820190508181036000830152612b3a816128ed565b9050919050565b60006020820190508181036000830152612b5a81612910565b9050919050565b60006020820190508181036000830152612b7a81612933565b9050919050565b60006020820190508181036000830152612b9a81612956565b9050919050565b60006020820190508181036000830152612bba81612979565b9050919050565b60006020820190508181036000830152612bda8161299c565b9050919050565b60006020820190508181036000830152612bfa816129e2565b9050919050565b60006020820190508181036000830152612c1a81612a05565b9050919050565b6000602082019050612c366000830184612a28565b92915050565b6000612c46612c57565b9050612c528282612f23565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7c57612c7b61308a565b5b612c85826130cd565b9050602081019050919050565b600067ffffffffffffffff821115612cad57612cac61308a565b5b612cb6826130cd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3182612ea5565b9150612d3c83612ea5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7157612d70612fce565b5b828201905092915050565b6000612d8782612ea5565b9150612d9283612ea5565b925082612da257612da1612ffd565b5b828204905092915050565b6000612db882612ea5565b9150612dc383612ea5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dfc57612dfb612fce565b5b828202905092915050565b6000612e1282612ea5565b9150612e1d83612ea5565b925082821015612e3057612e2f612fce565b5b828203905092915050565b6000612e4682612e85565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612edc578082015181840152602081019050612ec1565b83811115612eeb576000848401525b50505050565b60006002820490506001821680612f0957607f821691505b60208210811415612f1d57612f1c61302c565b5b50919050565b612f2c826130cd565b810181811067ffffffffffffffff82111715612f4b57612f4a61308a565b5b80604052505050565b6000612f5f82612ea5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f9257612f91612fce565b5b600182019050919050565b6000612fa882612ea5565b9150612fb383612ea5565b925082612fc357612fc2612ffd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61327e81612e3b565b811461328957600080fd5b50565b61329581612e4d565b81146132a057600080fd5b50565b6132ac81612e59565b81146132b757600080fd5b50565b6132c381612ea5565b81146132ce57600080fd5b5056fea2646970667358221220d97e3062752b5464111efbb36e02c8151da652b44c0280d7003d2e2050afdaff64736f6c63430008070033697066733a2f2f516d62514d31704c70655265716a65376e616f714436566d346632344732326b33695a683831776a6265524158592f
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80637ba5e62111610102578063a702735711610095578063d5abeb0111610064578063d5abeb0114610663578063e985e9c51461068e578063f2fde38b146106cb578063f968adbe146106f4576101d8565b8063a7027357146105a7578063b88d4fde146105d2578063c87b56dd146105fb578063d123973014610638576101d8565b806395d89b41116100d157806395d89b411461050c578063a035b1fe14610537578063a0712d6814610562578063a22cb4651461057e576101d8565b80637ba5e621146104785780638da5cb5b1461048f57806391b7f5ed146104ba57806392910eec146104e3576101d8565b8063333e44e61161017a57806355f804b31161014957806355f804b3146103be5780636352211e146103e757806370a0823114610424578063715018a614610461576101d8565b8063333e44e6146103285780633ccfd60b1461035357806342842e0e1461036a5780635503a0e814610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806316ba10e0146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906126dd565b61071f565b6040516102119190612ae4565b60405180910390f35b34801561022657600080fd5b5061022f6107b1565b60405161023c9190612aff565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612780565b610843565b6040516102799190612a7d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061269d565b6108bf565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612737565b610a66565b005b3480156102e057600080fd5b506102e9610afc565b6040516102f69190612c21565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612587565b610b13565b005b34801561033457600080fd5b5061033d610b23565b60405161034a9190612c21565b60405180910390f35b34801561035f57600080fd5b50610368610b29565b005b34801561037657600080fd5b50610391600480360381019061038c9190612587565b610c54565b005b34801561039f57600080fd5b506103a8610c74565b6040516103b59190612aff565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190612737565b610d02565b005b3480156103f357600080fd5b5061040e60048036038101906104099190612780565b610d98565b60405161041b9190612a7d565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061251a565b610daa565b6040516104589190612c21565b60405180910390f35b34801561046d57600080fd5b50610476610e63565b005b34801561048457600080fd5b5061048d610eeb565b005b34801561049b57600080fd5b506104a4610f93565b6040516104b19190612a7d565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190612780565b610fbd565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190612780565b611043565b005b34801561051857600080fd5b506105216110c9565b60405161052e9190612aff565b60405180910390f35b34801561054357600080fd5b5061054c61115b565b6040516105599190612c21565b60405180910390f35b61057c60048036038101906105779190612780565b611161565b005b34801561058a57600080fd5b506105a560048036038101906105a0919061265d565b6113ad565b005b3480156105b357600080fd5b506105bc611525565b6040516105c99190612c21565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f491906125da565b61152b565b005b34801561060757600080fd5b50610622600480360381019061061d9190612780565b61159e565b60405161062f9190612aff565b60405180910390f35b34801561064457600080fd5b5061064d61161d565b60405161065a9190612ae4565b60405180910390f35b34801561066f57600080fd5b50610678611630565b6040516106859190612c21565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612547565b611636565b6040516106c29190612ae4565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed919061251a565b6116ca565b005b34801561070057600080fd5b506107096117c2565b6040516107169190612c21565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107c090612ef1565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec90612ef1565b80156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b5050505050905090565b600061084e826117c8565b610884576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ca82611827565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610932576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109516118f5565b73ffffffffffffffffffffffffffffffffffffffff16146109b45761097d816109786118f5565b611636565b6109b3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a6e6118fd565b73ffffffffffffffffffffffffffffffffffffffff16610a8c610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612b81565b60405180910390fd5b80600a9080519060200190610af892919061232e565b5050565b6000610b06611905565b6001546000540303905090565b610b1e83838361190a565b505050565b600e5481565b610b316118fd565b73ffffffffffffffffffffffffffffffffffffffff16610b4f610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90612b81565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610bcb90612a68565b60006040518083038185875af1925050503d8060008114610c08576040519150601f19603f3d011682016040523d82523d6000602084013e610c0d565b606091505b5050905080610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890612be1565b60405180910390fd5b50565b610c6f8383836040518060200160405280600081525061152b565b505050565b600a8054610c8190612ef1565b80601f0160208091040260200160405190810160405280929190818152602001828054610cad90612ef1565b8015610cfa5780601f10610ccf57610100808354040283529160200191610cfa565b820191906000526020600020905b815481529060010190602001808311610cdd57829003601f168201915b505050505081565b610d0a6118fd565b73ffffffffffffffffffffffffffffffffffffffff16610d28610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590612b81565b60405180910390fd5b8060099080519060200190610d9492919061232e565b5050565b6000610da382611827565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e6b6118fd565b73ffffffffffffffffffffffffffffffffffffffff16610e89610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690612b81565b60405180910390fd5b610ee96000611cb4565b565b610ef36118fd565b73ffffffffffffffffffffffffffffffffffffffff16610f11610f93565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90612b81565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fc56118fd565b73ffffffffffffffffffffffffffffffffffffffff16610fe3610f93565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103090612b81565b60405180910390fd5b80600b8190555050565b61104b6118fd565b73ffffffffffffffffffffffffffffffffffffffff16611069610f93565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612b81565b60405180910390fd5b80600e8190555050565b6060600380546110d890612ef1565b80601f016020809104026020016040519081016040528092919081815260200182805461110490612ef1565b80156111515780601f1061112657610100808354040283529160200191611151565b820191906000526020600020905b81548152906001019060200180831161113457829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546111799190612d26565b83611182610afc565b61118c9190612d26565b1080156111e55750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111e29190612d26565b11155b905080156111f257600091505b81836111fe9190612dad565b341015611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790612bc1565b60405180910390fd5b6001600f5461124f9190612d26565b83611258610afc565b6112629190612d26565b106112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990612b41565b60405180910390fd5b601060009054906101000a900460ff166112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612b21565b60405180910390fd5b6001600c546113009190612d26565b8310611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890612c01565b60405180910390fd5b801561139e5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113969190612d26565b925050819055505b6113a83384611d7a565b505050565b6113b56118f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114276118f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d46118f5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115199190612ae4565b60405180910390a35050565b600d5481565b61153684848461190a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115985761156184848484611d98565b611597576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115a9826117c8565b6115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90612ba1565b60405180910390fd5b60096115f383611ef8565b600a60405160200161160793929190612a37565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116d26118fd565b73ffffffffffffffffffffffffffffffffffffffff166116f0610f93565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90612b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90612b61565b60405180910390fd5b6117bf81611cb4565b50565b600c5481565b6000816117d3611905565b111580156117e2575060005482105b8015611820575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611836611905565b116118be576000548110156118bd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118bb575b60008114156118b1576004600083600190039350838152602001908152602001600020549050611886565b80925050506118f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b600061191582611827565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461197c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661199d6118f5565b73ffffffffffffffffffffffffffffffffffffffff1614806119cc57506119cb856119c66118f5565b611636565b5b80611a1157506119da6118f5565b73ffffffffffffffffffffffffffffffffffffffff166119f984610843565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a4a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ab1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611abe8585856001612059565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611bbb8661205f565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611c45576000600184019050600060046000838152602001908152602001600020541415611c43576000548114611c42578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cad8585856001612069565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d9482826040518060200160405280600081525061206f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbe6118f5565b8786866040518563ffffffff1660e01b8152600401611de09493929190612a98565b602060405180830381600087803b158015611dfa57600080fd5b505af1925050508015611e2b57506040513d601f19601f82011682018060405250810190611e28919061270a565b60015b611ea5573d8060008114611e5b576040519150601f19603f3d011682016040523d82523d6000602084013e611e60565b606091505b50600081511415611e9d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f40576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612054565b600082905060005b60008214611f72578080611f5b90612f54565b915050600a82611f6b9190612d7c565b9150611f48565b60008167ffffffffffffffff811115611f8e57611f8d61308a565b5b6040519080825280601f01601f191660200182016040528015611fc05781602001600182028036833780820191505090505b5090505b6000851461204d57600182611fd99190612e07565b9150600a85611fe89190612f9d565b6030611ff49190612d26565b60f81b81838151811061200a5761200961305b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120469190612d7c565b9450611fc4565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120dc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612117576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121246000858386612059565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161218960018514612324565b901b60a042901b6121998661205f565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461229d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461224d6000878480600101955087611d98565b612283576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121de57826000541461229857600080fd5b612308565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061229e575b81600081905550505061231e6000858386612069565b50505050565b6000819050919050565b82805461233a90612ef1565b90600052602060002090601f01602090048101928261235c57600085556123a3565b82601f1061237557805160ff19168380011785556123a3565b828001600101855582156123a3579182015b828111156123a2578251825591602001919060010190612387565b5b5090506123b091906123b4565b5090565b5b808211156123cd5760008160009055506001016123b5565b5090565b60006123e46123df84612c61565b612c3c565b905082815260208101848484011115612400576123ff6130be565b5b61240b848285612eaf565b509392505050565b600061242661242184612c92565b612c3c565b905082815260208101848484011115612442576124416130be565b5b61244d848285612eaf565b509392505050565b60008135905061246481613275565b92915050565b6000813590506124798161328c565b92915050565b60008135905061248e816132a3565b92915050565b6000815190506124a3816132a3565b92915050565b600082601f8301126124be576124bd6130b9565b5b81356124ce8482602086016123d1565b91505092915050565b600082601f8301126124ec576124eb6130b9565b5b81356124fc848260208601612413565b91505092915050565b600081359050612514816132ba565b92915050565b6000602082840312156125305761252f6130c8565b5b600061253e84828501612455565b91505092915050565b6000806040838503121561255e5761255d6130c8565b5b600061256c85828601612455565b925050602061257d85828601612455565b9150509250929050565b6000806000606084860312156125a05761259f6130c8565b5b60006125ae86828701612455565b93505060206125bf86828701612455565b92505060406125d086828701612505565b9150509250925092565b600080600080608085870312156125f4576125f36130c8565b5b600061260287828801612455565b945050602061261387828801612455565b935050604061262487828801612505565b925050606085013567ffffffffffffffff811115612645576126446130c3565b5b612651878288016124a9565b91505092959194509250565b60008060408385031215612674576126736130c8565b5b600061268285828601612455565b92505060206126938582860161246a565b9150509250929050565b600080604083850312156126b4576126b36130c8565b5b60006126c285828601612455565b92505060206126d385828601612505565b9150509250929050565b6000602082840312156126f3576126f26130c8565b5b60006127018482850161247f565b91505092915050565b6000602082840312156127205761271f6130c8565b5b600061272e84828501612494565b91505092915050565b60006020828403121561274d5761274c6130c8565b5b600082013567ffffffffffffffff81111561276b5761276a6130c3565b5b612777848285016124d7565b91505092915050565b600060208284031215612796576127956130c8565b5b60006127a484828501612505565b91505092915050565b6127b681612e3b565b82525050565b6127c581612e4d565b82525050565b60006127d682612cd8565b6127e08185612cee565b93506127f0818560208601612ebe565b6127f9816130cd565b840191505092915050565b600061280f82612ce3565b6128198185612d0a565b9350612829818560208601612ebe565b612832816130cd565b840191505092915050565b600061284882612ce3565b6128528185612d1b565b9350612862818560208601612ebe565b80840191505092915050565b6000815461287b81612ef1565b6128858186612d1b565b945060018216600081146128a057600181146128b1576128e4565b60ff198316865281860193506128e4565b6128ba85612cc3565b60005b838110156128dc578154818901526001820191506020810190506128bd565b838801955050505b50505092915050565b60006128fa601783612d0a565b9150612905826130de565b602082019050919050565b600061291d600783612d0a565b915061292882613107565b602082019050919050565b6000612940602683612d0a565b915061294b82613130565b604082019050919050565b6000612963602083612d0a565b915061296e8261317f565b602082019050919050565b6000612986602f83612d0a565b9150612991826131a8565b604082019050919050565b60006129a9601d83612d0a565b91506129b4826131f7565b602082019050919050565b60006129cc600083612cff565b91506129d782613220565b600082019050919050565b60006129ef601083612d0a565b91506129fa82613223565b602082019050919050565b6000612a12601383612d0a565b9150612a1d8261324c565b602082019050919050565b612a3181612ea5565b82525050565b6000612a43828661286e565b9150612a4f828561283d565b9150612a5b828461286e565b9150819050949350505050565b6000612a73826129bf565b9150819050919050565b6000602082019050612a9260008301846127ad565b92915050565b6000608082019050612aad60008301876127ad565b612aba60208301866127ad565b612ac76040830185612a28565b8181036060830152612ad981846127cb565b905095945050505050565b6000602082019050612af960008301846127bc565b92915050565b60006020820190508181036000830152612b198184612804565b905092915050565b60006020820190508181036000830152612b3a816128ed565b9050919050565b60006020820190508181036000830152612b5a81612910565b9050919050565b60006020820190508181036000830152612b7a81612933565b9050919050565b60006020820190508181036000830152612b9a81612956565b9050919050565b60006020820190508181036000830152612bba81612979565b9050919050565b60006020820190508181036000830152612bda8161299c565b9050919050565b60006020820190508181036000830152612bfa816129e2565b9050919050565b60006020820190508181036000830152612c1a81612a05565b9050919050565b6000602082019050612c366000830184612a28565b92915050565b6000612c46612c57565b9050612c528282612f23565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7c57612c7b61308a565b5b612c85826130cd565b9050602081019050919050565b600067ffffffffffffffff821115612cad57612cac61308a565b5b612cb6826130cd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3182612ea5565b9150612d3c83612ea5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7157612d70612fce565b5b828201905092915050565b6000612d8782612ea5565b9150612d9283612ea5565b925082612da257612da1612ffd565b5b828204905092915050565b6000612db882612ea5565b9150612dc383612ea5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dfc57612dfb612fce565b5b828202905092915050565b6000612e1282612ea5565b9150612e1d83612ea5565b925082821015612e3057612e2f612fce565b5b828203905092915050565b6000612e4682612e85565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612edc578082015181840152602081019050612ec1565b83811115612eeb576000848401525b50505050565b60006002820490506001821680612f0957607f821691505b60208210811415612f1d57612f1c61302c565b5b50919050565b612f2c826130cd565b810181811067ffffffffffffffff82111715612f4b57612f4a61308a565b5b80604052505050565b6000612f5f82612ea5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f9257612f91612fce565b5b600182019050919050565b6000612fa882612ea5565b9150612fb383612ea5565b925082612fc357612fc2612ffd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61327e81612e3b565b811461328957600080fd5b50565b61329581612e4d565b81146132a057600080fd5b50565b6132ac81612e59565b81146132b757600080fd5b50565b6132c381612ea5565b81146132ce57600080fd5b5056fea2646970667358221220d97e3062752b5464111efbb36e02c8151da652b44c0280d7003d2e2050afdaff64736f6c63430008070033
Deployed Bytecode Sourcemap
76688:2504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13245:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18258:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20326:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19786:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78580:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12299:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21212:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76964:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78983:206;;;;;;;;;;;;;:::i;:::-;;21453:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76798:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78484:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18047:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13924:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43766:103;;;;;;;;;;;;;:::i;:::-;;78891:84;;;;;;;;;;;;;:::i;:::-;;43115:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78791:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78688:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18427:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76840:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77315:685;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20602:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76920:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21709:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78124:352;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77044:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77004:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20981:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44024:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76883:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13245:615;13330:4;13645:10;13630:25;;:11;:25;;;;:102;;;;13722:10;13707:25;;:11;:25;;;;13630:102;:179;;;;13799:10;13784:25;;:11;:25;;;;13630:179;13610:199;;13245:615;;;:::o;18258:100::-;18312:13;18345:5;18338:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18258:100;:::o;20326:204::-;20394:7;20419:16;20427:7;20419;:16::i;:::-;20414:64;;20444:34;;;;;;;;;;;;;;20414:64;20498:15;:24;20514:7;20498:24;;;;;;;;;;;;;;;;;;;;;20491:31;;20326:204;;;:::o;19786:474::-;19859:13;19891:27;19910:7;19891:18;:27::i;:::-;19859:61;;19941:5;19935:11;;:2;:11;;;19931:48;;;19955:24;;;;;;;;;;;;;;19931:48;20019:5;19996:28;;:19;:17;:19::i;:::-;:28;;;19992:175;;20044:44;20061:5;20068:19;:17;:19::i;:::-;20044:16;:44::i;:::-;20039:128;;20116:35;;;;;;;;;;;;;;20039:128;19992:175;20206:2;20179:15;:24;20195:7;20179:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20244:7;20240:2;20224:28;;20233:5;20224:28;;;;;;;;;;;;19848:412;19786:474;;:::o;78580:100::-;43346:12;:10;:12::i;:::-;43335:23;;:7;:5;:7::i;:::-;:23;;;43327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78664:10:::1;78652:9;:22;;;;;;;;;;;;:::i;:::-;;78580:100:::0;:::o;12299:315::-;12352:7;12580:15;:13;:15::i;:::-;12565:12;;12549:13;;:28;:46;12542:53;;12299:315;:::o;21212:170::-;21346:28;21356:4;21362:2;21366:7;21346:9;:28::i;:::-;21212:170;;;:::o;76964:31::-;;;;:::o;78983:206::-;43346:12;:10;:12::i;:::-;43335:23;;:7;:5;:7::i;:::-;:23;;;43327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79034:12:::1;79060:10;79052:24;;79098:21;79052:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79033:101;;;79153:7;79145:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;79022:167;78983:206::o:0;21453:185::-;21591:39;21608:4;21614:2;21618:7;21591:39;;;;;;;;;;;;:16;:39::i;:::-;21453:185;;;:::o;76798:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78484:88::-;43346:12;:10;:12::i;:::-;43335:23;;:7;:5;:7::i;:::-;:23;;;43327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78561:3:::1;78551:7;:13;;;;;;;;;;;;:::i;:::-;;78484:88:::0;:::o;18047:144::-;18111:7;18154:27;18173:7;18154:18;:27::i;:::-;18131:52;;18047:144;;;:::o;13924:224::-;13988:7;14029:1;14012:19;;:5;:19;;;14008:60;;;14040:28;;;;;;;;;;;;;;14008:60;9263:13;14086:18;:25;14105:5;14086:25;;;;;;;;;;;;;;;;:54;14079:61;;13924:224;;;:::o;43766:103::-;43346:12;:10;:12::i;:::-;43335:23;;:7;:5;:7::i;:::-;:23;;;43327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43831:30:::1;43858:1;43831:18;:30::i;:::-;43766:103::o:0;78891:84::-;43346:12;:10;:12::i;:::-;43335:23;;:7;:5;:7::i;:::-;:23;;;43327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78956:11:::1;;;;;;;;;;;78955:12;78941:11;;:26;;;;;;;;;;;;;;;;;;78891:84::o:0;43115:87::-;43161:7;43188:6;;;;;;;;;;;43181:13;;43115:87;:::o;78791:92::-;43346:12;:10;:12::i;:::-;43335:23;;:7;:5;:7::i;:::-;:23;;;43327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78866:9:::1;78858:5;:17;;;;78791:92:::0;:::o;78688:95::-;43346:12;:10;:12::i;:::-;43335:23;;:7;:5;:7::i;:::-;:23;;;43327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78769:6:::1;78757:9;:18;;;;78688:95:::0;:::o;18427:104::-;18483:13;18516:7;18509:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18427:104;:::o;76840:34::-;;;;:::o;77315:685::-;77372:12;77387:5;;77372:20;;77403:11;77455:1;77443:9;;:13;;;;:::i;:::-;77435:5;77419:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77418:115;;;;;77516:16;;77507:5;77475:17;:29;77493:10;77475:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;77418:115;77403:131;;77551:6;77547:47;;;77581:1;77574:8;;77547:47;77635:4;77627:5;:12;;;;:::i;:::-;77614:9;:25;;77606:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;77728:1;77716:9;;:13;;;;:::i;:::-;77708:5;77692:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77684:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;77760:11;;;;;;;;;;;77752:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;77837:1;77826:8;;:12;;;;:::i;:::-;77818:5;:20;77810:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;77879:6;77875:77;;;77935:5;77902:17;:29;77920:10;77902:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;77875:77;77964:28;77974:10;77986:5;77964:9;:28::i;:::-;77361:639;;77315:685;:::o;20602:308::-;20713:19;:17;:19::i;:::-;20701:31;;:8;:31;;;20697:61;;;20741:17;;;;;;;;;;;;;;20697:61;20823:8;20771:18;:39;20790:19;:17;:19::i;:::-;20771:39;;;;;;;;;;;;;;;:49;20811:8;20771:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20883:8;20847:55;;20862:19;:17;:19::i;:::-;20847:55;;;20893:8;20847:55;;;;;;:::i;:::-;;;;;;;;20602:308;;:::o;76920:35::-;;;;:::o;21709:396::-;21876:28;21886:4;21892:2;21896:7;21876:9;:28::i;:::-;21937:1;21919:2;:14;;;:19;21915:183;;21958:56;21989:4;21995:2;21999:7;22008:5;21958:30;:56::i;:::-;21953:145;;22042:40;;;;;;;;;;;;;;21953:145;21915:183;21709:396;;;;:::o;78124:352::-;78242:13;78295:16;78303:7;78295;:16::i;:::-;78273:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;78428:7;78437:18;:7;:16;:18::i;:::-;78457:9;78411:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78397:71;;78124:352;;;:::o;77044:30::-;;;;;;;;;;;;;:::o;77004:31::-;;;;:::o;20981:164::-;21078:4;21102:18;:25;21121:5;21102:25;;;;;;;;;;;;;;;:35;21128:8;21102:35;;;;;;;;;;;;;;;;;;;;;;;;;21095:42;;20981:164;;;;:::o;44024:201::-;43346:12;:10;:12::i;:::-;43335:23;;:7;:5;:7::i;:::-;:23;;;43327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44133:1:::1;44113:22;;:8;:22;;;;44105:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44189:28;44208:8;44189:18;:28::i;:::-;44024:201:::0;:::o;76883:28::-;;;;:::o;22360:273::-;22417:4;22473:7;22454:15;:13;:15::i;:::-;:26;;:66;;;;;22507:13;;22497:7;:23;22454:66;:152;;;;;22605:1;10033:8;22558:17;:26;22576:7;22558:26;;;;;;;;;;;;:43;:48;22454:152;22434:172;;22360:273;;;:::o;15562:1129::-;15629:7;15649:12;15664:7;15649:22;;15732:4;15713:15;:13;:15::i;:::-;:23;15709:915;;15766:13;;15759:4;:20;15755:869;;;15804:14;15821:17;:23;15839:4;15821:23;;;;;;;;;;;;15804:40;;15937:1;10033:8;15910:6;:23;:28;15906:699;;;16429:113;16446:1;16436:6;:11;16429:113;;;16489:17;:25;16507:6;;;;;;;16489:25;;;;;;;;;;;;16480:34;;16429:113;;;16575:6;16568:13;;;;;;15906:699;15781:843;15755:869;15709:915;16652:31;;;;;;;;;;;;;;15562:1129;;;;:::o;36342:105::-;36402:7;36429:10;36422:17;;36342:105;:::o;41786:98::-;41839:7;41866:10;41859:17;;41786:98;:::o;11822:92::-;11878:7;11822:92;:::o;27599:2515::-;27714:27;27744;27763:7;27744:18;:27::i;:::-;27714:57;;27829:4;27788:45;;27804:19;27788:45;;;27784:86;;27842:28;;;;;;;;;;;;;;27784:86;27883:22;27932:4;27909:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27953:43;27970:4;27976:19;:17;:19::i;:::-;27953:16;:43::i;:::-;27909:87;:147;;;;28037:19;:17;:19::i;:::-;28013:43;;:20;28025:7;28013:11;:20::i;:::-;:43;;;27909:147;27883:174;;28075:17;28070:66;;28101:35;;;;;;;;;;;;;;28070:66;28165:1;28151:16;;:2;:16;;;28147:52;;;28176:23;;;;;;;;;;;;;;28147:52;28212:43;28234:4;28240:2;28244:7;28253:1;28212:21;:43::i;:::-;28328:15;:24;28344:7;28328:24;;;;;;;;;;;;28321:31;;;;;;;;;;;28720:18;:24;28739:4;28720:24;;;;;;;;;;;;;;;;28718:26;;;;;;;;;;;;28789:18;:22;28808:2;28789:22;;;;;;;;;;;;;;;;28787:24;;;;;;;;;;;10315:8;9917:3;29170:15;:41;;29128:21;29146:2;29128:17;:21::i;:::-;:84;:128;29082:17;:26;29100:7;29082:26;;;;;;;;;;;:174;;;;29426:1;10315:8;29376:19;:46;:51;29372:626;;;29448:19;29480:1;29470:7;:11;29448:33;;29637:1;29603:17;:30;29621:11;29603:30;;;;;;;;;;;;:35;29599:384;;;29741:13;;29726:11;:28;29722:242;;29921:19;29888:17;:30;29906:11;29888:30;;;;;;;;;;;:52;;;;29722:242;29599:384;29429:569;29372:626;30045:7;30041:2;30026:27;;30035:4;30026:27;;;;;;;;;;;;30064:42;30085:4;30091:2;30095:7;30104:1;30064:20;:42::i;:::-;27703:2411;;27599:2515;;;:::o;44385:191::-;44459:16;44478:6;;;;;;;;;;;44459:25;;44504:8;44495:6;;:17;;;;;;;;;;;;;;;;;;44559:8;44528:40;;44549:8;44528:40;;;;;;;;;;;;44448:128;44385:191;:::o;22717:104::-;22786:27;22796:2;22800:8;22786:27;;;;;;;;;;;;:9;:27::i;:::-;22717:104;;:::o;33811:716::-;33974:4;34020:2;33995:45;;;34041:19;:17;:19::i;:::-;34062:4;34068:7;34077:5;33995:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33991:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34295:1;34278:6;:13;:18;34274:235;;;34324:40;;;;;;;;;;;;;;34274:235;34467:6;34461:13;34452:6;34448:2;34444:15;34437:38;33991:529;34164:54;;;34154:64;;;:6;:64;;;;34147:71;;;33811:716;;;;;;:::o;38987:723::-;39043:13;39273:1;39264:5;:10;39260:53;;;39291:10;;;;;;;;;;;;;;;;;;;;;39260:53;39323:12;39338:5;39323:20;;39354:14;39379:78;39394:1;39386:4;:9;39379:78;;39412:8;;;;;:::i;:::-;;;;39443:2;39435:10;;;;;:::i;:::-;;;39379:78;;;39467:19;39499:6;39489:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39467:39;;39517:154;39533:1;39524:5;:10;39517:154;;39561:1;39551:11;;;;;:::i;:::-;;;39628:2;39620:5;:10;;;;:::i;:::-;39607:2;:24;;;;:::i;:::-;39594:39;;39577:6;39584;39577:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39657:2;39648:11;;;;;:::i;:::-;;;39517:154;;;39695:6;39681:21;;;;;38987:723;;;;:::o;35175:159::-;;;;;:::o;19347:148::-;19411:14;19472:5;19462:15;;19347:148;;;:::o;35993:158::-;;;;;:::o;23194:2236::-;23317:20;23340:13;;23317:36;;23382:1;23368:16;;:2;:16;;;23364:48;;;23393:19;;;;;;;;;;;;;;23364:48;23439:1;23427:8;:13;23423:44;;;23449:18;;;;;;;;;;;;;;23423:44;23480:61;23510:1;23514:2;23518:12;23532:8;23480:21;:61::i;:::-;24084:1;9400:2;24055:1;:25;;24054:31;24042:8;:44;24016:18;:22;24035:2;24016:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10180:3;24485:29;24512:1;24500:8;:13;24485:14;:29::i;:::-;:56;;9917:3;24422:15;:41;;24380:21;24398:2;24380:17;:21::i;:::-;:84;:162;24329:17;:31;24347:12;24329:31;;;;;;;;;;;:213;;;;24559:20;24582:12;24559:35;;24609:11;24638:8;24623:12;:23;24609:37;;24685:1;24667:2;:14;;;:19;24663:635;;24707:313;24763:12;24759:2;24738:38;;24755:1;24738:38;;;;;;;;;;;;24804:69;24843:1;24847:2;24851:14;;;;;;24867:5;24804:30;:69::i;:::-;24799:174;;24909:40;;;;;;;;;;;;;;24799:174;25015:3;25000:12;:18;24707:313;;25101:12;25084:13;;:29;25080:43;;25115:8;;;25080:43;24663:635;;;25164:119;25220:14;;;;;;25216:2;25195:40;;25212:1;25195:40;;;;;;;;;;;;25278:3;25263:12;:18;25164:119;;24663:635;25328:12;25312:13;:28;;;;23793:1559;;25362:60;25391:1;25395:2;25399:12;25413:8;25362:20;:60::i;:::-;23306:2124;23194:2236;;;:::o;19582:142::-;19640:14;19701:5;19691:15;;19582:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:365::-;9905:3;9926:66;9990:1;9985:3;9926:66;:::i;:::-;9919:73;;10001:93;10090:3;10001:93;:::i;:::-;10119:2;10114:3;10110:12;10103:19;;9763:365;;;:::o;10134:366::-;10276:3;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10373:93;10462:3;10373:93;:::i;:::-;10491:2;10486:3;10482:12;10475:19;;10134:366;;;:::o;10506:::-;10648:3;10669:67;10733:2;10728:3;10669:67;:::i;:::-;10662:74;;10745:93;10834:3;10745:93;:::i;:::-;10863:2;10858:3;10854:12;10847:19;;10506:366;;;:::o;10878:::-;11020:3;11041:67;11105:2;11100:3;11041:67;:::i;:::-;11034:74;;11117:93;11206:3;11117:93;:::i;:::-;11235:2;11230:3;11226:12;11219:19;;10878:366;;;:::o;11250:::-;11392:3;11413:67;11477:2;11472:3;11413:67;:::i;:::-;11406:74;;11489:93;11578:3;11489:93;:::i;:::-;11607:2;11602:3;11598:12;11591:19;;11250:366;;;:::o;11622:398::-;11781:3;11802:83;11883:1;11878:3;11802:83;:::i;:::-;11795:90;;11894:93;11983:3;11894:93;:::i;:::-;12012:1;12007:3;12003:11;11996:18;;11622:398;;;:::o;12026:366::-;12168:3;12189:67;12253:2;12248:3;12189:67;:::i;:::-;12182:74;;12265:93;12354:3;12265:93;:::i;:::-;12383:2;12378:3;12374:12;12367:19;;12026:366;;;:::o;12398:::-;12540:3;12561:67;12625:2;12620:3;12561:67;:::i;:::-;12554:74;;12637:93;12726:3;12637:93;:::i;:::-;12755:2;12750:3;12746:12;12739:19;;12398:366;;;:::o;12770:118::-;12857:24;12875:5;12857:24;:::i;:::-;12852:3;12845:37;12770:118;;:::o;12894:583::-;13116:3;13138:92;13226:3;13217:6;13138:92;:::i;:::-;13131:99;;13247:95;13338:3;13329:6;13247:95;:::i;:::-;13240:102;;13359:92;13447:3;13438:6;13359:92;:::i;:::-;13352:99;;13468:3;13461:10;;12894:583;;;;;;:::o;13483:379::-;13667:3;13689:147;13832:3;13689:147;:::i;:::-;13682:154;;13853:3;13846:10;;13483:379;;;:::o;13868:222::-;13961:4;13999:2;13988:9;13984:18;13976:26;;14012:71;14080:1;14069:9;14065:17;14056:6;14012:71;:::i;:::-;13868:222;;;;:::o;14096:640::-;14291:4;14329:3;14318:9;14314:19;14306:27;;14343:71;14411:1;14400:9;14396:17;14387:6;14343:71;:::i;:::-;14424:72;14492:2;14481:9;14477:18;14468:6;14424:72;:::i;:::-;14506;14574:2;14563:9;14559:18;14550:6;14506:72;:::i;:::-;14625:9;14619:4;14615:20;14610:2;14599:9;14595:18;14588:48;14653:76;14724:4;14715:6;14653:76;:::i;:::-;14645:84;;14096:640;;;;;;;:::o;14742:210::-;14829:4;14867:2;14856:9;14852:18;14844:26;;14880:65;14942:1;14931:9;14927:17;14918:6;14880:65;:::i;:::-;14742:210;;;;:::o;14958:313::-;15071:4;15109:2;15098:9;15094:18;15086:26;;15158:9;15152:4;15148:20;15144:1;15133:9;15129:17;15122:47;15186:78;15259:4;15250:6;15186:78;:::i;:::-;15178:86;;14958:313;;;;:::o;15277:419::-;15443:4;15481:2;15470:9;15466:18;15458:26;;15530:9;15524:4;15520:20;15516:1;15505:9;15501:17;15494:47;15558:131;15684:4;15558:131;:::i;:::-;15550:139;;15277:419;;;:::o;15702:::-;15868:4;15906:2;15895:9;15891:18;15883:26;;15955:9;15949:4;15945:20;15941:1;15930:9;15926:17;15919:47;15983:131;16109:4;15983:131;:::i;:::-;15975:139;;15702:419;;;:::o;16127:::-;16293:4;16331:2;16320:9;16316:18;16308:26;;16380:9;16374:4;16370:20;16366:1;16355:9;16351:17;16344:47;16408:131;16534:4;16408:131;:::i;:::-;16400:139;;16127:419;;;:::o;16552:::-;16718:4;16756:2;16745:9;16741:18;16733:26;;16805:9;16799:4;16795:20;16791:1;16780:9;16776:17;16769:47;16833:131;16959:4;16833:131;:::i;:::-;16825:139;;16552:419;;;:::o;16977:::-;17143:4;17181:2;17170:9;17166:18;17158:26;;17230:9;17224:4;17220:20;17216:1;17205:9;17201:17;17194:47;17258:131;17384:4;17258:131;:::i;:::-;17250:139;;16977:419;;;:::o;17402:::-;17568:4;17606:2;17595:9;17591:18;17583:26;;17655:9;17649:4;17645:20;17641:1;17630:9;17626:17;17619:47;17683:131;17809:4;17683:131;:::i;:::-;17675:139;;17402:419;;;:::o;17827:::-;17993:4;18031:2;18020:9;18016:18;18008:26;;18080:9;18074:4;18070:20;18066:1;18055:9;18051:17;18044:47;18108:131;18234:4;18108:131;:::i;:::-;18100:139;;17827:419;;;:::o;18252:::-;18418:4;18456:2;18445:9;18441:18;18433:26;;18505:9;18499:4;18495:20;18491:1;18480:9;18476:17;18469:47;18533:131;18659:4;18533:131;:::i;:::-;18525:139;;18252:419;;;:::o;18677:222::-;18770:4;18808:2;18797:9;18793:18;18785:26;;18821:71;18889:1;18878:9;18874:17;18865:6;18821:71;:::i;:::-;18677:222;;;;:::o;18905:129::-;18939:6;18966:20;;:::i;:::-;18956:30;;18995:33;19023:4;19015:6;18995:33;:::i;:::-;18905:129;;;:::o;19040:75::-;19073:6;19106:2;19100:9;19090:19;;19040:75;:::o;19121:307::-;19182:4;19272:18;19264:6;19261:30;19258:56;;;19294:18;;:::i;:::-;19258:56;19332:29;19354:6;19332:29;:::i;:::-;19324:37;;19416:4;19410;19406:15;19398:23;;19121:307;;;:::o;19434:308::-;19496:4;19586:18;19578:6;19575:30;19572:56;;;19608:18;;:::i;:::-;19572:56;19646:29;19668:6;19646:29;:::i;:::-;19638:37;;19730:4;19724;19720:15;19712:23;;19434:308;;;:::o;19748:141::-;19797:4;19820:3;19812:11;;19843:3;19840:1;19833:14;19877:4;19874:1;19864:18;19856:26;;19748:141;;;:::o;19895:98::-;19946:6;19980:5;19974:12;19964:22;;19895:98;;;:::o;19999:99::-;20051:6;20085:5;20079:12;20069:22;;19999:99;;;:::o;20104:168::-;20187:11;20221:6;20216:3;20209:19;20261:4;20256:3;20252:14;20237:29;;20104:168;;;;:::o;20278:147::-;20379:11;20416:3;20401:18;;20278:147;;;;:::o;20431:169::-;20515:11;20549:6;20544:3;20537:19;20589:4;20584:3;20580:14;20565:29;;20431:169;;;;:::o;20606:148::-;20708:11;20745:3;20730:18;;20606:148;;;;:::o;20760:305::-;20800:3;20819:20;20837:1;20819:20;:::i;:::-;20814:25;;20853:20;20871:1;20853:20;:::i;:::-;20848:25;;21007:1;20939:66;20935:74;20932:1;20929:81;20926:107;;;21013:18;;:::i;:::-;20926:107;21057:1;21054;21050:9;21043:16;;20760:305;;;;:::o;21071:185::-;21111:1;21128:20;21146:1;21128:20;:::i;:::-;21123:25;;21162:20;21180:1;21162:20;:::i;:::-;21157:25;;21201:1;21191:35;;21206:18;;:::i;:::-;21191:35;21248:1;21245;21241:9;21236:14;;21071:185;;;;:::o;21262:348::-;21302:7;21325:20;21343:1;21325:20;:::i;:::-;21320:25;;21359:20;21377:1;21359:20;:::i;:::-;21354:25;;21547:1;21479:66;21475:74;21472:1;21469:81;21464:1;21457:9;21450:17;21446:105;21443:131;;;21554:18;;:::i;:::-;21443:131;21602:1;21599;21595:9;21584:20;;21262:348;;;;:::o;21616:191::-;21656:4;21676:20;21694:1;21676:20;:::i;:::-;21671:25;;21710:20;21728:1;21710:20;:::i;:::-;21705:25;;21749:1;21746;21743:8;21740:34;;;21754:18;;:::i;:::-;21740:34;21799:1;21796;21792:9;21784:17;;21616:191;;;;:::o;21813:96::-;21850:7;21879:24;21897:5;21879:24;:::i;:::-;21868:35;;21813:96;;;:::o;21915:90::-;21949:7;21992:5;21985:13;21978:21;21967:32;;21915:90;;;:::o;22011:149::-;22047:7;22087:66;22080:5;22076:78;22065:89;;22011:149;;;:::o;22166:126::-;22203:7;22243:42;22236:5;22232:54;22221:65;;22166:126;;;:::o;22298:77::-;22335:7;22364:5;22353:16;;22298:77;;;:::o;22381:154::-;22465:6;22460:3;22455;22442:30;22527:1;22518:6;22513:3;22509:16;22502:27;22381:154;;;:::o;22541:307::-;22609:1;22619:113;22633:6;22630:1;22627:13;22619:113;;;22718:1;22713:3;22709:11;22703:18;22699:1;22694:3;22690:11;22683:39;22655:2;22652:1;22648:10;22643:15;;22619:113;;;22750:6;22747:1;22744:13;22741:101;;;22830:1;22821:6;22816:3;22812:16;22805:27;22741:101;22590:258;22541:307;;;:::o;22854:320::-;22898:6;22935:1;22929:4;22925:12;22915:22;;22982:1;22976:4;22972:12;23003:18;22993:81;;23059:4;23051:6;23047:17;23037:27;;22993:81;23121:2;23113:6;23110:14;23090:18;23087:38;23084:84;;;23140:18;;:::i;:::-;23084:84;22905:269;22854:320;;;:::o;23180:281::-;23263:27;23285:4;23263:27;:::i;:::-;23255:6;23251:40;23393:6;23381:10;23378:22;23357:18;23345:10;23342:34;23339:62;23336:88;;;23404:18;;:::i;:::-;23336:88;23444:10;23440:2;23433:22;23223:238;23180:281;;:::o;23467:233::-;23506:3;23529:24;23547:5;23529:24;:::i;:::-;23520:33;;23575:66;23568:5;23565:77;23562:103;;;23645:18;;:::i;:::-;23562:103;23692:1;23685:5;23681:13;23674:20;;23467:233;;;:::o;23706:176::-;23738:1;23755:20;23773:1;23755:20;:::i;:::-;23750:25;;23789:20;23807:1;23789:20;:::i;:::-;23784:25;;23828:1;23818:35;;23833:18;;:::i;:::-;23818:35;23874:1;23871;23867:9;23862:14;;23706:176;;;;:::o;23888:180::-;23936:77;23933:1;23926:88;24033:4;24030:1;24023:15;24057:4;24054:1;24047:15;24074:180;24122:77;24119:1;24112:88;24219:4;24216:1;24209:15;24243:4;24240:1;24233:15;24260:180;24308:77;24305:1;24298:88;24405:4;24402:1;24395:15;24429:4;24426:1;24419:15;24446:180;24494:77;24491:1;24484:88;24591:4;24588:1;24581:15;24615:4;24612:1;24605:15;24632:180;24680:77;24677:1;24670:88;24777:4;24774:1;24767:15;24801:4;24798:1;24791:15;24818:117;24927:1;24924;24917:12;24941:117;25050:1;25047;25040:12;25064:117;25173:1;25170;25163:12;25187:117;25296:1;25293;25286:12;25310:102;25351:6;25402:2;25398:7;25393:2;25386:5;25382:14;25378:28;25368:38;;25310:102;;;:::o;25418:173::-;25558:25;25554:1;25546:6;25542:14;25535:49;25418:173;:::o;25597:157::-;25737:9;25733:1;25725:6;25721:14;25714:33;25597:157;:::o;25760:225::-;25900:34;25896:1;25888:6;25884:14;25877:58;25969:8;25964:2;25956:6;25952:15;25945:33;25760:225;:::o;25991:182::-;26131:34;26127:1;26119:6;26115:14;26108:58;25991:182;:::o;26179:234::-;26319:34;26315:1;26307:6;26303:14;26296:58;26388:17;26383:2;26375:6;26371:15;26364:42;26179:234;:::o;26419:179::-;26559:31;26555:1;26547:6;26543:14;26536:55;26419:179;:::o;26604:114::-;;:::o;26724:166::-;26864:18;26860:1;26852:6;26848:14;26841:42;26724:166;:::o;26896:169::-;27036:21;27032:1;27024:6;27020:14;27013:45;26896:169;:::o;27071:122::-;27144:24;27162:5;27144:24;:::i;:::-;27137:5;27134:35;27124:63;;27183:1;27180;27173:12;27124:63;27071:122;:::o;27199:116::-;27269:21;27284:5;27269:21;:::i;:::-;27262:5;27259:32;27249:60;;27305:1;27302;27295:12;27249:60;27199:116;:::o;27321:120::-;27393:23;27410:5;27393:23;:::i;:::-;27386:5;27383:34;27373:62;;27431:1;27428;27421:12;27373:62;27321:120;:::o;27447:122::-;27520:24;27538:5;27520:24;:::i;:::-;27513:5;27510:35;27500:63;;27559:1;27556;27549:12;27500:63;27447:122;:::o
Swarm Source
ipfs://d97e3062752b5464111efbb36e02c8151da652b44c0280d7003d2e2050afdaff
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.