Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
500 TSFA
Holders
102
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 TSFALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TrustSupportFollowAnon
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-04 */ /** _____ _ |_ _| _ _ _ _ ___ | |_ | | | '_| | || | (_-< | _| |_| |_| \_,_| /__/ \__| ___ _ / __| _ _ _ __ _ __ ___ _ _ | |_ \__ \ | || | | '_ \ | '_ \ / _ \ | '_| | _| |___/ \_,_| | .__/ | .__/ \___/ |_| \__| |_| |_| ___ _ _ | __| ___ | | | | ___ __ __ __ | _| / _ \ | | | | / _ \ \ V V / |_| \___/ |_| |_| \___/ \_/\_/ __ _ _ _ ___ _ _ / _` | | ' \ / _ \ | ' \ \__,_| |_||_| \___/ |_||_| My name is not important but the Anon is. This is our chance to join Anon's party. Trust, Support, Follow Anon. 0.004e/500max (community funds) -> "Abstraction by anon" NFT Collection -> community */ // SPDX-License-Identifier: MIT // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Trust, Support, Follow Anon.sol pragma solidity ^0.8.15; contract TrustSupportFollowAnon is ERC721A, DefaultOperatorFilterer, Ownable { string public baseURI = "ipfs://bafybeidgu3qjbq5lf2yo3ned4algwybwglaqvu73bm2o7neo4q43yw3pzi/"; string public baseExtension = ".json"; uint256 public price = 0.004 ether; uint256 public maxSupply = 500; uint256 public maxPerTransaction = 5; mapping(address => bool) freeMintMapping; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor () ERC721A("Trust, Support, Follow Anon", "TSFA") { } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // Mint function Mint(uint256 amount) public payable callerIsUser{ require(amount <= maxPerTransaction, "Max Per Transaction!"); require(totalSupply() + amount <= maxSupply, "Sold Out!"); require(msg.value >= price * amount, "Insufficient!"); _safeMint(msg.sender, amount); } ///////////////////////////// // CONTRACT MANAGEMENT ///////////////////////////// function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } ///////////////////////////// // OPENSEA FILTER REGISTRY ///////////////////////////// function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806080016040528060438152602001620039dd60439139600990816200002e9190620006c7565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9081620000759190620006c7565b50660e35fa931a0000600b556101f4600c556005600d553480156200009957600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601b81526020017f54727573742c20537570706f72742c20466f6c6c6f7720416e6f6e00000000008152506040518060400160405280600481526020017f545346410000000000000000000000000000000000000000000000000000000081525081600290816200012e9190620006c7565b508060039081620001409190620006c7565b50620001516200037660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200034e57801562000214576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001da929190620007f3565b600060405180830381600087803b158015620001f557600080fd5b505af11580156200020a573d6000803e3d6000fd5b505050506200034d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ce576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000294929190620007f3565b600060405180830381600087803b158015620002af57600080fd5b505af1158015620002c4573d6000803e3d6000fd5b505050506200034c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000317919062000820565b600060405180830381600087803b1580156200033257600080fd5b505af115801562000347573d6000803e3d6000fd5b505050505b5b5b505062000370620003646200037f60201b60201c565b6200038760201b60201c565b6200083d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004cf57607f821691505b602082108103620004e557620004e462000487565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200054f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000510565b6200055b868362000510565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005a8620005a26200059c8462000573565b6200057d565b62000573565b9050919050565b6000819050919050565b620005c48362000587565b620005dc620005d382620005af565b8484546200051d565b825550505050565b600090565b620005f3620005e4565b62000600818484620005b9565b505050565b5b8181101562000628576200061c600082620005e9565b60018101905062000606565b5050565b601f82111562000677576200064181620004eb565b6200064c8462000500565b810160208510156200065c578190505b620006746200066b8562000500565b83018262000605565b50505b505050565b600082821c905092915050565b60006200069c600019846008026200067c565b1980831691505092915050565b6000620006b7838362000689565b9150826002028217905092915050565b620006d2826200044d565b67ffffffffffffffff811115620006ee57620006ed62000458565b5b620006fa8254620004b6565b620007078282856200062c565b600060209050601f8311600181146200073f57600084156200072a578287015190505b620007368582620006a9565b865550620007a6565b601f1984166200074f86620004eb565b60005b82811015620007795784890151825560018201915060208501945060208101905062000752565b8683101562000799578489015162000795601f89168262000689565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007db82620007ae565b9050919050565b620007ed81620007ce565b82525050565b60006040820190506200080a6000830185620007e2565b620008196020830184620007e2565b9392505050565b6000602082019050620008376000830184620007e2565b92915050565b613190806200084d6000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461054d578063d5abeb011461058a578063e985e9c5146105b5578063f2fde38b146105f25761019c565b8063a22cb465146104dd578063b88d4fde14610506578063c6682862146105225761019c565b80638da5cb5b116100c65780638da5cb5b1461043357806391b7f5ed1461045e57806395d89b4114610487578063a035b1fe146104b25761019c565b80636c0360eb146103b457806370a08231146103df578063715018a61461041c5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103075780634b980d671461032357806355f804b31461034e5780636352211e146103775761019c565b806323b872dd146102a95780633ccfd60b146102c557806341f43434146102dc5761019c565b806301ffc9a7146101a157806306fdde03146101de5780630788370314610209578063081812fc14610225578063095ea7b31461026257806318160ddd1461027e575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906122d3565b61061b565b6040516101d5919061231b565b60405180910390f35b3480156101ea57600080fd5b506101f36106ad565b60405161020091906123c6565b60405180910390f35b610223600480360381019061021e919061241e565b61073f565b005b34801561023157600080fd5b5061024c6004803603810190610247919061241e565b6108a6565b604051610259919061248c565b60405180910390f35b61027c600480360381019061027791906124d3565b610925565b005b34801561028a57600080fd5b50610293610a2f565b6040516102a09190612522565b60405180910390f35b6102c360048036038101906102be919061253d565b610a46565b005b3480156102d157600080fd5b506102da610b96565b005b3480156102e857600080fd5b506102f1610be7565b6040516102fe91906125ef565b60405180910390f35b610321600480360381019061031c919061253d565b610bf9565b005b34801561032f57600080fd5b50610338610d49565b6040516103459190612522565b60405180910390f35b34801561035a57600080fd5b506103756004803603810190610370919061273f565b610d4f565b005b34801561038357600080fd5b5061039e6004803603810190610399919061241e565b610d6a565b6040516103ab919061248c565b60405180910390f35b3480156103c057600080fd5b506103c9610d7c565b6040516103d691906123c6565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190612788565b610e0a565b6040516104139190612522565b60405180910390f35b34801561042857600080fd5b50610431610ec2565b005b34801561043f57600080fd5b50610448610ed6565b604051610455919061248c565b60405180910390f35b34801561046a57600080fd5b506104856004803603810190610480919061241e565b610f00565b005b34801561049357600080fd5b5061049c610f12565b6040516104a991906123c6565b60405180910390f35b3480156104be57600080fd5b506104c7610fa4565b6040516104d49190612522565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906127e1565b610faa565b005b610520600480360381019061051b91906128c2565b6110b4565b005b34801561052e57600080fd5b50610537611207565b60405161054491906123c6565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061241e565b611295565b60405161058191906123c6565b60405180910390f35b34801561059657600080fd5b5061059f611333565b6040516105ac9190612522565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612945565b611339565b6040516105e9919061231b565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612788565b6113cd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc906129b4565b80601f01602080910402602001604051908101604052809291908181526020018280546106e8906129b4565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a490612a31565b60405180910390fd5b600d548111156107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e990612a9d565b60405180910390fd5b600c54816107fe610a2f565b6108089190612aec565b1115610849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084090612b6c565b60405180910390fd5b80600b546108579190612b8c565b341015610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090612c1a565b60405180910390fd5b6108a33382611450565b50565b60006108b18261146e565b6108e7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a20576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161099d929190612c3a565b602060405180830381865afa1580156109ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109de9190612c78565b610a1f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a16919061248c565b60405180910390fd5b5b610a2a83836114cd565b505050565b6000610a39611611565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b84573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab857610ab384848461161a565b610b90565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b01929190612c3a565b602060405180830381865afa158015610b1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b429190612c78565b610b8357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b7a919061248c565b60405180910390fd5b5b610b8f84848461161a565b5b50505050565b610b9e61193c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610be4573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d37573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c6b57610c668484846119ba565b610d43565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cb4929190612c3a565b602060405180830381865afa158015610cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf59190612c78565b610d3657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d2d919061248c565b60405180910390fd5b5b610d428484846119ba565b5b50505050565b600d5481565b610d5761193c565b8060099081610d669190612e47565b5050565b6000610d75826119da565b9050919050565b60098054610d89906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610db5906129b4565b8015610e025780601f10610dd757610100808354040283529160200191610e02565b820191906000526020600020905b815481529060010190602001808311610de557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e71576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eca61193c565b610ed46000611aa6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f0861193c565b80600b8190555050565b606060038054610f21906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4d906129b4565b8015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b820191906000526020600020905b815481529060010190602001808311610f7d57829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611022929190612c3a565b602060405180830381865afa15801561103f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110639190612c78565b6110a457806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161109b919061248c565b60405180910390fd5b5b6110af8383611b6c565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111f3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111275761112285858585611c77565b611200565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611170929190612c3a565b602060405180830381865afa15801561118d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b19190612c78565b6111f257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111e9919061248c565b60405180910390fd5b5b6111ff85858585611c77565b5b5050505050565b600a8054611214906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611240906129b4565b801561128d5780601f106112625761010080835404028352916020019161128d565b820191906000526020600020905b81548152906001019060200180831161127057829003601f168201915b505050505081565b60606112a08261146e565b6112d6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112e0611cea565b90506000815103611300576040518060200160405280600081525061132b565b8061130a84611d7c565b60405160200161131b929190612f55565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113d561193c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90612feb565b60405180910390fd5b61144d81611aa6565b50565b61146a828260405180602001604052806000815250611dcc565b5050565b600081611479611611565b11158015611488575060005482105b80156114c6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114d882610d6a565b90508073ffffffffffffffffffffffffffffffffffffffff166114f9611e69565b73ffffffffffffffffffffffffffffffffffffffff161461155c5761152581611520611e69565b611339565b61155b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611625826119da565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461168c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061169884611e71565b915091506116ae81876116a9611e69565b611e98565b6116fa576116c3866116be611e69565b611339565b6116f9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611760576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61176d8686866001611edc565b801561177857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061184685611822888887611ee2565b7c020000000000000000000000000000000000000000000000000000000017611f0a565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118cc57600060018501905060006004600083815260200190815260200160002054036118ca5760005481146118c9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119348686866001611f35565b505050505050565b611944611f3b565b73ffffffffffffffffffffffffffffffffffffffff16611962610ed6565b73ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613057565b60405180910390fd5b565b6119d5838383604051806020016040528060008152506110b4565b505050565b600080829050806119e9611611565b11611a6f57600054811015611a6e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a6c575b60008103611a62576004600083600190039350838152602001908152602001600020549050611a38565b8092505050611aa1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611b79611e69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c26611e69565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6b919061231b565b60405180910390a35050565b611c82848484610a46565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ce457611cad84848484611f43565b611ce3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611cf9906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d25906129b4565b8015611d725780601f10611d4757610100808354040283529160200191611d72565b820191906000526020600020905b815481529060010190602001808311611d5557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611db757600184039350600a81066030018453600a8104905080611d95575b50828103602084039350808452505050919050565b611dd68383612093565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e6457600080549050600083820390505b611e166000868380600101945086611f43565b611e4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e03578160005414611e6157600080fd5b50505b505050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ef986868461224e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f69611e69565b8786866040518563ffffffff1660e01b8152600401611f8b94939291906130cc565b6020604051808303816000875af1925050508015611fc757506040513d601f19601f82011682018060405250810190611fc4919061312d565b60015b612040573d8060008114611ff7576040519150601f19603f3d011682016040523d82523d6000602084013e611ffc565b606091505b506000815103612038576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600082036120d3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120e06000848385611edc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612157836121486000866000611ee2565b61215185612257565b17611f0a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121f857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121bd565b5060008203612233576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122496000848385611f35565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122b08161227b565b81146122bb57600080fd5b50565b6000813590506122cd816122a7565b92915050565b6000602082840312156122e9576122e8612271565b5b60006122f7848285016122be565b91505092915050565b60008115159050919050565b61231581612300565b82525050565b6000602082019050612330600083018461230c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612370578082015181840152602081019050612355565b60008484015250505050565b6000601f19601f8301169050919050565b600061239882612336565b6123a28185612341565b93506123b2818560208601612352565b6123bb8161237c565b840191505092915050565b600060208201905081810360008301526123e0818461238d565b905092915050565b6000819050919050565b6123fb816123e8565b811461240657600080fd5b50565b600081359050612418816123f2565b92915050565b60006020828403121561243457612433612271565b5b600061244284828501612409565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124768261244b565b9050919050565b6124868161246b565b82525050565b60006020820190506124a1600083018461247d565b92915050565b6124b08161246b565b81146124bb57600080fd5b50565b6000813590506124cd816124a7565b92915050565b600080604083850312156124ea576124e9612271565b5b60006124f8858286016124be565b925050602061250985828601612409565b9150509250929050565b61251c816123e8565b82525050565b60006020820190506125376000830184612513565b92915050565b60008060006060848603121561255657612555612271565b5b6000612564868287016124be565b9350506020612575868287016124be565b925050604061258686828701612409565b9150509250925092565b6000819050919050565b60006125b56125b06125ab8461244b565b612590565b61244b565b9050919050565b60006125c78261259a565b9050919050565b60006125d9826125bc565b9050919050565b6125e9816125ce565b82525050565b600060208201905061260460008301846125e0565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61264c8261237c565b810181811067ffffffffffffffff8211171561266b5761266a612614565b5b80604052505050565b600061267e612267565b905061268a8282612643565b919050565b600067ffffffffffffffff8211156126aa576126a9612614565b5b6126b38261237c565b9050602081019050919050565b82818337600083830152505050565b60006126e26126dd8461268f565b612674565b9050828152602081018484840111156126fe576126fd61260f565b5b6127098482856126c0565b509392505050565b600082601f8301126127265761272561260a565b5b81356127368482602086016126cf565b91505092915050565b60006020828403121561275557612754612271565b5b600082013567ffffffffffffffff81111561277357612772612276565b5b61277f84828501612711565b91505092915050565b60006020828403121561279e5761279d612271565b5b60006127ac848285016124be565b91505092915050565b6127be81612300565b81146127c957600080fd5b50565b6000813590506127db816127b5565b92915050565b600080604083850312156127f8576127f7612271565b5b6000612806858286016124be565b9250506020612817858286016127cc565b9150509250929050565b600067ffffffffffffffff82111561283c5761283b612614565b5b6128458261237c565b9050602081019050919050565b600061286561286084612821565b612674565b9050828152602081018484840111156128815761288061260f565b5b61288c8482856126c0565b509392505050565b600082601f8301126128a9576128a861260a565b5b81356128b9848260208601612852565b91505092915050565b600080600080608085870312156128dc576128db612271565b5b60006128ea878288016124be565b94505060206128fb878288016124be565b935050604061290c87828801612409565b925050606085013567ffffffffffffffff81111561292d5761292c612276565b5b61293987828801612894565b91505092959194509250565b6000806040838503121561295c5761295b612271565b5b600061296a858286016124be565b925050602061297b858286016124be565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129cc57607f821691505b6020821081036129df576129de612985565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612a1b601e83612341565b9150612a26826129e5565b602082019050919050565b60006020820190508181036000830152612a4a81612a0e565b9050919050565b7f4d617820506572205472616e73616374696f6e21000000000000000000000000600082015250565b6000612a87601483612341565b9150612a9282612a51565b602082019050919050565b60006020820190508181036000830152612ab681612a7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612af7826123e8565b9150612b02836123e8565b9250828201905080821115612b1a57612b19612abd565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612b56600983612341565b9150612b6182612b20565b602082019050919050565b60006020820190508181036000830152612b8581612b49565b9050919050565b6000612b97826123e8565b9150612ba2836123e8565b9250828202612bb0816123e8565b91508282048414831517612bc757612bc6612abd565b5b5092915050565b7f496e73756666696369656e742100000000000000000000000000000000000000600082015250565b6000612c04600d83612341565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b6000604082019050612c4f600083018561247d565b612c5c602083018461247d565b9392505050565b600081519050612c72816127b5565b92915050565b600060208284031215612c8e57612c8d612271565b5b6000612c9c84828501612c63565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612cca565b612d118683612cca565b95508019841693508086168417925050509392505050565b6000612d44612d3f612d3a846123e8565b612590565b6123e8565b9050919050565b6000819050919050565b612d5e83612d29565b612d72612d6a82612d4b565b848454612cd7565b825550505050565b600090565b612d87612d7a565b612d92818484612d55565b505050565b5b81811015612db657612dab600082612d7f565b600181019050612d98565b5050565b601f821115612dfb57612dcc81612ca5565b612dd584612cba565b81016020851015612de4578190505b612df8612df085612cba565b830182612d97565b50505b505050565b600082821c905092915050565b6000612e1e60001984600802612e00565b1980831691505092915050565b6000612e378383612e0d565b9150826002028217905092915050565b612e5082612336565b67ffffffffffffffff811115612e6957612e68612614565b5b612e7382546129b4565b612e7e828285612dba565b600060209050601f831160018114612eb15760008415612e9f578287015190505b612ea98582612e2b565b865550612f11565b601f198416612ebf86612ca5565b60005b82811015612ee757848901518255600182019150602085019450602081019050612ec2565b86831015612f045784890151612f00601f891682612e0d565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612f2f82612336565b612f398185612f19565b9350612f49818560208601612352565b80840191505092915050565b6000612f618285612f24565b9150612f6d8284612f24565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fd5602683612341565b9150612fe082612f79565b604082019050919050565b6000602082019050818103600083015261300481612fc8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613041602083612341565b915061304c8261300b565b602082019050919050565b6000602082019050818103600083015261307081613034565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061309e82613077565b6130a88185613082565b93506130b8818560208601612352565b6130c18161237c565b840191505092915050565b60006080820190506130e1600083018761247d565b6130ee602083018661247d565b6130fb6040830185612513565b818103606083015261310d8184613093565b905095945050505050565b600081519050613127816122a7565b92915050565b60006020828403121561314357613142612271565b5b600061315184828501613118565b9150509291505056fea264697066735822122088d36b8e8862481ec620c87579d164d6b0fd24f0eac06047605e1c4555a57c1164736f6c63430008110033697066733a2f2f6261667962656964677533716a6271356c6632796f336e656434616c6777796277676c617176753733626d326f376e656f34713433797733707a692f
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461054d578063d5abeb011461058a578063e985e9c5146105b5578063f2fde38b146105f25761019c565b8063a22cb465146104dd578063b88d4fde14610506578063c6682862146105225761019c565b80638da5cb5b116100c65780638da5cb5b1461043357806391b7f5ed1461045e57806395d89b4114610487578063a035b1fe146104b25761019c565b80636c0360eb146103b457806370a08231146103df578063715018a61461041c5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103075780634b980d671461032357806355f804b31461034e5780636352211e146103775761019c565b806323b872dd146102a95780633ccfd60b146102c557806341f43434146102dc5761019c565b806301ffc9a7146101a157806306fdde03146101de5780630788370314610209578063081812fc14610225578063095ea7b31461026257806318160ddd1461027e575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906122d3565b61061b565b6040516101d5919061231b565b60405180910390f35b3480156101ea57600080fd5b506101f36106ad565b60405161020091906123c6565b60405180910390f35b610223600480360381019061021e919061241e565b61073f565b005b34801561023157600080fd5b5061024c6004803603810190610247919061241e565b6108a6565b604051610259919061248c565b60405180910390f35b61027c600480360381019061027791906124d3565b610925565b005b34801561028a57600080fd5b50610293610a2f565b6040516102a09190612522565b60405180910390f35b6102c360048036038101906102be919061253d565b610a46565b005b3480156102d157600080fd5b506102da610b96565b005b3480156102e857600080fd5b506102f1610be7565b6040516102fe91906125ef565b60405180910390f35b610321600480360381019061031c919061253d565b610bf9565b005b34801561032f57600080fd5b50610338610d49565b6040516103459190612522565b60405180910390f35b34801561035a57600080fd5b506103756004803603810190610370919061273f565b610d4f565b005b34801561038357600080fd5b5061039e6004803603810190610399919061241e565b610d6a565b6040516103ab919061248c565b60405180910390f35b3480156103c057600080fd5b506103c9610d7c565b6040516103d691906123c6565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190612788565b610e0a565b6040516104139190612522565b60405180910390f35b34801561042857600080fd5b50610431610ec2565b005b34801561043f57600080fd5b50610448610ed6565b604051610455919061248c565b60405180910390f35b34801561046a57600080fd5b506104856004803603810190610480919061241e565b610f00565b005b34801561049357600080fd5b5061049c610f12565b6040516104a991906123c6565b60405180910390f35b3480156104be57600080fd5b506104c7610fa4565b6040516104d49190612522565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906127e1565b610faa565b005b610520600480360381019061051b91906128c2565b6110b4565b005b34801561052e57600080fd5b50610537611207565b60405161054491906123c6565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061241e565b611295565b60405161058191906123c6565b60405180910390f35b34801561059657600080fd5b5061059f611333565b6040516105ac9190612522565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612945565b611339565b6040516105e9919061231b565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612788565b6113cd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc906129b4565b80601f01602080910402602001604051908101604052809291908181526020018280546106e8906129b4565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a490612a31565b60405180910390fd5b600d548111156107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e990612a9d565b60405180910390fd5b600c54816107fe610a2f565b6108089190612aec565b1115610849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084090612b6c565b60405180910390fd5b80600b546108579190612b8c565b341015610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090612c1a565b60405180910390fd5b6108a33382611450565b50565b60006108b18261146e565b6108e7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a20576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161099d929190612c3a565b602060405180830381865afa1580156109ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109de9190612c78565b610a1f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a16919061248c565b60405180910390fd5b5b610a2a83836114cd565b505050565b6000610a39611611565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b84573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab857610ab384848461161a565b610b90565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b01929190612c3a565b602060405180830381865afa158015610b1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b429190612c78565b610b8357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b7a919061248c565b60405180910390fd5b5b610b8f84848461161a565b5b50505050565b610b9e61193c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610be4573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d37573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c6b57610c668484846119ba565b610d43565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cb4929190612c3a565b602060405180830381865afa158015610cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf59190612c78565b610d3657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d2d919061248c565b60405180910390fd5b5b610d428484846119ba565b5b50505050565b600d5481565b610d5761193c565b8060099081610d669190612e47565b5050565b6000610d75826119da565b9050919050565b60098054610d89906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610db5906129b4565b8015610e025780601f10610dd757610100808354040283529160200191610e02565b820191906000526020600020905b815481529060010190602001808311610de557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e71576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eca61193c565b610ed46000611aa6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f0861193c565b80600b8190555050565b606060038054610f21906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4d906129b4565b8015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b820191906000526020600020905b815481529060010190602001808311610f7d57829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611022929190612c3a565b602060405180830381865afa15801561103f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110639190612c78565b6110a457806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161109b919061248c565b60405180910390fd5b5b6110af8383611b6c565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111f3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111275761112285858585611c77565b611200565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611170929190612c3a565b602060405180830381865afa15801561118d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b19190612c78565b6111f257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111e9919061248c565b60405180910390fd5b5b6111ff85858585611c77565b5b5050505050565b600a8054611214906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611240906129b4565b801561128d5780601f106112625761010080835404028352916020019161128d565b820191906000526020600020905b81548152906001019060200180831161127057829003601f168201915b505050505081565b60606112a08261146e565b6112d6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112e0611cea565b90506000815103611300576040518060200160405280600081525061132b565b8061130a84611d7c565b60405160200161131b929190612f55565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113d561193c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90612feb565b60405180910390fd5b61144d81611aa6565b50565b61146a828260405180602001604052806000815250611dcc565b5050565b600081611479611611565b11158015611488575060005482105b80156114c6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114d882610d6a565b90508073ffffffffffffffffffffffffffffffffffffffff166114f9611e69565b73ffffffffffffffffffffffffffffffffffffffff161461155c5761152581611520611e69565b611339565b61155b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611625826119da565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461168c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061169884611e71565b915091506116ae81876116a9611e69565b611e98565b6116fa576116c3866116be611e69565b611339565b6116f9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611760576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61176d8686866001611edc565b801561177857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061184685611822888887611ee2565b7c020000000000000000000000000000000000000000000000000000000017611f0a565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118cc57600060018501905060006004600083815260200190815260200160002054036118ca5760005481146118c9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119348686866001611f35565b505050505050565b611944611f3b565b73ffffffffffffffffffffffffffffffffffffffff16611962610ed6565b73ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613057565b60405180910390fd5b565b6119d5838383604051806020016040528060008152506110b4565b505050565b600080829050806119e9611611565b11611a6f57600054811015611a6e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a6c575b60008103611a62576004600083600190039350838152602001908152602001600020549050611a38565b8092505050611aa1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611b79611e69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c26611e69565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6b919061231b565b60405180910390a35050565b611c82848484610a46565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ce457611cad84848484611f43565b611ce3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611cf9906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d25906129b4565b8015611d725780601f10611d4757610100808354040283529160200191611d72565b820191906000526020600020905b815481529060010190602001808311611d5557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611db757600184039350600a81066030018453600a8104905080611d95575b50828103602084039350808452505050919050565b611dd68383612093565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e6457600080549050600083820390505b611e166000868380600101945086611f43565b611e4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e03578160005414611e6157600080fd5b50505b505050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ef986868461224e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f69611e69565b8786866040518563ffffffff1660e01b8152600401611f8b94939291906130cc565b6020604051808303816000875af1925050508015611fc757506040513d601f19601f82011682018060405250810190611fc4919061312d565b60015b612040573d8060008114611ff7576040519150601f19603f3d011682016040523d82523d6000602084013e611ffc565b606091505b506000815103612038576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600082036120d3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120e06000848385611edc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612157836121486000866000611ee2565b61215185612257565b17611f0a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121f857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121bd565b5060008203612233576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122496000848385611f35565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122b08161227b565b81146122bb57600080fd5b50565b6000813590506122cd816122a7565b92915050565b6000602082840312156122e9576122e8612271565b5b60006122f7848285016122be565b91505092915050565b60008115159050919050565b61231581612300565b82525050565b6000602082019050612330600083018461230c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612370578082015181840152602081019050612355565b60008484015250505050565b6000601f19601f8301169050919050565b600061239882612336565b6123a28185612341565b93506123b2818560208601612352565b6123bb8161237c565b840191505092915050565b600060208201905081810360008301526123e0818461238d565b905092915050565b6000819050919050565b6123fb816123e8565b811461240657600080fd5b50565b600081359050612418816123f2565b92915050565b60006020828403121561243457612433612271565b5b600061244284828501612409565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124768261244b565b9050919050565b6124868161246b565b82525050565b60006020820190506124a1600083018461247d565b92915050565b6124b08161246b565b81146124bb57600080fd5b50565b6000813590506124cd816124a7565b92915050565b600080604083850312156124ea576124e9612271565b5b60006124f8858286016124be565b925050602061250985828601612409565b9150509250929050565b61251c816123e8565b82525050565b60006020820190506125376000830184612513565b92915050565b60008060006060848603121561255657612555612271565b5b6000612564868287016124be565b9350506020612575868287016124be565b925050604061258686828701612409565b9150509250925092565b6000819050919050565b60006125b56125b06125ab8461244b565b612590565b61244b565b9050919050565b60006125c78261259a565b9050919050565b60006125d9826125bc565b9050919050565b6125e9816125ce565b82525050565b600060208201905061260460008301846125e0565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61264c8261237c565b810181811067ffffffffffffffff8211171561266b5761266a612614565b5b80604052505050565b600061267e612267565b905061268a8282612643565b919050565b600067ffffffffffffffff8211156126aa576126a9612614565b5b6126b38261237c565b9050602081019050919050565b82818337600083830152505050565b60006126e26126dd8461268f565b612674565b9050828152602081018484840111156126fe576126fd61260f565b5b6127098482856126c0565b509392505050565b600082601f8301126127265761272561260a565b5b81356127368482602086016126cf565b91505092915050565b60006020828403121561275557612754612271565b5b600082013567ffffffffffffffff81111561277357612772612276565b5b61277f84828501612711565b91505092915050565b60006020828403121561279e5761279d612271565b5b60006127ac848285016124be565b91505092915050565b6127be81612300565b81146127c957600080fd5b50565b6000813590506127db816127b5565b92915050565b600080604083850312156127f8576127f7612271565b5b6000612806858286016124be565b9250506020612817858286016127cc565b9150509250929050565b600067ffffffffffffffff82111561283c5761283b612614565b5b6128458261237c565b9050602081019050919050565b600061286561286084612821565b612674565b9050828152602081018484840111156128815761288061260f565b5b61288c8482856126c0565b509392505050565b600082601f8301126128a9576128a861260a565b5b81356128b9848260208601612852565b91505092915050565b600080600080608085870312156128dc576128db612271565b5b60006128ea878288016124be565b94505060206128fb878288016124be565b935050604061290c87828801612409565b925050606085013567ffffffffffffffff81111561292d5761292c612276565b5b61293987828801612894565b91505092959194509250565b6000806040838503121561295c5761295b612271565b5b600061296a858286016124be565b925050602061297b858286016124be565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129cc57607f821691505b6020821081036129df576129de612985565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612a1b601e83612341565b9150612a26826129e5565b602082019050919050565b60006020820190508181036000830152612a4a81612a0e565b9050919050565b7f4d617820506572205472616e73616374696f6e21000000000000000000000000600082015250565b6000612a87601483612341565b9150612a9282612a51565b602082019050919050565b60006020820190508181036000830152612ab681612a7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612af7826123e8565b9150612b02836123e8565b9250828201905080821115612b1a57612b19612abd565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612b56600983612341565b9150612b6182612b20565b602082019050919050565b60006020820190508181036000830152612b8581612b49565b9050919050565b6000612b97826123e8565b9150612ba2836123e8565b9250828202612bb0816123e8565b91508282048414831517612bc757612bc6612abd565b5b5092915050565b7f496e73756666696369656e742100000000000000000000000000000000000000600082015250565b6000612c04600d83612341565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b6000604082019050612c4f600083018561247d565b612c5c602083018461247d565b9392505050565b600081519050612c72816127b5565b92915050565b600060208284031215612c8e57612c8d612271565b5b6000612c9c84828501612c63565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612cca565b612d118683612cca565b95508019841693508086168417925050509392505050565b6000612d44612d3f612d3a846123e8565b612590565b6123e8565b9050919050565b6000819050919050565b612d5e83612d29565b612d72612d6a82612d4b565b848454612cd7565b825550505050565b600090565b612d87612d7a565b612d92818484612d55565b505050565b5b81811015612db657612dab600082612d7f565b600181019050612d98565b5050565b601f821115612dfb57612dcc81612ca5565b612dd584612cba565b81016020851015612de4578190505b612df8612df085612cba565b830182612d97565b50505b505050565b600082821c905092915050565b6000612e1e60001984600802612e00565b1980831691505092915050565b6000612e378383612e0d565b9150826002028217905092915050565b612e5082612336565b67ffffffffffffffff811115612e6957612e68612614565b5b612e7382546129b4565b612e7e828285612dba565b600060209050601f831160018114612eb15760008415612e9f578287015190505b612ea98582612e2b565b865550612f11565b601f198416612ebf86612ca5565b60005b82811015612ee757848901518255600182019150602085019450602081019050612ec2565b86831015612f045784890151612f00601f891682612e0d565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612f2f82612336565b612f398185612f19565b9350612f49818560208601612352565b80840191505092915050565b6000612f618285612f24565b9150612f6d8284612f24565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fd5602683612341565b9150612fe082612f79565b604082019050919050565b6000602082019050818103600083015261300481612fc8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613041602083612341565b915061304c8261300b565b602082019050919050565b6000602082019050818103600083015261307081613034565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061309e82613077565b6130a88185613082565b93506130b8818560208601612352565b6130c18161237c565b840191505092915050565b60006080820190506130e1600083018761247d565b6130ee602083018661247d565b6130fb6040830185612513565b818103606083015261310d8184613093565b905095945050505050565b600081519050613127816122a7565b92915050565b60006020828403121561314357613142612271565b5b600061315184828501613118565b9150509291505056fea264697066735822122088d36b8e8862481ec620c87579d164d6b0fd24f0eac06047605e1c4555a57c1164736f6c63430008110033
Deployed Bytecode Sourcemap
65181:2668:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25525:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65911:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32918:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67062:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22178:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67235:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66544:108;;;;;;;;;;;;;:::i;:::-;;4307:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67414:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65491:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66664:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27820:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65267:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23362:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64278:103;;;;;;;;;;;;;:::i;:::-;;63630:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66332:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26603:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65413:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66878:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67601:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65369:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26813:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65454:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33867:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64536:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25525:639;25610:4;25949:10;25934:25;;:11;:25;;;;:102;;;;26026:10;26011:25;;:11;:25;;;;25934:102;:179;;;;26103:10;26088:25;;:11;:25;;;;25934:179;25914:199;;25525:639;;;:::o;26427:100::-;26481:13;26514:5;26507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26427:100;:::o;65911:308::-;65640:10;65627:23;;:9;:23;;;65619:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65997:17:::1;;65987:6;:27;;65979:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;66084:9;;66074:6;66058:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;66050:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;66147:6;66139:5;;:14;;;;:::i;:::-;66126:9;:27;;66118:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;66182:29;66192:10;66204:6;66182:9;:29::i;:::-;65911:308:::0;:::o;32918:218::-;32994:7;33019:16;33027:7;33019;:16::i;:::-;33014:64;;33044:34;;;;;;;;;;;;;;33014:64;33098:15;:24;33114:7;33098:24;;;;;;;;;;;:30;;;;;;;;;;;;33091:37;;32918:218;;;:::o;67062:165::-;67166:8;6349:1;4407:42;6301:45;;;:49;6297:225;;;4407:42;6372;;;6423:4;6430:8;6372:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6367:144;;6486:8;6467:28;;;;;;;;;;;:::i;:::-;;;;;;;;6367:144;6297:225;67187:32:::1;67201:8;67211:7;67187:13;:32::i;:::-;67062:165:::0;;;:::o;22178:323::-;22239:7;22467:15;:13;:15::i;:::-;22452:12;;22436:13;;:28;:46;22429:53;;22178:323;:::o;67235:171::-;67344:4;5603:1;4407:42;5555:45;;;:49;5551:539;;;5844:10;5836:18;;:4;:18;;;5832:85;;67361:37:::1;67380:4;67386:2;67390:7;67361:18;:37::i;:::-;5895:7:::0;;5832:85;4407:42;5936;;;5987:4;5994:10;5936:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5931:148;;6052:10;6033:30;;;;;;;;;;;:::i;:::-;;;;;;;;5931:148;5551:539;67361:37:::1;67380:4;67386:2;67390:7;67361:18;:37::i;:::-;67235:171:::0;;;;;:::o;66544:108::-;63516:13;:11;:13::i;:::-;66594:10:::1;66586:28;;:51;66615:21;66586:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66544:108::o:0;4307:143::-;4407:42;4307:143;:::o;67414:179::-;67527:4;5603:1;4407:42;5555:45;;;:49;5551:539;;;5844:10;5836:18;;:4;:18;;;5832:85;;67544:41:::1;67567:4;67573:2;67577:7;67544:22;:41::i;:::-;5895:7:::0;;5832:85;4407:42;5936;;;5987:4;5994:10;5936:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5931:148;;6052:10;6033:30;;;;;;;;;;;:::i;:::-;;;;;;;;5931:148;5551:539;67544:41:::1;67567:4;67573:2;67577:7;67544:22;:41::i;:::-;67414:179:::0;;;;;:::o;65491:36::-;;;;:::o;66664:100::-;63516:13;:11;:13::i;:::-;66748:8:::1;66738:7;:18;;;;;;:::i;:::-;;66664:100:::0;:::o;27820:152::-;27892:7;27935:27;27954:7;27935:18;:27::i;:::-;27912:52;;27820:152;;;:::o;65267:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23362:233::-;23434:7;23475:1;23458:19;;:5;:19;;;23454:60;;23486:28;;;;;;;;;;;;;;23454:60;17521:13;23532:18;:25;23551:5;23532:25;;;;;;;;;;;;;;;;:55;23525:62;;23362:233;;;:::o;64278:103::-;63516:13;:11;:13::i;:::-;64343:30:::1;64370:1;64343:18;:30::i;:::-;64278:103::o:0;63630:87::-;63676:7;63703:6;;;;;;;;;;;63696:13;;63630:87;:::o;66332:88::-;63516:13;:11;:13::i;:::-;66404:8:::1;66396:5;:16;;;;66332:88:::0;:::o;26603:104::-;26659:13;26692:7;26685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26603:104;:::o;65413:34::-;;;;:::o;66878:176::-;66982:8;6349:1;4407:42;6301:45;;;:49;6297:225;;;4407:42;6372;;;6423:4;6430:8;6372:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6367:144;;6486:8;6467:28;;;;;;;;;;;:::i;:::-;;;;;;;;6367:144;6297:225;67003:43:::1;67027:8;67037;67003:23;:43::i;:::-;66878:176:::0;;;:::o;67601:245::-;67769:4;5603:1;4407:42;5555:45;;;:49;5551:539;;;5844:10;5836:18;;:4;:18;;;5832:85;;67791:47:::1;67814:4;67820:2;67824:7;67833:4;67791:22;:47::i;:::-;5895:7:::0;;5832:85;4407:42;5936;;;5987:4;5994:10;5936:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5931:148;;6052:10;6033:30;;;;;;;;;;;:::i;:::-;;;;;;;;5931:148;5551:539;67791:47:::1;67814:4;67820:2;67824:7;67833:4;67791:22;:47::i;:::-;67601:245:::0;;;;;;:::o;65369:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26813:318::-;26886:13;26917:16;26925:7;26917;:16::i;:::-;26912:59;;26942:29;;;;;;;;;;;;;;26912:59;26984:21;27008:10;:8;:10::i;:::-;26984:34;;27061:1;27042:7;27036:21;:26;:87;;;;;;;;;;;;;;;;;27089:7;27098:18;27108:7;27098:9;:18::i;:::-;27072:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27036:87;27029:94;;;26813:318;;;:::o;65454:30::-;;;;:::o;33867:164::-;33964:4;33988:18;:25;34007:5;33988:25;;;;;;;;;;;;;;;:35;34014:8;33988:35;;;;;;;;;;;;;;;;;;;;;;;;;33981:42;;33867:164;;;;:::o;64536:201::-;63516:13;:11;:13::i;:::-;64645:1:::1;64625:22;;:8;:22;;::::0;64617:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64701:28;64720:8;64701:18;:28::i;:::-;64536:201:::0;:::o;50429:112::-;50506:27;50516:2;50520:8;50506:27;;;;;;;;;;;;:9;:27::i;:::-;50429:112;;:::o;34289:282::-;34354:4;34410:7;34391:15;:13;:15::i;:::-;:26;;:66;;;;;34444:13;;34434:7;:23;34391:66;:153;;;;;34543:1;18297:8;34495:17;:26;34513:7;34495:26;;;;;;;;;;;;:44;:49;34391:153;34371:173;;34289:282;;;:::o;32351:408::-;32440:13;32456:16;32464:7;32456;:16::i;:::-;32440:32;;32512:5;32489:28;;:19;:17;:19::i;:::-;:28;;;32485:175;;32537:44;32554:5;32561:19;:17;:19::i;:::-;32537:16;:44::i;:::-;32532:128;;32609:35;;;;;;;;;;;;;;32532:128;32485:175;32705:2;32672:15;:24;32688:7;32672:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32743:7;32739:2;32723:28;;32732:5;32723:28;;;;;;;;;;;;32429:330;32351:408;;:::o;65789:101::-;65854:7;65881:1;65874:8;;65789:101;:::o;36557:2825::-;36699:27;36729;36748:7;36729:18;:27::i;:::-;36699:57;;36814:4;36773:45;;36789:19;36773:45;;;36769:86;;36827:28;;;;;;;;;;;;;;36769:86;36869:27;36898:23;36925:35;36952:7;36925:26;:35::i;:::-;36868:92;;;;37060:68;37085:15;37102:4;37108:19;:17;:19::i;:::-;37060:24;:68::i;:::-;37055:180;;37148:43;37165:4;37171:19;:17;:19::i;:::-;37148:16;:43::i;:::-;37143:92;;37200:35;;;;;;;;;;;;;;37143:92;37055:180;37266:1;37252:16;;:2;:16;;;37248:52;;37277:23;;;;;;;;;;;;;;37248:52;37313:43;37335:4;37341:2;37345:7;37354:1;37313:21;:43::i;:::-;37449:15;37446:160;;;37589:1;37568:19;37561:30;37446:160;37986:18;:24;38005:4;37986:24;;;;;;;;;;;;;;;;37984:26;;;;;;;;;;;;38055:18;:22;38074:2;38055:22;;;;;;;;;;;;;;;;38053:24;;;;;;;;;;;38377:146;38414:2;38463:45;38478:4;38484:2;38488:19;38463:14;:45::i;:::-;18577:8;38435:73;38377:18;:146::i;:::-;38348:17;:26;38366:7;38348:26;;;;;;;;;;;:175;;;;38694:1;18577:8;38643:19;:47;:52;38639:627;;38716:19;38748:1;38738:7;:11;38716:33;;38905:1;38871:17;:30;38889:11;38871:30;;;;;;;;;;;;:35;38867:384;;39009:13;;38994:11;:28;38990:242;;39189:19;39156:17;:30;39174:11;39156:30;;;;;;;;;;;:52;;;;38990:242;38867:384;38697:569;38639:627;39313:7;39309:2;39294:27;;39303:4;39294:27;;;;;;;;;;;;39332:42;39353:4;39359:2;39363:7;39372:1;39332:20;:42::i;:::-;36688:2694;;;36557:2825;;;:::o;63795:132::-;63870:12;:10;:12::i;:::-;63859:23;;:7;:5;:7::i;:::-;:23;;;63851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63795:132::o;39478:193::-;39624:39;39641:4;39647:2;39651:7;39624:39;;;;;;;;;;;;:16;:39::i;:::-;39478:193;;;:::o;28975:1275::-;29042:7;29062:12;29077:7;29062:22;;29145:4;29126:15;:13;:15::i;:::-;:23;29122:1061;;29179:13;;29172:4;:20;29168:1015;;;29217:14;29234:17;:23;29252:4;29234:23;;;;;;;;;;;;29217:40;;29351:1;18297:8;29323:6;:24;:29;29319:845;;29988:113;30005:1;29995:6;:11;29988:113;;30048:17;:25;30066:6;;;;;;;30048:25;;;;;;;;;;;;30039:34;;29988:113;;;30134:6;30127:13;;;;;;29319:845;29194:989;29168:1015;29122:1061;30211:31;;;;;;;;;;;;;;28975:1275;;;;:::o;64897:191::-;64971:16;64990:6;;;;;;;;;;;64971:25;;65016:8;65007:6;;:17;;;;;;;;;;;;;;;;;;65071:8;65040:40;;65061:8;65040:40;;;;;;;;;;;;64960:128;64897:191;:::o;33476:234::-;33623:8;33571:18;:39;33590:19;:17;:19::i;:::-;33571:39;;;;;;;;;;;;;;;:49;33611:8;33571:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33683:8;33647:55;;33662:19;:17;:19::i;:::-;33647:55;;;33693:8;33647:55;;;;;;:::i;:::-;;;;;;;;33476:234;;:::o;40269:407::-;40444:31;40457:4;40463:2;40467:7;40444:12;:31::i;:::-;40508:1;40490:2;:14;;;:19;40486:183;;40529:56;40560:4;40566:2;40570:7;40579:5;40529:30;:56::i;:::-;40524:145;;40613:40;;;;;;;;;;;;;;40524:145;40486:183;40269:407;;;;:::o;66428:108::-;66488:13;66521:7;66514:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66428:108;:::o;56804:1745::-;56869:17;57303:4;57296;57290:11;57286:22;57395:1;57389:4;57382:15;57470:4;57467:1;57463:12;57456:19;;57552:1;57547:3;57540:14;57656:3;57895:5;57877:428;57903:1;57877:428;;;57943:1;57938:3;57934:11;57927:18;;58114:2;58108:4;58104:13;58100:2;58096:22;58091:3;58083:36;58208:2;58202:4;58198:13;58190:21;;58275:4;57877:428;58265:25;57877:428;57881:21;58344:3;58339;58335:13;58459:4;58454:3;58450:14;58443:21;;58524:6;58519:3;58512:19;56908:1634;;;56804:1745;;;:::o;49656:689::-;49787:19;49793:2;49797:8;49787:5;:19::i;:::-;49866:1;49848:2;:14;;;:19;49844:483;;49888:11;49902:13;;49888:27;;49934:13;49956:8;49950:3;:14;49934:30;;49983:233;50014:62;50053:1;50057:2;50061:7;;;;;;50070:5;50014:30;:62::i;:::-;50009:167;;50112:40;;;;;;;;;;;;;;50009:167;50211:3;50203:5;:11;49983:233;;50298:3;50281:13;;:20;50277:34;;50303:8;;;50277:34;49869:458;;49844:483;49656:689;;;:::o;56597:105::-;56657:7;56684:10;56677:17;;56597:105;:::o;35452:485::-;35554:27;35583:23;35624:38;35665:15;:24;35681:7;35665:24;;;;;;;;;;;35624:65;;35842:18;35819:41;;35899:19;35893:26;35874:45;;35804:126;35452:485;;;:::o;34680:659::-;34829:11;34994:16;34987:5;34983:28;34974:37;;35154:16;35143:9;35139:32;35126:45;;35304:15;35293:9;35290:30;35282:5;35271:9;35268:20;35265:56;35255:66;;34680:659;;;;;:::o;41338:159::-;;;;;:::o;55906:311::-;56041:7;56061:16;18701:3;56087:19;:41;;56061:68;;18701:3;56155:31;56166:4;56172:2;56176:9;56155:10;:31::i;:::-;56147:40;;:62;;56140:69;;;55906:311;;;;;:::o;30798:450::-;30878:14;31046:16;31039:5;31035:28;31026:37;;31223:5;31209:11;31184:23;31180:41;31177:52;31170:5;31167:63;31157:73;;30798:450;;;;:::o;42162:158::-;;;;;:::o;62181:98::-;62234:7;62261:10;62254:17;;62181:98;:::o;42760:716::-;42923:4;42969:2;42944:45;;;42990:19;:17;:19::i;:::-;43011:4;43017:7;43026:5;42944:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42940:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43244:1;43227:6;:13;:18;43223:235;;43273:40;;;;;;;;;;;;;;43223:235;43416:6;43410:13;43401:6;43397:2;43393:15;43386:38;42940:529;43113:54;;;43103:64;;;:6;:64;;;;43096:71;;;42760:716;;;;;;:::o;43938:2966::-;44011:20;44034:13;;44011:36;;44074:1;44062:8;:13;44058:44;;44084:18;;;;;;;;;;;;;;44058:44;44115:61;44145:1;44149:2;44153:12;44167:8;44115:21;:61::i;:::-;44659:1;17659:2;44629:1;:26;;44628:32;44616:8;:45;44590:18;:22;44609:2;44590:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44938:139;44975:2;45029:33;45052:1;45056:2;45060:1;45029:14;:33::i;:::-;44996:30;45017:8;44996:20;:30::i;:::-;:66;44938:18;:139::i;:::-;44904:17;:31;44922:12;44904:31;;;;;;;;;;;:173;;;;45094:16;45125:11;45154:8;45139:12;:23;45125:37;;45675:16;45671:2;45667:25;45655:37;;46047:12;46007:8;45966:1;45904:25;45845:1;45784;45757:335;46418:1;46404:12;46400:20;46358:346;46459:3;46450:7;46447:16;46358:346;;46677:7;46667:8;46664:1;46637:25;46634:1;46631;46626:59;46512:1;46503:7;46499:15;46488:26;;46358:346;;;46362:77;46749:1;46737:8;:13;46733:45;;46759:19;;;;;;;;;;;;;;46733:45;46811:3;46795:13;:19;;;;44364:2462;;46836:60;46865:1;46869:2;46873:12;46887:8;46836:20;:60::i;:::-;44000:2904;43938:2966;;:::o;55607:147::-;55744:6;55607:147;;;;;:::o;31350:324::-;31420:14;31653:1;31643:8;31640:15;31614:24;31610:46;31600:56;;31350:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:180::-;13741:32;13737:1;13729:6;13725:14;13718:56;13601:180;:::o;13787:366::-;13929:3;13950:67;14014:2;14009:3;13950:67;:::i;:::-;13943:74;;14026:93;14115:3;14026:93;:::i;:::-;14144:2;14139:3;14135:12;14128:19;;13787:366;;;:::o;14159:419::-;14325:4;14363:2;14352:9;14348:18;14340:26;;14412:9;14406:4;14402:20;14398:1;14387:9;14383:17;14376:47;14440:131;14566:4;14440:131;:::i;:::-;14432:139;;14159:419;;;:::o;14584:170::-;14724:22;14720:1;14712:6;14708:14;14701:46;14584:170;:::o;14760:366::-;14902:3;14923:67;14987:2;14982:3;14923:67;:::i;:::-;14916:74;;14999:93;15088:3;14999:93;:::i;:::-;15117:2;15112:3;15108:12;15101:19;;14760:366;;;:::o;15132:419::-;15298:4;15336:2;15325:9;15321:18;15313:26;;15385:9;15379:4;15375:20;15371:1;15360:9;15356:17;15349:47;15413:131;15539:4;15413:131;:::i;:::-;15405:139;;15132:419;;;:::o;15557:180::-;15605:77;15602:1;15595:88;15702:4;15699:1;15692:15;15726:4;15723:1;15716:15;15743:191;15783:3;15802:20;15820:1;15802:20;:::i;:::-;15797:25;;15836:20;15854:1;15836:20;:::i;:::-;15831:25;;15879:1;15876;15872:9;15865:16;;15900:3;15897:1;15894:10;15891:36;;;15907:18;;:::i;:::-;15891:36;15743:191;;;;:::o;15940:159::-;16080:11;16076:1;16068:6;16064:14;16057:35;15940:159;:::o;16105:365::-;16247:3;16268:66;16332:1;16327:3;16268:66;:::i;:::-;16261:73;;16343:93;16432:3;16343:93;:::i;:::-;16461:2;16456:3;16452:12;16445:19;;16105:365;;;:::o;16476:419::-;16642:4;16680:2;16669:9;16665:18;16657:26;;16729:9;16723:4;16719:20;16715:1;16704:9;16700:17;16693:47;16757:131;16883:4;16757:131;:::i;:::-;16749:139;;16476:419;;;:::o;16901:410::-;16941:7;16964:20;16982:1;16964:20;:::i;:::-;16959:25;;16998:20;17016:1;16998:20;:::i;:::-;16993:25;;17053:1;17050;17046:9;17075:30;17093:11;17075:30;:::i;:::-;17064:41;;17254:1;17245:7;17241:15;17238:1;17235:22;17215:1;17208:9;17188:83;17165:139;;17284:18;;:::i;:::-;17165:139;16949:362;16901:410;;;;:::o;17317:163::-;17457:15;17453:1;17445:6;17441:14;17434:39;17317:163;:::o;17486:366::-;17628:3;17649:67;17713:2;17708:3;17649:67;:::i;:::-;17642:74;;17725:93;17814:3;17725:93;:::i;:::-;17843:2;17838:3;17834:12;17827:19;;17486:366;;;:::o;17858:419::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;17858:419;;;:::o;18283:332::-;18404:4;18442:2;18431:9;18427:18;18419:26;;18455:71;18523:1;18512:9;18508:17;18499:6;18455:71;:::i;:::-;18536:72;18604:2;18593:9;18589:18;18580:6;18536:72;:::i;:::-;18283:332;;;;;:::o;18621:137::-;18675:5;18706:6;18700:13;18691:22;;18722:30;18746:5;18722:30;:::i;:::-;18621:137;;;;:::o;18764:345::-;18831:6;18880:2;18868:9;18859:7;18855:23;18851:32;18848:119;;;18886:79;;:::i;:::-;18848:119;19006:1;19031:61;19084:7;19075:6;19064:9;19060:22;19031:61;:::i;:::-;19021:71;;18977:125;18764:345;;;;:::o;19115:141::-;19164:4;19187:3;19179:11;;19210:3;19207:1;19200:14;19244:4;19241:1;19231:18;19223:26;;19115:141;;;:::o;19262:93::-;19299:6;19346:2;19341;19334:5;19330:14;19326:23;19316:33;;19262:93;;;:::o;19361:107::-;19405:8;19455:5;19449:4;19445:16;19424:37;;19361:107;;;;:::o;19474:393::-;19543:6;19593:1;19581:10;19577:18;19616:97;19646:66;19635:9;19616:97;:::i;:::-;19734:39;19764:8;19753:9;19734:39;:::i;:::-;19722:51;;19806:4;19802:9;19795:5;19791:21;19782:30;;19855:4;19845:8;19841:19;19834:5;19831:30;19821:40;;19550:317;;19474:393;;;;;:::o;19873:142::-;19923:9;19956:53;19974:34;19983:24;20001:5;19983:24;:::i;:::-;19974:34;:::i;:::-;19956:53;:::i;:::-;19943:66;;19873:142;;;:::o;20021:75::-;20064:3;20085:5;20078:12;;20021:75;;;:::o;20102:269::-;20212:39;20243:7;20212:39;:::i;:::-;20273:91;20322:41;20346:16;20322:41;:::i;:::-;20314:6;20307:4;20301:11;20273:91;:::i;:::-;20267:4;20260:105;20178:193;20102:269;;;:::o;20377:73::-;20422:3;20377:73;:::o;20456:189::-;20533:32;;:::i;:::-;20574:65;20632:6;20624;20618:4;20574:65;:::i;:::-;20509:136;20456:189;;:::o;20651:186::-;20711:120;20728:3;20721:5;20718:14;20711:120;;;20782:39;20819:1;20812:5;20782:39;:::i;:::-;20755:1;20748:5;20744:13;20735:22;;20711:120;;;20651:186;;:::o;20843:543::-;20944:2;20939:3;20936:11;20933:446;;;20978:38;21010:5;20978:38;:::i;:::-;21062:29;21080:10;21062:29;:::i;:::-;21052:8;21048:44;21245:2;21233:10;21230:18;21227:49;;;21266:8;21251:23;;21227:49;21289:80;21345:22;21363:3;21345:22;:::i;:::-;21335:8;21331:37;21318:11;21289:80;:::i;:::-;20948:431;;20933:446;20843:543;;;:::o;21392:117::-;21446:8;21496:5;21490:4;21486:16;21465:37;;21392:117;;;;:::o;21515:169::-;21559:6;21592:51;21640:1;21636:6;21628:5;21625:1;21621:13;21592:51;:::i;:::-;21588:56;21673:4;21667;21663:15;21653:25;;21566:118;21515:169;;;;:::o;21689:295::-;21765:4;21911:29;21936:3;21930:4;21911:29;:::i;:::-;21903:37;;21973:3;21970:1;21966:11;21960:4;21957:21;21949:29;;21689:295;;;;:::o;21989:1395::-;22106:37;22139:3;22106:37;:::i;:::-;22208:18;22200:6;22197:30;22194:56;;;22230:18;;:::i;:::-;22194:56;22274:38;22306:4;22300:11;22274:38;:::i;:::-;22359:67;22419:6;22411;22405:4;22359:67;:::i;:::-;22453:1;22477:4;22464:17;;22509:2;22501:6;22498:14;22526:1;22521:618;;;;23183:1;23200:6;23197:77;;;23249:9;23244:3;23240:19;23234:26;23225:35;;23197:77;23300:67;23360:6;23353:5;23300:67;:::i;:::-;23294:4;23287:81;23156:222;22491:887;;22521:618;22573:4;22569:9;22561:6;22557:22;22607:37;22639:4;22607:37;:::i;:::-;22666:1;22680:208;22694:7;22691:1;22688:14;22680:208;;;22773:9;22768:3;22764:19;22758:26;22750:6;22743:42;22824:1;22816:6;22812:14;22802:24;;22871:2;22860:9;22856:18;22843:31;;22717:4;22714:1;22710:12;22705:17;;22680:208;;;22916:6;22907:7;22904:19;22901:179;;;22974:9;22969:3;22965:19;22959:26;23017:48;23059:4;23051:6;23047:17;23036:9;23017:48;:::i;:::-;23009:6;23002:64;22924:156;22901:179;23126:1;23122;23114:6;23110:14;23106:22;23100:4;23093:36;22528:611;;;22491:887;;22081:1303;;;21989:1395;;:::o;23390:148::-;23492:11;23529:3;23514:18;;23390:148;;;;:::o;23544:390::-;23650:3;23678:39;23711:5;23678:39;:::i;:::-;23733:89;23815:6;23810:3;23733:89;:::i;:::-;23726:96;;23831:65;23889:6;23884:3;23877:4;23870:5;23866:16;23831:65;:::i;:::-;23921:6;23916:3;23912:16;23905:23;;23654:280;23544:390;;;;:::o;23940:435::-;24120:3;24142:95;24233:3;24224:6;24142:95;:::i;:::-;24135:102;;24254:95;24345:3;24336:6;24254:95;:::i;:::-;24247:102;;24366:3;24359:10;;23940:435;;;;;:::o;24381:225::-;24521:34;24517:1;24509:6;24505:14;24498:58;24590:8;24585:2;24577:6;24573:15;24566:33;24381:225;:::o;24612:366::-;24754:3;24775:67;24839:2;24834:3;24775:67;:::i;:::-;24768:74;;24851:93;24940:3;24851:93;:::i;:::-;24969:2;24964:3;24960:12;24953:19;;24612:366;;;:::o;24984:419::-;25150:4;25188:2;25177:9;25173:18;25165:26;;25237:9;25231:4;25227:20;25223:1;25212:9;25208:17;25201:47;25265:131;25391:4;25265:131;:::i;:::-;25257:139;;24984:419;;;:::o;25409:182::-;25549:34;25545:1;25537:6;25533:14;25526:58;25409:182;:::o;25597:366::-;25739:3;25760:67;25824:2;25819:3;25760:67;:::i;:::-;25753:74;;25836:93;25925:3;25836:93;:::i;:::-;25954:2;25949:3;25945:12;25938:19;;25597:366;;;:::o;25969:419::-;26135:4;26173:2;26162:9;26158:18;26150:26;;26222:9;26216:4;26212:20;26208:1;26197:9;26193:17;26186:47;26250:131;26376:4;26250:131;:::i;:::-;26242:139;;25969:419;;;:::o;26394:98::-;26445:6;26479:5;26473:12;26463:22;;26394:98;;;:::o;26498:168::-;26581:11;26615:6;26610:3;26603:19;26655:4;26650:3;26646:14;26631:29;;26498:168;;;;:::o;26672:373::-;26758:3;26786:38;26818:5;26786:38;:::i;:::-;26840:70;26903:6;26898:3;26840:70;:::i;:::-;26833:77;;26919:65;26977:6;26972:3;26965:4;26958:5;26954:16;26919:65;:::i;:::-;27009:29;27031:6;27009:29;:::i;:::-;27004:3;27000:39;26993:46;;26762:283;26672:373;;;;:::o;27051:640::-;27246:4;27284:3;27273:9;27269:19;27261:27;;27298:71;27366:1;27355:9;27351:17;27342:6;27298:71;:::i;:::-;27379:72;27447:2;27436:9;27432:18;27423:6;27379:72;:::i;:::-;27461;27529:2;27518:9;27514:18;27505:6;27461:72;:::i;:::-;27580:9;27574:4;27570:20;27565:2;27554:9;27550:18;27543:48;27608:76;27679:4;27670:6;27608:76;:::i;:::-;27600:84;;27051:640;;;;;;;:::o;27697:141::-;27753:5;27784:6;27778:13;27769:22;;27800:32;27826:5;27800:32;:::i;:::-;27697:141;;;;:::o;27844:349::-;27913:6;27962:2;27950:9;27941:7;27937:23;27933:32;27930:119;;;27968:79;;:::i;:::-;27930:119;28088:1;28113:63;28168:7;28159:6;28148:9;28144:22;28113:63;:::i;:::-;28103:73;;28059:127;27844:349;;;;:::o
Swarm Source
ipfs://88d36b8e8862481ec620c87579d164d6b0fd24f0eac06047605e1c4555a57c11
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.