ERC-721
Overview
Max Total Supply
779 DEGAYS
Holders
344
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DEGAYSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DeadGays
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-01 */ // SPDX-License-Identifier: MIT // File: operator-filter-registry/src/lib/Constants.sol pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: operator-filter-registry/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: operator-filter-registry/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. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. 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)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: operator-filter-registry/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/extensions/IERC721ABurnable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721ABurnable. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } // 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: erc721a/contracts/extensions/ERC721ABurnable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721ABurnable. * * @dev ERC721A token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } } // File: undefined/deadgays.sol pragma solidity ^0.8.17; contract DeadGays is ERC721A, Ownable, ERC721ABurnable, DefaultOperatorFilterer { bool public isSale = false; bool public isBurn = false; uint256 public max_supply = 4444; uint256 public price = 0.00369 ether; uint256 public per_wallet = 10; uint256 public per_tx = 10; uint256 public free_per_wallet = 1; // mapping(address => uint) public burntBy; string private baseUri; constructor(string memory _baseUri) ERC721A("DeadGays", "DEGAYS") { baseUri = _baseUri; // _mint(msg.sender, 1); } function _baseURI() internal view override returns (string memory) { return baseUri; } function flipSaleState() external onlyOwner { isSale = !isSale; } function flipBurnState() external onlyOwner { isBurn = !isBurn; } function withdrawAll() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function mint(uint256 quantity) external payable { require(isSale, "Sale has not started yet"); require(msg.sender == tx.origin, "No contracts allowed"); require(quantity <= per_tx, "Transaction mint limit reached."); require(balanceOf(msg.sender) + quantity <= per_wallet, "Mint limit reached for this wallet"); require(totalSupply() + quantity <= max_supply, "Not enough NFTs left to mint"); if (balanceOf(msg.sender) == 0) { require(price * (quantity - free_per_wallet) <= msg.value, "Insufficient funds sent"); } else {require(price * quantity < msg.value, "Insufficient funds sent"); } _mint(msg.sender, quantity); } function mintForAddress(uint256 amount, address receiver) external onlyOwner { require(totalSupply() + amount <= max_supply,"Not enough NFTs left to mint"); _mint(receiver, amount); } function burn(uint256 tokenId) public virtual override { require(isBurn, "Burn is not enabled"); // burntBy[msg.sender] += 1; _burn(tokenId, true); } function burnTokens(uint256[] calldata tokenIds) public { require(isBurn, "Burn is not enabled"); uint256 amount = tokenIds.length; for (uint256 i = 0; i < amount;) { _burn(tokenIds[i]); unchecked { ++i; } } // burntBy[msg.sender] += amount; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setPerWallet(uint256 _per) external onlyOwner { per_wallet = _per; } function setFreePerWallet(uint256 _per) external onlyOwner { free_per_wallet = _per; } function setBaseURI(string memory _baseUri) external onlyOwner { baseUri = _baseUri; } //////////////////////// //operator //////////////////////// function setApprovalForAll( address operator, bool approved ) public override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve( address operator, uint256 tokenId ) public payable override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipBurnState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"free_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"per_tx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_per","type":"uint256"}],"name":"setFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_per","type":"uint256"}],"name":"setPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff02191690831515021790555061115c600955660d1c091338a000600a55600a600b55600a600c556001600d553480156200006757600080fd5b5060405162003ff238038062003ff283398181016040528101906200008d9190620005e6565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f44656164476179730000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4445474159530000000000000000000000000000000000000000000000000000815250816002908162000121919062000882565b50806003908162000133919062000882565b50620001446200037c60201b60201c565b60008190555050506200016c620001606200038560201b60201c565b6200038d60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200036157801562000227576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ed929190620009ae565b600060405180830381600087803b1580156200020857600080fd5b505af11580156200021d573d6000803e3d6000fd5b5050505062000360565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002e1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002a7929190620009ae565b600060405180830381600087803b158015620002c257600080fd5b505af1158015620002d7573d6000803e3d6000fd5b505050506200035f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200032a9190620009db565b600060405180830381600087803b1580156200034557600080fd5b505af11580156200035a573d6000803e3d6000fd5b505050505b5b5b505080600e908162000374919062000882565b5050620009f8565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004bc8262000471565b810181811067ffffffffffffffff82111715620004de57620004dd62000482565b5b80604052505050565b6000620004f362000453565b9050620005018282620004b1565b919050565b600067ffffffffffffffff82111562000524576200052362000482565b5b6200052f8262000471565b9050602081019050919050565b60005b838110156200055c5780820151818401526020810190506200053f565b60008484015250505050565b60006200057f620005798462000506565b620004e7565b9050828152602081018484840111156200059e576200059d6200046c565b5b620005ab8482856200053c565b509392505050565b600082601f830112620005cb57620005ca62000467565b5b8151620005dd84826020860162000568565b91505092915050565b600060208284031215620005ff57620005fe6200045d565b5b600082015167ffffffffffffffff81111562000620576200061f62000462565b5b6200062e84828501620005b3565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200068a57607f821691505b602082108103620006a0576200069f62000642565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200070a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006cb565b620007168683620006cb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007636200075d62000757846200072e565b62000738565b6200072e565b9050919050565b6000819050919050565b6200077f8362000742565b620007976200078e826200076a565b848454620006d8565b825550505050565b600090565b620007ae6200079f565b620007bb81848462000774565b505050565b5b81811015620007e357620007d7600082620007a4565b600181019050620007c1565b5050565b601f8211156200083257620007fc81620006a6565b6200080784620006bb565b8101602085101562000817578190505b6200082f6200082685620006bb565b830182620007c0565b50505b505050565b600082821c905092915050565b6000620008576000198460080262000837565b1980831691505092915050565b600062000872838362000844565b9150826002028217905092915050565b6200088d8262000637565b67ffffffffffffffff811115620008a957620008a862000482565b5b620008b5825462000671565b620008c2828285620007e7565b600060209050601f831160018114620008fa5760008415620008e5578287015190505b620008f1858262000864565b86555062000961565b601f1984166200090a86620006a6565b60005b8281101562000934578489015182556001820191506020850194506020810190506200090d565b8683101562000954578489015162000950601f89168262000844565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009968262000969565b9050919050565b620009a88162000989565b82525050565b6000604082019050620009c560008301856200099d565b620009d460208301846200099d565b9392505050565b6000602082019050620009f260008301846200099d565b92915050565b6135ea8062000a086000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a71c8055116100a0578063d6c19a221161006f578063d6c19a22146106fa578063e985e9c514610725578063efbd73f414610762578063f2fde38b1461078b578063f8c1c186146107b45761020f565b8063a71c805514610661578063b88d4fde14610678578063c87b56dd14610694578063cf00b563146106d15761020f565b806391b7f5ed116100e757806391b7f5ed1461059d57806395d89b41146105c6578063a035b1fe146105f1578063a0712d681461061c578063a22cb465146106385761020f565b8063715018a614610519578063853828b6146105305780638a333b50146105475780638da5cb5b146105725761020f565b806342842e0e1161019b57806355f804b31161016a57806355f804b314610422578063608aadc81461044b5780636352211e1461047657806367a53173146104b357806370a08231146104dc5761020f565b806342842e0e1461038957806342966c68146103a557806350ea70c2146103ce57806353630745146103f95761020f565b806318160ddd116101e257806318160ddd146102d557806323b872dd146103005780632d067d4c1461031c57806334918dfd1461034757806341f434341461035e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612473565b6107df565b60405161024891906124bb565b60405180910390f35b34801561025d57600080fd5b50610266610871565b6040516102739190612566565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906125be565b610903565b6040516102b0919061262c565b60405180910390f35b6102d360048036038101906102ce9190612673565b610982565b005b3480156102e157600080fd5b506102ea61099b565b6040516102f791906126c2565b60405180910390f35b61031a600480360381019061031591906126dd565b6109b2565b005b34801561032857600080fd5b50610331610a01565b60405161033e91906124bb565b60405180910390f35b34801561035357600080fd5b5061035c610a14565b005b34801561036a57600080fd5b50610373610a48565b604051610380919061278f565b60405180910390f35b6103a3600480360381019061039e91906126dd565b610a5a565b005b3480156103b157600080fd5b506103cc60048036038101906103c791906125be565b610aa9565b005b3480156103da57600080fd5b506103e3610b06565b6040516103f091906126c2565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b91906125be565b610b0c565b005b34801561042e57600080fd5b50610449600480360381019061044491906128df565b610b1e565b005b34801561045757600080fd5b50610460610b39565b60405161046d91906126c2565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906125be565b610b3f565b6040516104aa919061262c565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190612988565b610b51565b005b3480156104e857600080fd5b5061050360048036038101906104fe91906129d5565b610be6565b60405161051091906126c2565b60405180910390f35b34801561052557600080fd5b5061052e610c9e565b005b34801561053c57600080fd5b50610545610cb2565b005b34801561055357600080fd5b5061055c610d09565b60405161056991906126c2565b60405180910390f35b34801561057e57600080fd5b50610587610d0f565b604051610594919061262c565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf91906125be565b610d39565b005b3480156105d257600080fd5b506105db610d4b565b6040516105e89190612566565b60405180910390f35b3480156105fd57600080fd5b50610606610ddd565b60405161061391906126c2565b60405180910390f35b610636600480360381019061063191906125be565b610de3565b005b34801561064457600080fd5b5061065f600480360381019061065a9190612a2e565b611063565b005b34801561066d57600080fd5b5061067661107c565b005b610692600480360381019061068d9190612b0f565b6110b0565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906125be565b611101565b6040516106c89190612566565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906125be565b61119f565b005b34801561070657600080fd5b5061070f6111b1565b60405161071c91906126c2565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190612b92565b6111b7565b60405161075991906124bb565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190612bd2565b61124b565b005b34801561079757600080fd5b506107b260048036038101906107ad91906129d5565b6112b8565b005b3480156107c057600080fd5b506107c961133b565b6040516107d691906124bb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088090612c41565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90612c41565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e8261134e565b610944576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161098c816113ad565b61099683836114aa565b505050565b60006109a56115ee565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f0576109ef336113ad565b5b6109fb8484846115f7565b50505050565b600860159054906101000a900460ff1681565b610a1c611919565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9857610a97336113ad565b5b610aa3848484611997565b50505050565b600860159054906101000a900460ff16610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90612cbe565b60405180910390fd5b610b038160016119b7565b50565b600d5481565b610b14611919565b80600d8190555050565b610b26611919565b80600e9081610b359190612e80565b5050565b600b5481565b6000610b4a82611c09565b9050919050565b600860159054906101000a900460ff16610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790612cbe565b60405180910390fd5b600082829050905060005b81811015610be057610bd5848483818110610bc957610bc8612f52565b5b90506020020135611cd5565b806001019050610bab565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ca6611919565b610cb06000611ce3565b565b610cba611919565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d05573d6000803e3d6000fd5b5050565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d41611919565b80600a8190555050565b606060038054610d5a90612c41565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8690612c41565b8015610dd35780601f10610da857610100808354040283529160200191610dd3565b820191906000526020600020905b815481529060010190602001808311610db657829003601f168201915b5050505050905090565b600a5481565b600860149054906101000a900460ff16610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990612fcd565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9790613039565b60405180910390fd5b600c54811115610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc906130a5565b60405180910390fd5b600b5481610ef233610be6565b610efc91906130f4565b1115610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f349061319a565b60405180910390fd5b60095481610f4961099b565b610f5391906130f4565b1115610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90613206565b60405180910390fd5b6000610f9f33610be6565b036110065734600d5482610fb39190613226565b600a54610fc0919061325a565b1115611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906132e8565b60405180910390fd5b611056565b3481600a54611015919061325a565b10611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906132e8565b60405180910390fd5b5b6110603382611da9565b50565b8161106d816113ad565b6110778383611f64565b505050565b611084611919565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110ee576110ed336113ad565b5b6110fa8585858561206f565b5050505050565b606061110c8261134e565b611142576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061114c6120e2565b9050600081510361116c5760405180602001604052806000815250611197565b8061117684612174565b604051602001611187929190613344565b6040516020818303038152906040525b915050919050565b6111a7611919565b80600b8190555050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611253611919565b6009548261125f61099b565b61126991906130f4565b11156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613206565b60405180910390fd5b6112b48183611da9565b5050565b6112c0611919565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361132f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611326906133da565b60405180910390fd5b61133881611ce3565b50565b600860149054906101000a900460ff1681565b6000816113596115ee565b11158015611368575060005482105b80156113a6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114a7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114249291906133fa565b602060405180830381865afa158015611441573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114659190613438565b6114a657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161149d919061262c565b60405180910390fd5b5b50565b60006114b582610b3f565b90508073ffffffffffffffffffffffffffffffffffffffff166114d66121c4565b73ffffffffffffffffffffffffffffffffffffffff161461153957611502816114fd6121c4565b6111b7565b611538576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061160282611c09565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611669576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611675846121cc565b9150915061168b81876116866121c4565b6121f3565b6116d7576116a08661169b6121c4565b6111b7565b6116d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361173d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61174a8686866001612237565b801561175557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611823856117ff88888761223d565b7c020000000000000000000000000000000000000000000000000000000017612265565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118a957600060018501905060006004600083815260200190815260200160002054036118a75760005481146118a6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119118686866001612290565b505050505050565b611921612296565b73ffffffffffffffffffffffffffffffffffffffff1661193f610d0f565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c906134b1565b60405180910390fd5b565b6119b2838383604051806020016040528060008152506110b0565b505050565b60006119c283611c09565b905060008190506000806119d5866121cc565b915091508415611a3e576119f181846119ec6121c4565b6121f3565b611a3d57611a0683611a016121c4565b6111b7565b611a3c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611a4c836000886001612237565b8015611a5757600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611aff83611abc8560008861223d565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612265565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603611b855760006001870190506000600460008381526020019081526020016000205403611b83576000548114611b82578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bef836000886001612290565b600160008154809291906001019190505550505050505050565b60008082905080611c186115ee565b11611c9e57600054811015611c9d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c9b575b60008103611c91576004600083600190039350838152602001908152602001600020549050611c67565b8092505050611cd0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611ce08160006119b7565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203611de9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611df66000848385612237565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e6d83611e5e600086600061223d565b611e678561229e565b17612265565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f0e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ed3565b5060008203611f49576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f5f6000848385612290565b505050565b8060076000611f716121c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661201e6121c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161206391906124bb565b60405180910390a35050565b61207a8484846109b2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120dc576120a5848484846122ae565b6120db576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e80546120f190612c41565b80601f016020809104026020016040519081016040528092919081815260200182805461211d90612c41565b801561216a5780601f1061213f5761010080835404028352916020019161216a565b820191906000526020600020905b81548152906001019060200180831161214d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156121af57600184039350600a81066030018453600a810490508061218d575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122548686846123fe565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122d46121c4565b8786866040518563ffffffff1660e01b81526004016122f69493929190613526565b6020604051808303816000875af192505050801561233257506040513d601f19601f8201168201806040525081019061232f9190613587565b60015b6123ab573d8060008114612362576040519150601f19603f3d011682016040523d82523d6000602084013e612367565b606091505b5060008151036123a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124508161241b565b811461245b57600080fd5b50565b60008135905061246d81612447565b92915050565b60006020828403121561248957612488612411565b5b60006124978482850161245e565b91505092915050565b60008115159050919050565b6124b5816124a0565b82525050565b60006020820190506124d060008301846124ac565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125105780820151818401526020810190506124f5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612538826124d6565b61254281856124e1565b93506125528185602086016124f2565b61255b8161251c565b840191505092915050565b60006020820190508181036000830152612580818461252d565b905092915050565b6000819050919050565b61259b81612588565b81146125a657600080fd5b50565b6000813590506125b881612592565b92915050565b6000602082840312156125d4576125d3612411565b5b60006125e2848285016125a9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612616826125eb565b9050919050565b6126268161260b565b82525050565b6000602082019050612641600083018461261d565b92915050565b6126508161260b565b811461265b57600080fd5b50565b60008135905061266d81612647565b92915050565b6000806040838503121561268a57612689612411565b5b60006126988582860161265e565b92505060206126a9858286016125a9565b9150509250929050565b6126bc81612588565b82525050565b60006020820190506126d760008301846126b3565b92915050565b6000806000606084860312156126f6576126f5612411565b5b60006127048682870161265e565b93505060206127158682870161265e565b9250506040612726868287016125a9565b9150509250925092565b6000819050919050565b600061275561275061274b846125eb565b612730565b6125eb565b9050919050565b60006127678261273a565b9050919050565b60006127798261275c565b9050919050565b6127898161276e565b82525050565b60006020820190506127a46000830184612780565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127ec8261251c565b810181811067ffffffffffffffff8211171561280b5761280a6127b4565b5b80604052505050565b600061281e612407565b905061282a82826127e3565b919050565b600067ffffffffffffffff82111561284a576128496127b4565b5b6128538261251c565b9050602081019050919050565b82818337600083830152505050565b600061288261287d8461282f565b612814565b90508281526020810184848401111561289e5761289d6127af565b5b6128a9848285612860565b509392505050565b600082601f8301126128c6576128c56127aa565b5b81356128d684826020860161286f565b91505092915050565b6000602082840312156128f5576128f4612411565b5b600082013567ffffffffffffffff81111561291357612912612416565b5b61291f848285016128b1565b91505092915050565b600080fd5b600080fd5b60008083601f840112612948576129476127aa565b5b8235905067ffffffffffffffff81111561296557612964612928565b5b6020830191508360208202830111156129815761298061292d565b5b9250929050565b6000806020838503121561299f5761299e612411565b5b600083013567ffffffffffffffff8111156129bd576129bc612416565b5b6129c985828601612932565b92509250509250929050565b6000602082840312156129eb576129ea612411565b5b60006129f98482850161265e565b91505092915050565b612a0b816124a0565b8114612a1657600080fd5b50565b600081359050612a2881612a02565b92915050565b60008060408385031215612a4557612a44612411565b5b6000612a538582860161265e565b9250506020612a6485828601612a19565b9150509250929050565b600067ffffffffffffffff821115612a8957612a886127b4565b5b612a928261251c565b9050602081019050919050565b6000612ab2612aad84612a6e565b612814565b905082815260208101848484011115612ace57612acd6127af565b5b612ad9848285612860565b509392505050565b600082601f830112612af657612af56127aa565b5b8135612b06848260208601612a9f565b91505092915050565b60008060008060808587031215612b2957612b28612411565b5b6000612b378782880161265e565b9450506020612b488782880161265e565b9350506040612b59878288016125a9565b925050606085013567ffffffffffffffff811115612b7a57612b79612416565b5b612b8687828801612ae1565b91505092959194509250565b60008060408385031215612ba957612ba8612411565b5b6000612bb78582860161265e565b9250506020612bc88582860161265e565b9150509250929050565b60008060408385031215612be957612be8612411565b5b6000612bf7858286016125a9565b9250506020612c088582860161265e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5957607f821691505b602082108103612c6c57612c6b612c12565b5b50919050565b7f4275726e206973206e6f7420656e61626c656400000000000000000000000000600082015250565b6000612ca86013836124e1565b9150612cb382612c72565b602082019050919050565b60006020820190508181036000830152612cd781612c9b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d03565b612d4a8683612d03565b95508019841693508086168417925050509392505050565b6000612d7d612d78612d7384612588565b612730565b612588565b9050919050565b6000819050919050565b612d9783612d62565b612dab612da382612d84565b848454612d10565b825550505050565b600090565b612dc0612db3565b612dcb818484612d8e565b505050565b5b81811015612def57612de4600082612db8565b600181019050612dd1565b5050565b601f821115612e3457612e0581612cde565b612e0e84612cf3565b81016020851015612e1d578190505b612e31612e2985612cf3565b830182612dd0565b50505b505050565b600082821c905092915050565b6000612e5760001984600802612e39565b1980831691505092915050565b6000612e708383612e46565b9150826002028217905092915050565b612e89826124d6565b67ffffffffffffffff811115612ea257612ea16127b4565b5b612eac8254612c41565b612eb7828285612df3565b600060209050601f831160018114612eea5760008415612ed8578287015190505b612ee28582612e64565b865550612f4a565b601f198416612ef886612cde565b60005b82811015612f2057848901518255600182019150602085019450602081019050612efb565b86831015612f3d5784890151612f39601f891682612e46565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b6000612fb76018836124e1565b9150612fc282612f81565b602082019050919050565b60006020820190508181036000830152612fe681612faa565b9050919050565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b60006130236014836124e1565b915061302e82612fed565b602082019050919050565b6000602082019050818103600083015261305281613016565b9050919050565b7f5472616e73616374696f6e206d696e74206c696d697420726561636865642e00600082015250565b600061308f601f836124e1565b915061309a82613059565b602082019050919050565b600060208201905081810360008301526130be81613082565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130ff82612588565b915061310a83612588565b9250828201905080821115613122576131216130c5565b5b92915050565b7f4d696e74206c696d6974207265616368656420666f7220746869732077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b60006131846022836124e1565b915061318f82613128565b604082019050919050565b600060208201905081810360008301526131b381613177565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7400000000600082015250565b60006131f0601c836124e1565b91506131fb826131ba565b602082019050919050565b6000602082019050818103600083015261321f816131e3565b9050919050565b600061323182612588565b915061323c83612588565b9250828203905081811115613254576132536130c5565b5b92915050565b600061326582612588565b915061327083612588565b925082820261327e81612588565b91508282048414831517613295576132946130c5565b5b5092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b60006132d26017836124e1565b91506132dd8261329c565b602082019050919050565b60006020820190508181036000830152613301816132c5565b9050919050565b600081905092915050565b600061331e826124d6565b6133288185613308565b93506133388185602086016124f2565b80840191505092915050565b60006133508285613313565b915061335c8284613313565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133c46026836124e1565b91506133cf82613368565b604082019050919050565b600060208201905081810360008301526133f3816133b7565b9050919050565b600060408201905061340f600083018561261d565b61341c602083018461261d565b9392505050565b60008151905061343281612a02565b92915050565b60006020828403121561344e5761344d612411565b5b600061345c84828501613423565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061349b6020836124e1565b91506134a682613465565b602082019050919050565b600060208201905081810360008301526134ca8161348e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134f8826134d1565b61350281856134dc565b93506135128185602086016124f2565b61351b8161251c565b840191505092915050565b600060808201905061353b600083018761261d565b613548602083018661261d565b61355560408301856126b3565b818103606083015261356781846134ed565b905095945050505050565b60008151905061358181612447565b92915050565b60006020828403121561359d5761359c612411565b5b60006135ab84828501613572565b9150509291505056fea26469706673582212207751236c6a90d9c2c19cf52dbdeeb3908ad2f9bdd1574b5a7c53e139e962247064736f6c634300081300330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e516d4e6134416e624e6d4e574257336a455058594a38796458754b59705974756d36434e713973425a5758465a63000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063a71c8055116100a0578063d6c19a221161006f578063d6c19a22146106fa578063e985e9c514610725578063efbd73f414610762578063f2fde38b1461078b578063f8c1c186146107b45761020f565b8063a71c805514610661578063b88d4fde14610678578063c87b56dd14610694578063cf00b563146106d15761020f565b806391b7f5ed116100e757806391b7f5ed1461059d57806395d89b41146105c6578063a035b1fe146105f1578063a0712d681461061c578063a22cb465146106385761020f565b8063715018a614610519578063853828b6146105305780638a333b50146105475780638da5cb5b146105725761020f565b806342842e0e1161019b57806355f804b31161016a57806355f804b314610422578063608aadc81461044b5780636352211e1461047657806367a53173146104b357806370a08231146104dc5761020f565b806342842e0e1461038957806342966c68146103a557806350ea70c2146103ce57806353630745146103f95761020f565b806318160ddd116101e257806318160ddd146102d557806323b872dd146103005780632d067d4c1461031c57806334918dfd1461034757806341f434341461035e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612473565b6107df565b60405161024891906124bb565b60405180910390f35b34801561025d57600080fd5b50610266610871565b6040516102739190612566565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906125be565b610903565b6040516102b0919061262c565b60405180910390f35b6102d360048036038101906102ce9190612673565b610982565b005b3480156102e157600080fd5b506102ea61099b565b6040516102f791906126c2565b60405180910390f35b61031a600480360381019061031591906126dd565b6109b2565b005b34801561032857600080fd5b50610331610a01565b60405161033e91906124bb565b60405180910390f35b34801561035357600080fd5b5061035c610a14565b005b34801561036a57600080fd5b50610373610a48565b604051610380919061278f565b60405180910390f35b6103a3600480360381019061039e91906126dd565b610a5a565b005b3480156103b157600080fd5b506103cc60048036038101906103c791906125be565b610aa9565b005b3480156103da57600080fd5b506103e3610b06565b6040516103f091906126c2565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b91906125be565b610b0c565b005b34801561042e57600080fd5b50610449600480360381019061044491906128df565b610b1e565b005b34801561045757600080fd5b50610460610b39565b60405161046d91906126c2565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906125be565b610b3f565b6040516104aa919061262c565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190612988565b610b51565b005b3480156104e857600080fd5b5061050360048036038101906104fe91906129d5565b610be6565b60405161051091906126c2565b60405180910390f35b34801561052557600080fd5b5061052e610c9e565b005b34801561053c57600080fd5b50610545610cb2565b005b34801561055357600080fd5b5061055c610d09565b60405161056991906126c2565b60405180910390f35b34801561057e57600080fd5b50610587610d0f565b604051610594919061262c565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf91906125be565b610d39565b005b3480156105d257600080fd5b506105db610d4b565b6040516105e89190612566565b60405180910390f35b3480156105fd57600080fd5b50610606610ddd565b60405161061391906126c2565b60405180910390f35b610636600480360381019061063191906125be565b610de3565b005b34801561064457600080fd5b5061065f600480360381019061065a9190612a2e565b611063565b005b34801561066d57600080fd5b5061067661107c565b005b610692600480360381019061068d9190612b0f565b6110b0565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906125be565b611101565b6040516106c89190612566565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906125be565b61119f565b005b34801561070657600080fd5b5061070f6111b1565b60405161071c91906126c2565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190612b92565b6111b7565b60405161075991906124bb565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190612bd2565b61124b565b005b34801561079757600080fd5b506107b260048036038101906107ad91906129d5565b6112b8565b005b3480156107c057600080fd5b506107c961133b565b6040516107d691906124bb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088090612c41565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90612c41565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e8261134e565b610944576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161098c816113ad565b61099683836114aa565b505050565b60006109a56115ee565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f0576109ef336113ad565b5b6109fb8484846115f7565b50505050565b600860159054906101000a900460ff1681565b610a1c611919565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9857610a97336113ad565b5b610aa3848484611997565b50505050565b600860159054906101000a900460ff16610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90612cbe565b60405180910390fd5b610b038160016119b7565b50565b600d5481565b610b14611919565b80600d8190555050565b610b26611919565b80600e9081610b359190612e80565b5050565b600b5481565b6000610b4a82611c09565b9050919050565b600860159054906101000a900460ff16610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790612cbe565b60405180910390fd5b600082829050905060005b81811015610be057610bd5848483818110610bc957610bc8612f52565b5b90506020020135611cd5565b806001019050610bab565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ca6611919565b610cb06000611ce3565b565b610cba611919565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d05573d6000803e3d6000fd5b5050565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d41611919565b80600a8190555050565b606060038054610d5a90612c41565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8690612c41565b8015610dd35780601f10610da857610100808354040283529160200191610dd3565b820191906000526020600020905b815481529060010190602001808311610db657829003601f168201915b5050505050905090565b600a5481565b600860149054906101000a900460ff16610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990612fcd565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9790613039565b60405180910390fd5b600c54811115610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc906130a5565b60405180910390fd5b600b5481610ef233610be6565b610efc91906130f4565b1115610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f349061319a565b60405180910390fd5b60095481610f4961099b565b610f5391906130f4565b1115610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90613206565b60405180910390fd5b6000610f9f33610be6565b036110065734600d5482610fb39190613226565b600a54610fc0919061325a565b1115611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906132e8565b60405180910390fd5b611056565b3481600a54611015919061325a565b10611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906132e8565b60405180910390fd5b5b6110603382611da9565b50565b8161106d816113ad565b6110778383611f64565b505050565b611084611919565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110ee576110ed336113ad565b5b6110fa8585858561206f565b5050505050565b606061110c8261134e565b611142576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061114c6120e2565b9050600081510361116c5760405180602001604052806000815250611197565b8061117684612174565b604051602001611187929190613344565b6040516020818303038152906040525b915050919050565b6111a7611919565b80600b8190555050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611253611919565b6009548261125f61099b565b61126991906130f4565b11156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613206565b60405180910390fd5b6112b48183611da9565b5050565b6112c0611919565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361132f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611326906133da565b60405180910390fd5b61133881611ce3565b50565b600860149054906101000a900460ff1681565b6000816113596115ee565b11158015611368575060005482105b80156113a6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114a7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114249291906133fa565b602060405180830381865afa158015611441573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114659190613438565b6114a657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161149d919061262c565b60405180910390fd5b5b50565b60006114b582610b3f565b90508073ffffffffffffffffffffffffffffffffffffffff166114d66121c4565b73ffffffffffffffffffffffffffffffffffffffff161461153957611502816114fd6121c4565b6111b7565b611538576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061160282611c09565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611669576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611675846121cc565b9150915061168b81876116866121c4565b6121f3565b6116d7576116a08661169b6121c4565b6111b7565b6116d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361173d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61174a8686866001612237565b801561175557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611823856117ff88888761223d565b7c020000000000000000000000000000000000000000000000000000000017612265565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118a957600060018501905060006004600083815260200190815260200160002054036118a75760005481146118a6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119118686866001612290565b505050505050565b611921612296565b73ffffffffffffffffffffffffffffffffffffffff1661193f610d0f565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c906134b1565b60405180910390fd5b565b6119b2838383604051806020016040528060008152506110b0565b505050565b60006119c283611c09565b905060008190506000806119d5866121cc565b915091508415611a3e576119f181846119ec6121c4565b6121f3565b611a3d57611a0683611a016121c4565b6111b7565b611a3c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611a4c836000886001612237565b8015611a5757600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611aff83611abc8560008861223d565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612265565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603611b855760006001870190506000600460008381526020019081526020016000205403611b83576000548114611b82578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bef836000886001612290565b600160008154809291906001019190505550505050505050565b60008082905080611c186115ee565b11611c9e57600054811015611c9d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c9b575b60008103611c91576004600083600190039350838152602001908152602001600020549050611c67565b8092505050611cd0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611ce08160006119b7565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203611de9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611df66000848385612237565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e6d83611e5e600086600061223d565b611e678561229e565b17612265565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f0e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ed3565b5060008203611f49576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f5f6000848385612290565b505050565b8060076000611f716121c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661201e6121c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161206391906124bb565b60405180910390a35050565b61207a8484846109b2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120dc576120a5848484846122ae565b6120db576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e80546120f190612c41565b80601f016020809104026020016040519081016040528092919081815260200182805461211d90612c41565b801561216a5780601f1061213f5761010080835404028352916020019161216a565b820191906000526020600020905b81548152906001019060200180831161214d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156121af57600184039350600a81066030018453600a810490508061218d575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122548686846123fe565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122d46121c4565b8786866040518563ffffffff1660e01b81526004016122f69493929190613526565b6020604051808303816000875af192505050801561233257506040513d601f19601f8201168201806040525081019061232f9190613587565b60015b6123ab573d8060008114612362576040519150601f19603f3d011682016040523d82523d6000602084013e612367565b606091505b5060008151036123a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124508161241b565b811461245b57600080fd5b50565b60008135905061246d81612447565b92915050565b60006020828403121561248957612488612411565b5b60006124978482850161245e565b91505092915050565b60008115159050919050565b6124b5816124a0565b82525050565b60006020820190506124d060008301846124ac565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125105780820151818401526020810190506124f5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612538826124d6565b61254281856124e1565b93506125528185602086016124f2565b61255b8161251c565b840191505092915050565b60006020820190508181036000830152612580818461252d565b905092915050565b6000819050919050565b61259b81612588565b81146125a657600080fd5b50565b6000813590506125b881612592565b92915050565b6000602082840312156125d4576125d3612411565b5b60006125e2848285016125a9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612616826125eb565b9050919050565b6126268161260b565b82525050565b6000602082019050612641600083018461261d565b92915050565b6126508161260b565b811461265b57600080fd5b50565b60008135905061266d81612647565b92915050565b6000806040838503121561268a57612689612411565b5b60006126988582860161265e565b92505060206126a9858286016125a9565b9150509250929050565b6126bc81612588565b82525050565b60006020820190506126d760008301846126b3565b92915050565b6000806000606084860312156126f6576126f5612411565b5b60006127048682870161265e565b93505060206127158682870161265e565b9250506040612726868287016125a9565b9150509250925092565b6000819050919050565b600061275561275061274b846125eb565b612730565b6125eb565b9050919050565b60006127678261273a565b9050919050565b60006127798261275c565b9050919050565b6127898161276e565b82525050565b60006020820190506127a46000830184612780565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127ec8261251c565b810181811067ffffffffffffffff8211171561280b5761280a6127b4565b5b80604052505050565b600061281e612407565b905061282a82826127e3565b919050565b600067ffffffffffffffff82111561284a576128496127b4565b5b6128538261251c565b9050602081019050919050565b82818337600083830152505050565b600061288261287d8461282f565b612814565b90508281526020810184848401111561289e5761289d6127af565b5b6128a9848285612860565b509392505050565b600082601f8301126128c6576128c56127aa565b5b81356128d684826020860161286f565b91505092915050565b6000602082840312156128f5576128f4612411565b5b600082013567ffffffffffffffff81111561291357612912612416565b5b61291f848285016128b1565b91505092915050565b600080fd5b600080fd5b60008083601f840112612948576129476127aa565b5b8235905067ffffffffffffffff81111561296557612964612928565b5b6020830191508360208202830111156129815761298061292d565b5b9250929050565b6000806020838503121561299f5761299e612411565b5b600083013567ffffffffffffffff8111156129bd576129bc612416565b5b6129c985828601612932565b92509250509250929050565b6000602082840312156129eb576129ea612411565b5b60006129f98482850161265e565b91505092915050565b612a0b816124a0565b8114612a1657600080fd5b50565b600081359050612a2881612a02565b92915050565b60008060408385031215612a4557612a44612411565b5b6000612a538582860161265e565b9250506020612a6485828601612a19565b9150509250929050565b600067ffffffffffffffff821115612a8957612a886127b4565b5b612a928261251c565b9050602081019050919050565b6000612ab2612aad84612a6e565b612814565b905082815260208101848484011115612ace57612acd6127af565b5b612ad9848285612860565b509392505050565b600082601f830112612af657612af56127aa565b5b8135612b06848260208601612a9f565b91505092915050565b60008060008060808587031215612b2957612b28612411565b5b6000612b378782880161265e565b9450506020612b488782880161265e565b9350506040612b59878288016125a9565b925050606085013567ffffffffffffffff811115612b7a57612b79612416565b5b612b8687828801612ae1565b91505092959194509250565b60008060408385031215612ba957612ba8612411565b5b6000612bb78582860161265e565b9250506020612bc88582860161265e565b9150509250929050565b60008060408385031215612be957612be8612411565b5b6000612bf7858286016125a9565b9250506020612c088582860161265e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5957607f821691505b602082108103612c6c57612c6b612c12565b5b50919050565b7f4275726e206973206e6f7420656e61626c656400000000000000000000000000600082015250565b6000612ca86013836124e1565b9150612cb382612c72565b602082019050919050565b60006020820190508181036000830152612cd781612c9b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d03565b612d4a8683612d03565b95508019841693508086168417925050509392505050565b6000612d7d612d78612d7384612588565b612730565b612588565b9050919050565b6000819050919050565b612d9783612d62565b612dab612da382612d84565b848454612d10565b825550505050565b600090565b612dc0612db3565b612dcb818484612d8e565b505050565b5b81811015612def57612de4600082612db8565b600181019050612dd1565b5050565b601f821115612e3457612e0581612cde565b612e0e84612cf3565b81016020851015612e1d578190505b612e31612e2985612cf3565b830182612dd0565b50505b505050565b600082821c905092915050565b6000612e5760001984600802612e39565b1980831691505092915050565b6000612e708383612e46565b9150826002028217905092915050565b612e89826124d6565b67ffffffffffffffff811115612ea257612ea16127b4565b5b612eac8254612c41565b612eb7828285612df3565b600060209050601f831160018114612eea5760008415612ed8578287015190505b612ee28582612e64565b865550612f4a565b601f198416612ef886612cde565b60005b82811015612f2057848901518255600182019150602085019450602081019050612efb565b86831015612f3d5784890151612f39601f891682612e46565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b6000612fb76018836124e1565b9150612fc282612f81565b602082019050919050565b60006020820190508181036000830152612fe681612faa565b9050919050565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b60006130236014836124e1565b915061302e82612fed565b602082019050919050565b6000602082019050818103600083015261305281613016565b9050919050565b7f5472616e73616374696f6e206d696e74206c696d697420726561636865642e00600082015250565b600061308f601f836124e1565b915061309a82613059565b602082019050919050565b600060208201905081810360008301526130be81613082565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130ff82612588565b915061310a83612588565b9250828201905080821115613122576131216130c5565b5b92915050565b7f4d696e74206c696d6974207265616368656420666f7220746869732077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b60006131846022836124e1565b915061318f82613128565b604082019050919050565b600060208201905081810360008301526131b381613177565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7400000000600082015250565b60006131f0601c836124e1565b91506131fb826131ba565b602082019050919050565b6000602082019050818103600083015261321f816131e3565b9050919050565b600061323182612588565b915061323c83612588565b9250828203905081811115613254576132536130c5565b5b92915050565b600061326582612588565b915061327083612588565b925082820261327e81612588565b91508282048414831517613295576132946130c5565b5b5092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b60006132d26017836124e1565b91506132dd8261329c565b602082019050919050565b60006020820190508181036000830152613301816132c5565b9050919050565b600081905092915050565b600061331e826124d6565b6133288185613308565b93506133388185602086016124f2565b80840191505092915050565b60006133508285613313565b915061335c8284613313565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133c46026836124e1565b91506133cf82613368565b604082019050919050565b600060208201905081810360008301526133f3816133b7565b9050919050565b600060408201905061340f600083018561261d565b61341c602083018461261d565b9392505050565b60008151905061343281612a02565b92915050565b60006020828403121561344e5761344d612411565b5b600061345c84828501613423565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061349b6020836124e1565b91506134a682613465565b602082019050919050565b600060208201905081810360008301526134ca8161348e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134f8826134d1565b61350281856134dc565b93506135128185602086016124f2565b61351b8161251c565b840191505092915050565b600060808201905061353b600083018761261d565b613548602083018661261d565b61355560408301856126b3565b818103606083015261356781846134ed565b905095945050505050565b60008151905061358181612447565b92915050565b60006020828403121561359d5761359c612411565b5b60006135ab84828501613572565b9150509291505056fea26469706673582212207751236c6a90d9c2c19cf52dbdeeb3908ad2f9bdd1574b5a7c53e139e962247064736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e516d4e6134416e624e6d4e574257336a455058594a38796458754b59705974756d36434e713973425a5758465a63000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseUri (string): QmNa4AnbNmNWBW3jEPXYJ8ydXuKYpYtum6CNq9sBZWXFZc
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [2] : 516d4e6134416e624e6d4e574257336a455058594a38796458754b5970597475
Arg [3] : 6d36434e713973425a5758465a63000000000000000000000000000000000000
Deployed Bytecode Sourcemap
67292:4283:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33583:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34485:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40976:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70617:209;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30236:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70834:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67412:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67975:79;;;;;;;;;;;;;:::i;:::-;;7768:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71066:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69275:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67599:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70095:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67529:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35878:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69464:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31420:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13897:103;;;;;;;;;;;;;:::i;:::-;;68149:148;;;;;;;;;;;;;:::i;:::-;;67447:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13249:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69902:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34661:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67486:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68305:748;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70389:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68062:79;;;;;;;;;;;;;:::i;:::-;;71306:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34871:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69996:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67566:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41925:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69061:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14155:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67379:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33583:639;33668:4;34007:10;33992:25;;:11;:25;;;;:102;;;;34084:10;34069:25;;:11;:25;;;;33992:102;:179;;;;34161:10;34146:25;;:11;:25;;;;33992:179;33972:199;;33583:639;;;:::o;34485:100::-;34539:13;34572:5;34565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34485:100;:::o;40976:218::-;41052:7;41077:16;41085:7;41077;:16::i;:::-;41072:64;;41102:34;;;;;;;;;;;;;;41072:64;41156:15;:24;41172:7;41156:24;;;;;;;;;;;:30;;;;;;;;;;;;41149:37;;40976:218;;;:::o;70617:209::-;70765:8;9550:30;9571:8;9550:20;:30::i;:::-;70786:32:::1;70800:8;70810:7;70786:13;:32::i;:::-;70617:209:::0;;;:::o;30236:323::-;30297:7;30525:15;:13;:15::i;:::-;30510:12;;30494:13;;:28;:46;30487:53;;30236:323;:::o;70834:224::-;70996:4;9284:10;9276:18;;:4;:18;;;9272:83;;9311:32;9332:10;9311:20;:32::i;:::-;9272:83;71013:37:::1;71032:4;71038:2;71042:7;71013:18;:37::i;:::-;70834:224:::0;;;;:::o;67412:26::-;;;;;;;;;;;;;:::o;67975:79::-;13135:13;:11;:13::i;:::-;68040:6:::1;;;;;;;;;;;68039:7;68030:6;;:16;;;;;;;;;;;;;;;;;;67975:79::o:0;7768:143::-;184:42;7768:143;:::o;71066:232::-;71232:4;9284:10;9276:18;;:4;:18;;;9272:83;;9311:32;9332:10;9311:20;:32::i;:::-;9272:83;71249:41:::1;71272:4;71278:2;71282:7;71249:22;:41::i;:::-;71066:232:::0;;;;:::o;69275:181::-;69349:6;;;;;;;;;;;69341:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;69428:20;69434:7;69443:4;69428:5;:20::i;:::-;69275:181;:::o;67599:34::-;;;;:::o;70095:100::-;13135:13;:11;:13::i;:::-;70183:4:::1;70165:15;:22;;;;70095:100:::0;:::o;70203:::-;13135:13;:11;:13::i;:::-;70287:8:::1;70277:7;:18;;;;;;:::i;:::-;;70203:100:::0;:::o;67529:30::-;;;;:::o;35878:152::-;35950:7;35993:27;36012:7;35993:18;:27::i;:::-;35970:52;;35878:152;;;:::o;69464:321::-;69539:6;;;;;;;;;;;69531:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;69580:14;69597:8;;:15;;69580:32;;69630:9;69625:110;69649:6;69645:1;:10;69625:110;;;69673:18;69679:8;;69688:1;69679:11;;;;;;;:::i;:::-;;;;;;;;69673:5;:18::i;:::-;69718:3;;;;;69625:110;;;;69520:265;69464:321;;:::o;31420:233::-;31492:7;31533:1;31516:19;;:5;:19;;;31512:60;;31544:28;;;;;;;;;;;;;;31512:60;25579:13;31590:18;:25;31609:5;31590:25;;;;;;;;;;;;;;;;:55;31583:62;;31420:233;;;:::o;13897:103::-;13135:13;:11;:13::i;:::-;13962:30:::1;13989:1;13962:18;:30::i;:::-;13897:103::o:0;68149:148::-;13135:13;:11;:13::i;:::-;68202:15:::1;68220:21;68202:39;;68260:10;68252:28;;:37;68281:7;68252:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68191:106;68149:148::o:0;67447:32::-;;;;:::o;13249:87::-;13295:7;13322:6;;;;;;;;;;;13315:13;;13249:87;:::o;69902:86::-;13135:13;:11;:13::i;:::-;69974:6:::1;69966:5;:14;;;;69902:86:::0;:::o;34661:104::-;34717:13;34750:7;34743:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34661:104;:::o;67486:36::-;;;;:::o;68305:748::-;68373:6;;;;;;;;;;;68365:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;68441:9;68427:23;;:10;:23;;;68419:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;68508:6;;68496:8;:18;;68488:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;68605:10;;68593:8;68569:21;68579:10;68569:9;:21::i;:::-;:32;;;;:::i;:::-;:46;;68561:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;68701:10;;68689:8;68673:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;68665:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;68786:1;68761:21;68771:10;68761:9;:21::i;:::-;:26;68757:241;;68852:9;68832:15;;68821:8;:26;;;;:::i;:::-;68812:5;;:36;;;;:::i;:::-;:49;;68804:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;68757:241;;;68949:9;68938:8;68930:5;;:16;;;;:::i;:::-;:28;68922:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;68757:241;69018:27;69024:10;69036:8;69018:5;:27::i;:::-;68305:748;:::o;70389:220::-;70537:8;9550:30;9571:8;9550:20;:30::i;:::-;70558:43:::1;70582:8;70592;70558:23;:43::i;:::-;70389:220:::0;;;:::o;68062:79::-;13135:13;:11;:13::i;:::-;68127:6:::1;;;;;;;;;;;68126:7;68117:6;;:16;;;;;;;;;;;;;;;;;;68062:79::o:0;71306:266::-;71500:4;9284:10;9276:18;;:4;:18;;;9272:83;;9311:32;9332:10;9311:20;:32::i;:::-;9272:83;71517:47:::1;71540:4;71546:2;71550:7;71559:4;71517:22;:47::i;:::-;71306:266:::0;;;;;:::o;34871:318::-;34944:13;34975:16;34983:7;34975;:16::i;:::-;34970:59;;35000:29;;;;;;;;;;;;;;34970:59;35042:21;35066:10;:8;:10::i;:::-;35042:34;;35119:1;35100:7;35094:21;:26;:87;;;;;;;;;;;;;;;;;35147:7;35156:18;35166:7;35156:9;:18::i;:::-;35130:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35094:87;35087:94;;;34871:318;;;:::o;69996:91::-;13135:13;:11;:13::i;:::-;70075:4:::1;70062:10;:17;;;;69996:91:::0;:::o;67566:26::-;;;;:::o;41925:164::-;42022:4;42046:18;:25;42065:5;42046:25;;;;;;;;;;;;;;;:35;42072:8;42046:35;;;;;;;;;;;;;;;;;;;;;;;;;42039:42;;41925:164;;;;:::o;69061:206::-;13135:13;:11;:13::i;:::-;69183:10:::1;;69173:6;69157:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;69149:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;69236:23;69242:8;69252:6;69236:5;:23::i;:::-;69061:206:::0;;:::o;14155:201::-;13135:13;:11;:13::i;:::-;14264:1:::1;14244:22;;:8;:22;;::::0;14236:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14320:28;14339:8;14320:18;:28::i;:::-;14155:201:::0;:::o;67379:26::-;;;;;;;;;;;;;:::o;42347:282::-;42412:4;42468:7;42449:15;:13;:15::i;:::-;:26;;:66;;;;;42502:13;;42492:7;:23;42449:66;:153;;;;;42601:1;26355:8;42553:17;:26;42571:7;42553:26;;;;;;;;;;;;:44;:49;42449:153;42429:173;;42347:282;;;:::o;9693:647::-;9932:1;184:42;9884:45;;;:49;9880:453;;;184:42;10183;;;10234:4;10241:8;10183:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10178:144;;10297:8;10278:28;;;;;;;;;;;:::i;:::-;;;;;;;;10178:144;9880:453;9693:647;:::o;40409:408::-;40498:13;40514:16;40522:7;40514;:16::i;:::-;40498:32;;40570:5;40547:28;;:19;:17;:19::i;:::-;:28;;;40543:175;;40595:44;40612:5;40619:19;:17;:19::i;:::-;40595:16;:44::i;:::-;40590:128;;40667:35;;;;;;;;;;;;;;40590:128;40543:175;40763:2;40730:15;:24;40746:7;40730:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40801:7;40797:2;40781:28;;40790:5;40781:28;;;;;;;;;;;;40487:330;40409:408;;:::o;69793:101::-;69858:7;69885:1;69878:8;;69793:101;:::o;44615:2825::-;44757:27;44787;44806:7;44787:18;:27::i;:::-;44757:57;;44872:4;44831:45;;44847:19;44831:45;;;44827:86;;44885:28;;;;;;;;;;;;;;44827:86;44927:27;44956:23;44983:35;45010:7;44983:26;:35::i;:::-;44926:92;;;;45118:68;45143:15;45160:4;45166:19;:17;:19::i;:::-;45118:24;:68::i;:::-;45113:180;;45206:43;45223:4;45229:19;:17;:19::i;:::-;45206:16;:43::i;:::-;45201:92;;45258:35;;;;;;;;;;;;;;45201:92;45113:180;45324:1;45310:16;;:2;:16;;;45306:52;;45335:23;;;;;;;;;;;;;;45306:52;45371:43;45393:4;45399:2;45403:7;45412:1;45371:21;:43::i;:::-;45507:15;45504:160;;;45647:1;45626:19;45619:30;45504:160;46044:18;:24;46063:4;46044:24;;;;;;;;;;;;;;;;46042:26;;;;;;;;;;;;46113:18;:22;46132:2;46113:22;;;;;;;;;;;;;;;;46111:24;;;;;;;;;;;46435:146;46472:2;46521:45;46536:4;46542:2;46546:19;46521:14;:45::i;:::-;26635:8;46493:73;46435:18;:146::i;:::-;46406:17;:26;46424:7;46406:26;;;;;;;;;;;:175;;;;46752:1;26635:8;46701:19;:47;:52;46697:627;;46774:19;46806:1;46796:7;:11;46774:33;;46963:1;46929:17;:30;46947:11;46929:30;;;;;;;;;;;;:35;46925:384;;47067:13;;47052:11;:28;47048:242;;47247:19;47214:17;:30;47232:11;47214:30;;;;;;;;;;;:52;;;;47048:242;46925:384;46755:569;46697:627;47371:7;47367:2;47352:27;;47361:4;47352:27;;;;;;;;;;;;47390:42;47411:4;47417:2;47421:7;47430:1;47390:20;:42::i;:::-;44746:2694;;;44615:2825;;;:::o;13414:132::-;13489:12;:10;:12::i;:::-;13478:23;;:7;:5;:7::i;:::-;:23;;;13470:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13414:132::o;47536:193::-;47682:39;47699:4;47705:2;47709:7;47682:39;;;;;;;;;;;;:16;:39::i;:::-;47536:193;;;:::o;59184:3081::-;59264:27;59294;59313:7;59294:18;:27::i;:::-;59264:57;;59334:12;59365:19;59334:52;;59400:27;59429:23;59456:35;59483:7;59456:26;:35::i;:::-;59399:92;;;;59508:13;59504:316;;;59629:68;59654:15;59671:4;59677:19;:17;:19::i;:::-;59629:24;:68::i;:::-;59624:184;;59721:43;59738:4;59744:19;:17;:19::i;:::-;59721:16;:43::i;:::-;59716:92;;59773:35;;;;;;;;;;;;;;59716:92;59624:184;59504:316;59832:51;59854:4;59868:1;59872:7;59881:1;59832:21;:51::i;:::-;59976:15;59973:160;;;60116:1;60095:19;60088:30;59973:160;60794:1;25844:3;60764:1;:26;;60763:32;60735:18;:24;60754:4;60735:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;61062:176;61099:4;61170:53;61185:4;61199:1;61203:19;61170:14;:53::i;:::-;26635:8;26355;61123:43;61122:101;61062:18;:176::i;:::-;61033:17;:26;61051:7;61033:26;;;;;;;;;;;:205;;;;61409:1;26635:8;61358:19;:47;:52;61354:627;;61431:19;61463:1;61453:7;:11;61431:33;;61620:1;61586:17;:30;61604:11;61586:30;;;;;;;;;;;;:35;61582:384;;61724:13;;61709:11;:28;61705:242;;61904:19;61871:17;:30;61889:11;61871:30;;;;;;;;;;;:52;;;;61705:242;61582:384;61412:569;61354:627;62036:7;62032:1;62009:35;;62018:4;62009:35;;;;;;;;;;;;62055:50;62076:4;62090:1;62094:7;62103:1;62055:20;:50::i;:::-;62232:12;;:14;;;;;;;;;;;;;59253:3012;;;;59184:3081;;:::o;37033:1275::-;37100:7;37120:12;37135:7;37120:22;;37203:4;37184:15;:13;:15::i;:::-;:23;37180:1061;;37237:13;;37230:4;:20;37226:1015;;;37275:14;37292:17;:23;37310:4;37292:23;;;;;;;;;;;;37275:40;;37409:1;26355:8;37381:6;:24;:29;37377:845;;38046:113;38063:1;38053:6;:11;38046:113;;38106:17;:25;38124:6;;;;;;;38106:25;;;;;;;;;;;;38097:34;;38046:113;;;38192:6;38185:13;;;;;;37377:845;37252:989;37226:1015;37180:1061;38269:31;;;;;;;;;;;;;;37033:1275;;;;:::o;58866:89::-;58926:21;58932:7;58941:5;58926;:21::i;:::-;58866:89;:::o;14516:191::-;14590:16;14609:6;;;;;;;;;;;14590:25;;14635:8;14626:6;;:17;;;;;;;;;;;;;;;;;;14690:8;14659:40;;14680:8;14659:40;;;;;;;;;;;;14579:128;14516:191;:::o;51996:2966::-;52069:20;52092:13;;52069:36;;52132:1;52120:8;:13;52116:44;;52142:18;;;;;;;;;;;;;;52116:44;52173:61;52203:1;52207:2;52211:12;52225:8;52173:21;:61::i;:::-;52717:1;25717:2;52687:1;:26;;52686:32;52674:8;:45;52648:18;:22;52667:2;52648:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52996:139;53033:2;53087:33;53110:1;53114:2;53118:1;53087:14;:33::i;:::-;53054:30;53075:8;53054:20;:30::i;:::-;:66;52996:18;:139::i;:::-;52962:17;:31;52980:12;52962:31;;;;;;;;;;;:173;;;;53152:16;53183:11;53212:8;53197:12;:23;53183:37;;53733:16;53729:2;53725:25;53713:37;;54105:12;54065:8;54024:1;53962:25;53903:1;53842;53815:335;54476:1;54462:12;54458:20;54416:346;54517:3;54508:7;54505:16;54416:346;;54735:7;54725:8;54722:1;54695:25;54692:1;54689;54684:59;54570:1;54561:7;54557:15;54546:26;;54416:346;;;54420:77;54807:1;54795:8;:13;54791:45;;54817:19;;;;;;;;;;;;;;54791:45;54869:3;54853:13;:19;;;;52422:2462;;54894:60;54923:1;54927:2;54931:12;54945:8;54894:20;:60::i;:::-;52058:2904;51996:2966;;:::o;41534:234::-;41681:8;41629:18;:39;41648:19;:17;:19::i;:::-;41629:39;;;;;;;;;;;;;;;:49;41669:8;41629:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41741:8;41705:55;;41720:19;:17;:19::i;:::-;41705:55;;;41751:8;41705:55;;;;;;:::i;:::-;;;;;;;;41534:234;;:::o;48327:407::-;48502:31;48515:4;48521:2;48525:7;48502:12;:31::i;:::-;48566:1;48548:2;:14;;;:19;48544:183;;48587:56;48618:4;48624:2;48628:7;48637:5;48587:30;:56::i;:::-;48582:145;;48671:40;;;;;;;;;;;;;;48582:145;48544:183;48327:407;;;;:::o;67867:100::-;67919:13;67952:7;67945:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67867:100;:::o;64862:1745::-;64927:17;65361:4;65354;65348:11;65344:22;65453:1;65447:4;65440:15;65528:4;65525:1;65521:12;65514:19;;65610:1;65605:3;65598:14;65714:3;65953:5;65935:428;65961:1;65935:428;;;66001:1;65996:3;65992:11;65985:18;;66172:2;66166:4;66162:13;66158:2;66154:22;66149:3;66141:36;66266:2;66260:4;66256:13;66248:21;;66333:4;65935:428;66323:25;65935:428;65939:21;66402:3;66397;66393:13;66517:4;66512:3;66508:14;66501:21;;66582:6;66577:3;66570:19;64966:1634;;;64862:1745;;;:::o;64655:105::-;64715:7;64742:10;64735:17;;64655:105;:::o;43510:485::-;43612:27;43641:23;43682:38;43723:15;:24;43739:7;43723:24;;;;;;;;;;;43682:65;;43900:18;43877:41;;43957:19;43951:26;43932:45;;43862:126;43510:485;;;:::o;42738:659::-;42887:11;43052:16;43045:5;43041:28;43032:37;;43212:16;43201:9;43197:32;43184:45;;43362:15;43351:9;43348:30;43340:5;43329:9;43326:20;43323:56;43313:66;;42738:659;;;;;:::o;49396:159::-;;;;;:::o;63964:311::-;64099:7;64119:16;26759:3;64145:19;:41;;64119:68;;26759:3;64213:31;64224:4;64230:2;64234:9;64213:10;:31::i;:::-;64205:40;;:62;;64198:69;;;63964:311;;;;;:::o;38856:450::-;38936:14;39104:16;39097:5;39093:28;39084:37;;39281:5;39267:11;39242:23;39238:41;39235:52;39228:5;39225:63;39215:73;;38856:450;;;;:::o;50220:158::-;;;;;:::o;11800:98::-;11853:7;11880:10;11873:17;;11800:98;:::o;39408:324::-;39478:14;39711:1;39701:8;39698:15;39672:24;39668:46;39658:56;;39408:324;;;:::o;50818:716::-;50981:4;51027:2;51002:45;;;51048:19;:17;:19::i;:::-;51069:4;51075:7;51084:5;51002:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50998:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51302:1;51285:6;:13;:18;51281:235;;51331:40;;;;;;;;;;;;;;51281:235;51474:6;51468:13;51459:6;51455:2;51451:15;51444:38;50998:529;51171:54;;;51161:64;;;:6;:64;;;;51154:71;;;50818:716;;;;;;:::o;63665:147::-;63802:6;63665:147;;;;;:::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:117::-;9600:1;9597;9590:12;9614:117;9723:1;9720;9713:12;9754:568;9827:8;9837:6;9887:3;9880:4;9872:6;9868:17;9864:27;9854:122;;9895:79;;:::i;:::-;9854:122;10008:6;9995:20;9985:30;;10038:18;10030:6;10027:30;10024:117;;;10060:79;;:::i;:::-;10024:117;10174:4;10166:6;10162:17;10150:29;;10228:3;10220:4;10212:6;10208:17;10198:8;10194:32;10191:41;10188:128;;;10235:79;;:::i;:::-;10188:128;9754:568;;;;;:::o;10328:559::-;10414:6;10422;10471:2;10459:9;10450:7;10446:23;10442:32;10439:119;;;10477:79;;:::i;:::-;10439:119;10625:1;10614:9;10610:17;10597:31;10655:18;10647:6;10644:30;10641:117;;;10677:79;;:::i;:::-;10641:117;10790:80;10862:7;10853:6;10842:9;10838:22;10790:80;:::i;:::-;10772:98;;;;10568:312;10328:559;;;;;:::o;10893:329::-;10952:6;11001:2;10989:9;10980:7;10976:23;10972:32;10969:119;;;11007:79;;:::i;:::-;10969:119;11127:1;11152:53;11197:7;11188:6;11177:9;11173:22;11152:53;:::i;:::-;11142:63;;11098:117;10893:329;;;;:::o;11228:116::-;11298:21;11313:5;11298:21;:::i;:::-;11291:5;11288:32;11278:60;;11334:1;11331;11324:12;11278:60;11228:116;:::o;11350:133::-;11393:5;11431:6;11418:20;11409:29;;11447:30;11471:5;11447:30;:::i;:::-;11350:133;;;;:::o;11489:468::-;11554:6;11562;11611:2;11599:9;11590:7;11586:23;11582:32;11579:119;;;11617:79;;:::i;:::-;11579:119;11737:1;11762:53;11807:7;11798:6;11787:9;11783:22;11762:53;:::i;:::-;11752:63;;11708:117;11864:2;11890:50;11932:7;11923:6;11912:9;11908:22;11890:50;:::i;:::-;11880:60;;11835:115;11489:468;;;;;:::o;11963:307::-;12024:4;12114:18;12106:6;12103:30;12100:56;;;12136:18;;:::i;:::-;12100:56;12174:29;12196:6;12174:29;:::i;:::-;12166:37;;12258:4;12252;12248:15;12240:23;;11963:307;;;:::o;12276:423::-;12353:5;12378:65;12394:48;12435:6;12394:48;:::i;:::-;12378:65;:::i;:::-;12369:74;;12466:6;12459:5;12452:21;12504:4;12497:5;12493:16;12542:3;12533:6;12528:3;12524:16;12521:25;12518:112;;;12549:79;;:::i;:::-;12518:112;12639:54;12686:6;12681:3;12676;12639:54;:::i;:::-;12359:340;12276:423;;;;;:::o;12718:338::-;12773:5;12822:3;12815:4;12807:6;12803:17;12799:27;12789:122;;12830:79;;:::i;:::-;12789:122;12947:6;12934:20;12972:78;13046:3;13038:6;13031:4;13023:6;13019:17;12972:78;:::i;:::-;12963:87;;12779:277;12718:338;;;;:::o;13062:943::-;13157:6;13165;13173;13181;13230:3;13218:9;13209:7;13205:23;13201:33;13198:120;;;13237:79;;:::i;:::-;13198:120;13357:1;13382:53;13427:7;13418:6;13407:9;13403:22;13382:53;:::i;:::-;13372:63;;13328:117;13484:2;13510:53;13555:7;13546:6;13535:9;13531:22;13510:53;:::i;:::-;13500:63;;13455:118;13612:2;13638:53;13683:7;13674:6;13663:9;13659:22;13638:53;:::i;:::-;13628:63;;13583:118;13768:2;13757:9;13753:18;13740:32;13799:18;13791:6;13788:30;13785:117;;;13821:79;;:::i;:::-;13785:117;13926:62;13980:7;13971:6;13960:9;13956:22;13926:62;:::i;:::-;13916:72;;13711:287;13062:943;;;;;;;:::o;14011:474::-;14079:6;14087;14136:2;14124:9;14115:7;14111:23;14107:32;14104:119;;;14142:79;;:::i;:::-;14104:119;14262:1;14287:53;14332:7;14323:6;14312:9;14308:22;14287:53;:::i;:::-;14277:63;;14233:117;14389:2;14415:53;14460:7;14451:6;14440:9;14436:22;14415:53;:::i;:::-;14405:63;;14360:118;14011:474;;;;;:::o;14491:::-;14559:6;14567;14616:2;14604:9;14595:7;14591:23;14587:32;14584:119;;;14622:79;;:::i;:::-;14584:119;14742:1;14767:53;14812:7;14803:6;14792:9;14788:22;14767:53;:::i;:::-;14757:63;;14713:117;14869:2;14895:53;14940:7;14931:6;14920:9;14916:22;14895:53;:::i;:::-;14885:63;;14840:118;14491:474;;;;;:::o;14971:180::-;15019:77;15016:1;15009:88;15116:4;15113:1;15106:15;15140:4;15137:1;15130:15;15157:320;15201:6;15238:1;15232:4;15228:12;15218:22;;15285:1;15279:4;15275:12;15306:18;15296:81;;15362:4;15354:6;15350:17;15340:27;;15296:81;15424:2;15416:6;15413:14;15393:18;15390:38;15387:84;;15443:18;;:::i;:::-;15387:84;15208:269;15157:320;;;:::o;15483:169::-;15623:21;15619:1;15611:6;15607:14;15600:45;15483:169;:::o;15658:366::-;15800:3;15821:67;15885:2;15880:3;15821:67;:::i;:::-;15814:74;;15897:93;15986:3;15897:93;:::i;:::-;16015:2;16010:3;16006:12;15999:19;;15658:366;;;:::o;16030:419::-;16196:4;16234:2;16223:9;16219:18;16211:26;;16283:9;16277:4;16273:20;16269:1;16258:9;16254:17;16247:47;16311:131;16437:4;16311:131;:::i;:::-;16303:139;;16030:419;;;:::o;16455:141::-;16504:4;16527:3;16519:11;;16550:3;16547:1;16540:14;16584:4;16581:1;16571:18;16563:26;;16455:141;;;:::o;16602:93::-;16639:6;16686:2;16681;16674:5;16670:14;16666:23;16656:33;;16602:93;;;:::o;16701:107::-;16745:8;16795:5;16789:4;16785:16;16764:37;;16701:107;;;;:::o;16814:393::-;16883:6;16933:1;16921:10;16917:18;16956:97;16986:66;16975:9;16956:97;:::i;:::-;17074:39;17104:8;17093:9;17074:39;:::i;:::-;17062:51;;17146:4;17142:9;17135:5;17131:21;17122:30;;17195:4;17185:8;17181:19;17174:5;17171:30;17161:40;;16890:317;;16814:393;;;;;:::o;17213:142::-;17263:9;17296:53;17314:34;17323:24;17341:5;17323:24;:::i;:::-;17314:34;:::i;:::-;17296:53;:::i;:::-;17283:66;;17213:142;;;:::o;17361:75::-;17404:3;17425:5;17418:12;;17361:75;;;:::o;17442:269::-;17552:39;17583:7;17552:39;:::i;:::-;17613:91;17662:41;17686:16;17662:41;:::i;:::-;17654:6;17647:4;17641:11;17613:91;:::i;:::-;17607:4;17600:105;17518:193;17442:269;;;:::o;17717:73::-;17762:3;17717:73;:::o;17796:189::-;17873:32;;:::i;:::-;17914:65;17972:6;17964;17958:4;17914:65;:::i;:::-;17849:136;17796:189;;:::o;17991:186::-;18051:120;18068:3;18061:5;18058:14;18051:120;;;18122:39;18159:1;18152:5;18122:39;:::i;:::-;18095:1;18088:5;18084:13;18075:22;;18051:120;;;17991:186;;:::o;18183:543::-;18284:2;18279:3;18276:11;18273:446;;;18318:38;18350:5;18318:38;:::i;:::-;18402:29;18420:10;18402:29;:::i;:::-;18392:8;18388:44;18585:2;18573:10;18570:18;18567:49;;;18606:8;18591:23;;18567:49;18629:80;18685:22;18703:3;18685:22;:::i;:::-;18675:8;18671:37;18658:11;18629:80;:::i;:::-;18288:431;;18273:446;18183:543;;;:::o;18732:117::-;18786:8;18836:5;18830:4;18826:16;18805:37;;18732:117;;;;:::o;18855:169::-;18899:6;18932:51;18980:1;18976:6;18968:5;18965:1;18961:13;18932:51;:::i;:::-;18928:56;19013:4;19007;19003:15;18993:25;;18906:118;18855:169;;;;:::o;19029:295::-;19105:4;19251:29;19276:3;19270:4;19251:29;:::i;:::-;19243:37;;19313:3;19310:1;19306:11;19300:4;19297:21;19289:29;;19029:295;;;;:::o;19329:1395::-;19446:37;19479:3;19446:37;:::i;:::-;19548:18;19540:6;19537:30;19534:56;;;19570:18;;:::i;:::-;19534:56;19614:38;19646:4;19640:11;19614:38;:::i;:::-;19699:67;19759:6;19751;19745:4;19699:67;:::i;:::-;19793:1;19817:4;19804:17;;19849:2;19841:6;19838:14;19866:1;19861:618;;;;20523:1;20540:6;20537:77;;;20589:9;20584:3;20580:19;20574:26;20565:35;;20537:77;20640:67;20700:6;20693:5;20640:67;:::i;:::-;20634:4;20627:81;20496:222;19831:887;;19861:618;19913:4;19909:9;19901:6;19897:22;19947:37;19979:4;19947:37;:::i;:::-;20006:1;20020:208;20034:7;20031:1;20028:14;20020:208;;;20113:9;20108:3;20104:19;20098:26;20090:6;20083:42;20164:1;20156:6;20152:14;20142:24;;20211:2;20200:9;20196:18;20183:31;;20057:4;20054:1;20050:12;20045:17;;20020:208;;;20256:6;20247:7;20244:19;20241:179;;;20314:9;20309:3;20305:19;20299:26;20357:48;20399:4;20391:6;20387:17;20376:9;20357:48;:::i;:::-;20349:6;20342:64;20264:156;20241:179;20466:1;20462;20454:6;20450:14;20446:22;20440:4;20433:36;19868:611;;;19831:887;;19421:1303;;;19329:1395;;:::o;20730:180::-;20778:77;20775:1;20768:88;20875:4;20872:1;20865:15;20899:4;20896:1;20889:15;20916:174;21056:26;21052:1;21044:6;21040:14;21033:50;20916:174;:::o;21096:366::-;21238:3;21259:67;21323:2;21318:3;21259:67;:::i;:::-;21252:74;;21335:93;21424:3;21335:93;:::i;:::-;21453:2;21448:3;21444:12;21437:19;;21096:366;;;:::o;21468:419::-;21634:4;21672:2;21661:9;21657:18;21649:26;;21721:9;21715:4;21711:20;21707:1;21696:9;21692:17;21685:47;21749:131;21875:4;21749:131;:::i;:::-;21741:139;;21468:419;;;:::o;21893:170::-;22033:22;22029:1;22021:6;22017:14;22010:46;21893:170;:::o;22069:366::-;22211:3;22232:67;22296:2;22291:3;22232:67;:::i;:::-;22225:74;;22308:93;22397:3;22308:93;:::i;:::-;22426:2;22421:3;22417:12;22410:19;;22069:366;;;:::o;22441:419::-;22607:4;22645:2;22634:9;22630:18;22622:26;;22694:9;22688:4;22684:20;22680:1;22669:9;22665:17;22658:47;22722:131;22848:4;22722:131;:::i;:::-;22714:139;;22441:419;;;:::o;22866:181::-;23006:33;23002:1;22994:6;22990:14;22983:57;22866:181;:::o;23053:366::-;23195:3;23216:67;23280:2;23275:3;23216:67;:::i;:::-;23209:74;;23292:93;23381:3;23292:93;:::i;:::-;23410:2;23405:3;23401:12;23394:19;;23053:366;;;:::o;23425:419::-;23591:4;23629:2;23618:9;23614:18;23606:26;;23678:9;23672:4;23668:20;23664:1;23653:9;23649:17;23642:47;23706:131;23832:4;23706:131;:::i;:::-;23698:139;;23425:419;;;:::o;23850:180::-;23898:77;23895:1;23888:88;23995:4;23992:1;23985:15;24019:4;24016:1;24009:15;24036:191;24076:3;24095:20;24113:1;24095:20;:::i;:::-;24090:25;;24129:20;24147:1;24129:20;:::i;:::-;24124:25;;24172:1;24169;24165:9;24158:16;;24193:3;24190:1;24187:10;24184:36;;;24200:18;;:::i;:::-;24184:36;24036:191;;;;:::o;24233:221::-;24373:34;24369:1;24361:6;24357:14;24350:58;24442:4;24437:2;24429:6;24425:15;24418:29;24233:221;:::o;24460:366::-;24602:3;24623:67;24687:2;24682:3;24623:67;:::i;:::-;24616:74;;24699:93;24788:3;24699:93;:::i;:::-;24817:2;24812:3;24808:12;24801:19;;24460:366;;;:::o;24832:419::-;24998:4;25036:2;25025:9;25021:18;25013:26;;25085:9;25079:4;25075:20;25071:1;25060:9;25056:17;25049:47;25113:131;25239:4;25113:131;:::i;:::-;25105:139;;24832:419;;;:::o;25257:178::-;25397:30;25393:1;25385:6;25381:14;25374:54;25257:178;:::o;25441:366::-;25583:3;25604:67;25668:2;25663:3;25604:67;:::i;:::-;25597:74;;25680:93;25769:3;25680:93;:::i;:::-;25798:2;25793:3;25789:12;25782:19;;25441:366;;;:::o;25813:419::-;25979:4;26017:2;26006:9;26002:18;25994:26;;26066:9;26060:4;26056:20;26052:1;26041:9;26037:17;26030:47;26094:131;26220:4;26094:131;:::i;:::-;26086:139;;25813:419;;;:::o;26238:194::-;26278:4;26298:20;26316:1;26298:20;:::i;:::-;26293:25;;26332:20;26350:1;26332:20;:::i;:::-;26327:25;;26376:1;26373;26369:9;26361:17;;26400:1;26394:4;26391:11;26388:37;;;26405:18;;:::i;:::-;26388:37;26238:194;;;;:::o;26438:410::-;26478:7;26501:20;26519:1;26501:20;:::i;:::-;26496:25;;26535:20;26553:1;26535:20;:::i;:::-;26530:25;;26590:1;26587;26583:9;26612:30;26630:11;26612:30;:::i;:::-;26601:41;;26791:1;26782:7;26778:15;26775:1;26772:22;26752:1;26745:9;26725:83;26702:139;;26821:18;;:::i;:::-;26702:139;26486:362;26438:410;;;;:::o;26854:173::-;26994:25;26990:1;26982:6;26978:14;26971:49;26854:173;:::o;27033:366::-;27175:3;27196:67;27260:2;27255:3;27196:67;:::i;:::-;27189:74;;27272:93;27361:3;27272:93;:::i;:::-;27390:2;27385:3;27381:12;27374:19;;27033:366;;;:::o;27405:419::-;27571:4;27609:2;27598:9;27594:18;27586:26;;27658:9;27652:4;27648:20;27644:1;27633:9;27629:17;27622:47;27686:131;27812:4;27686:131;:::i;:::-;27678:139;;27405:419;;;:::o;27830:148::-;27932:11;27969:3;27954:18;;27830:148;;;;:::o;27984:390::-;28090:3;28118:39;28151:5;28118:39;:::i;:::-;28173:89;28255:6;28250:3;28173:89;:::i;:::-;28166:96;;28271:65;28329:6;28324:3;28317:4;28310:5;28306:16;28271:65;:::i;:::-;28361:6;28356:3;28352:16;28345:23;;28094:280;27984:390;;;;:::o;28380:435::-;28560:3;28582:95;28673:3;28664:6;28582:95;:::i;:::-;28575:102;;28694:95;28785:3;28776:6;28694:95;:::i;:::-;28687:102;;28806:3;28799:10;;28380:435;;;;;:::o;28821:225::-;28961:34;28957:1;28949:6;28945:14;28938:58;29030:8;29025:2;29017:6;29013:15;29006:33;28821:225;:::o;29052:366::-;29194:3;29215:67;29279:2;29274:3;29215:67;:::i;:::-;29208:74;;29291:93;29380:3;29291:93;:::i;:::-;29409:2;29404:3;29400:12;29393:19;;29052:366;;;:::o;29424:419::-;29590:4;29628:2;29617:9;29613:18;29605:26;;29677:9;29671:4;29667:20;29663:1;29652:9;29648:17;29641:47;29705:131;29831:4;29705:131;:::i;:::-;29697:139;;29424:419;;;:::o;29849:332::-;29970:4;30008:2;29997:9;29993:18;29985:26;;30021:71;30089:1;30078:9;30074:17;30065:6;30021:71;:::i;:::-;30102:72;30170:2;30159:9;30155:18;30146:6;30102:72;:::i;:::-;29849:332;;;;;:::o;30187:137::-;30241:5;30272:6;30266:13;30257:22;;30288:30;30312:5;30288:30;:::i;:::-;30187:137;;;;:::o;30330:345::-;30397:6;30446:2;30434:9;30425:7;30421:23;30417:32;30414:119;;;30452:79;;:::i;:::-;30414:119;30572:1;30597:61;30650:7;30641:6;30630:9;30626:22;30597:61;:::i;:::-;30587:71;;30543:125;30330:345;;;;:::o;30681:182::-;30821:34;30817:1;30809:6;30805:14;30798:58;30681:182;:::o;30869:366::-;31011:3;31032:67;31096:2;31091:3;31032:67;:::i;:::-;31025:74;;31108:93;31197:3;31108:93;:::i;:::-;31226:2;31221:3;31217:12;31210:19;;30869:366;;;:::o;31241:419::-;31407:4;31445:2;31434:9;31430:18;31422:26;;31494:9;31488:4;31484:20;31480:1;31469:9;31465:17;31458:47;31522:131;31648:4;31522:131;:::i;:::-;31514:139;;31241:419;;;:::o;31666:98::-;31717:6;31751:5;31745:12;31735:22;;31666:98;;;:::o;31770:168::-;31853:11;31887:6;31882:3;31875:19;31927:4;31922:3;31918:14;31903:29;;31770:168;;;;:::o;31944:373::-;32030:3;32058:38;32090:5;32058:38;:::i;:::-;32112:70;32175:6;32170:3;32112:70;:::i;:::-;32105:77;;32191:65;32249:6;32244:3;32237:4;32230:5;32226:16;32191:65;:::i;:::-;32281:29;32303:6;32281:29;:::i;:::-;32276:3;32272:39;32265:46;;32034:283;31944:373;;;;:::o;32323:640::-;32518:4;32556:3;32545:9;32541:19;32533:27;;32570:71;32638:1;32627:9;32623:17;32614:6;32570:71;:::i;:::-;32651:72;32719:2;32708:9;32704:18;32695:6;32651:72;:::i;:::-;32733;32801:2;32790:9;32786:18;32777:6;32733:72;:::i;:::-;32852:9;32846:4;32842:20;32837:2;32826:9;32822:18;32815:48;32880:76;32951:4;32942:6;32880:76;:::i;:::-;32872:84;;32323:640;;;;;;;:::o;32969:141::-;33025:5;33056:6;33050:13;33041:22;;33072:32;33098:5;33072:32;:::i;:::-;32969:141;;;;:::o;33116:349::-;33185:6;33234:2;33222:9;33213:7;33209:23;33205:32;33202:119;;;33240:79;;:::i;:::-;33202:119;33360:1;33385:63;33440:7;33431:6;33420:9;33416:22;33385:63;:::i;:::-;33375:73;;33331:127;33116:349;;;;:::o
Swarm Source
ipfs://7751236c6a90d9c2c19cf52dbdeeb3908ad2f9bdd1574b5a7c53e139e9622470
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.