ERC-721
Overview
Max Total Supply
1,681 DORK
Holders
202
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DORKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DorktownWtf
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-06 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/Dorktownwtf.sol pragma solidity ^0.8.7; ///@dev // Dependencies: // npm i --save-dev erc721a // npm i @openzeppelin/contracts // import "erc721a/contracts/ERC721A.sol"; contract DorktownWtf is ERC721A, Ownable, ReentrancyGuard, Pausable{ // public mint variables uint256 public maxSupply = 6666; uint256 public maxMint = 20; uint256 public mintPrice = 0.003 ether; // @dev 10 finney = 0.01 ether //base uri, baseextension and pre-reveal string private baseURI; string public baseExtension = ".json"; // booleans for reveal toggle and if mint is enabled bool public revealed = false; bool public publicMintEnabled = false; // keep track of # of minted tokens per user mapping(address => uint256) totalPublicMint; mapping(address => uint256) public totalFreeMints; // Constructor // https://filesite/CID/ // initialize cid(Pinata, ipfs etc) for baseUri and contractUri, make sure / is at end and metadata files named as "x.png" "x.json" not "name x.png" etc // https://gateway.pinata.cloud/ipfs/CID/ // initialize pre-reveal cid, baseExtension has to be name.json // https://gateway.pinata.cloud/ipfs/CID/hidden.json constructor ( string memory _initBaseURI ) ERC721A("Dorktown.wtf", "DORK") { setBaseURI(_initBaseURI); } // only allows msg.sender to be external tx origin modifier userOnly { require(tx.origin == msg.sender,"Error: Function cannot be called by another contract"); _; } function teamMint(address _address, uint256 _amount) external userOnly onlyOwner nonReentrant { _safeMint(_address, _amount); } // Users can public mint tokens based on modifiers and requirements function publicMint(uint256 _quantity) external payable whenNotPaused userOnly nonReentrant { // user receives 1 free mint during mint if (totalFreeMints[msg.sender] == 0) { require(publicMintEnabled, "Public mint is currently paused"); require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached"); require((totalPublicMint[msg.sender] + _quantity) <= maxMint, "Error: Cannot mint more than 8"); require(msg.value >= ((_quantity * mintPrice) - mintPrice), "Not enough ether sent"); totalFreeMints[msg.sender] += 1; totalPublicMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); // if user has already received free mint, regular price is applied } else { require(publicMintEnabled, "Public mint is currently paused"); require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached"); require((totalPublicMint[msg.sender] + _quantity) <= maxMint, "Error: Cannot mint more than 8"); require(msg.value >= (_quantity * mintPrice), "Not enough ether sent"); totalPublicMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } } // returns the baseuri of collection, private function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // override _startTokenId() from erc721a to start tokenId at 1 function _startTokenId() internal view virtual override returns (uint256) { return 1; } // return tokenUri given the tokenId function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); if (revealed == false) { return baseURI; } else { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), baseExtension)) : ""; } } // owner updates and functions function togglePublicMint() external onlyOwner { publicMintEnabled = !publicMintEnabled; } // reveal metadata + NFT images function reveal() external onlyOwner { revealed = !revealed; } function setPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice; } function setmaxMintAmount(uint256 _maxMint) external onlyOwner { maxMint = _maxMint; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setBaseExtension(string memory _newBaseExtension) external onlyOwner { baseExtension = _newBaseExtension; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } // withdraw to owner(), i.e only if msg.sender is owner function withdrawTransfer(address _to) external onlyOwner nonReentrant userOnly{ payable(_to).transfer(address(this).balance); } function withdrawTransferDev() external onlyOwner nonReentrant userOnly{ payable(0x2682a68c56D5f81D4d79ee630fc85B6Ea4E51f0F).transfer(address(this).balance * 5 / 100); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setmaxMintAmount","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":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTransferDev","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611a0a600b556014600c55660aa87bee538000600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f908051906020019062000067929190620003a0565b506000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000ab57600080fd5b5060405162003e8838038062003e888339818101604052810190620000d19190620004ce565b6040518060400160405280600c81526020017f446f726b746f776e2e77746600000000000000000000000000000000000000008152506040518060400160405280600481526020017f444f524b00000000000000000000000000000000000000000000000000000000815250816002908051906020019062000155929190620003a0565b5080600390805190602001906200016e929190620003a0565b506200017f620001e260201b60201c565b6000819055505050620001a76200019b620001eb60201b60201c565b620001f360201b60201c565b60016009819055506000600a60006101000a81548160ff021916908315150217905550620001db81620002b960201b60201c565b5062000726565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c9620002e560201b60201c565b80600e9080519060200190620002e1929190620003a0565b5050565b620002f5620001eb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031b6200037660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000374576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036b9062000546565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ae906200060e565b90600052602060002090601f016020900481019282620003d257600085556200041e565b82601f10620003ed57805160ff19168380011785556200041e565b828001600101855582156200041e579182015b828111156200041d57825182559160200191906001019062000400565b5b5090506200042d919062000431565b5090565b5b808211156200044c57600081600090555060010162000432565b5090565b600062000467620004618462000591565b62000568565b905082815260208101848484011115620004865762000485620006dd565b5b62000493848285620005d8565b509392505050565b600082601f830112620004b357620004b2620006d8565b5b8151620004c584826020860162000450565b91505092915050565b600060208284031215620004e757620004e6620006e7565b5b600082015167ffffffffffffffff811115620005085762000507620006e2565b5b62000516848285016200049b565b91505092915050565b60006200052e602083620005c7565b91506200053b82620006fd565b602082019050919050565b6000602082019050818103600083015262000561816200051f565b9050919050565b60006200057462000587565b905062000582828262000644565b919050565b6000604051905090565b600067ffffffffffffffff821115620005af57620005ae620006a9565b5b620005ba82620006ec565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005f8578082015181840152602081019050620005db565b8381111562000608576000848401525b50505050565b600060028204905060018216806200062757607f821691505b602082108114156200063e576200063d6200067a565b5b50919050565b6200064f82620006ec565b810181811067ffffffffffffffff82111715620006715762000670620006a9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61375280620007366000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610730578063da3ef23f1461075b578063e985e9c514610784578063eb53fa89146107c1578063f2fde38b146107d85761021a565b8063a475b5dd1461066c578063add5a4fa14610683578063b88d4fde146106ac578063c6682862146106c8578063c87b56dd146106f35761021a565b80638456cb59116100f25780638456cb59146105ad5780638da5cb5b146105c457806391b7f5ed146105ef57806395d89b4114610618578063a22cb465146106435761021a565b806370a0823114610505578063715018a6146105425780637501f741146105595780637f00c7a6146105845761021a565b80633f4ba83a116101a657806355f804b31161017557806355f804b3146104205780635c975abb146104495780636352211e146104745780636817c76c146104b1578063700d9df3146104dc5761021a565b80633f4ba83a146103ab5780634047638d146103c257806342842e0e146103d957806351830227146103f55761021a565b80630f4161aa116101ed5780630f4161aa146102e057806318160ddd1461030b57806323b872dd146103365780632db115441461035257806337321ec81461036e5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612aad565b610801565b6040516102539190612ee5565b60405180910390f35b34801561026857600080fd5b50610271610893565b60405161027e9190612f00565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612b50565b610925565b6040516102bb9190612e7e565b60405180910390f35b6102de60048036038101906102d99190612a6d565b6109a4565b005b3480156102ec57600080fd5b506102f5610ae8565b6040516103029190612ee5565b60405180910390f35b34801561031757600080fd5b50610320610afb565b60405161032d9190613082565b60405180910390f35b610350600480360381019061034b9190612957565b610b12565b005b61036c60048036038101906103679190612b50565b610e37565b005b34801561037a57600080fd5b50610395600480360381019061039091906128ea565b61133c565b6040516103a29190613082565b60405180910390f35b3480156103b757600080fd5b506103c0611354565b005b3480156103ce57600080fd5b506103d7611366565b005b6103f360048036038101906103ee9190612957565b61139a565b005b34801561040157600080fd5b5061040a6113ba565b6040516104179190612ee5565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190612b07565b6113cd565b005b34801561045557600080fd5b5061045e6113ef565b60405161046b9190612ee5565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190612b50565b611406565b6040516104a89190612e7e565b60405180910390f35b3480156104bd57600080fd5b506104c6611418565b6040516104d39190613082565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906128ea565b61141e565b005b34801561051157600080fd5b5061052c600480360381019061052791906128ea565b6114ee565b6040516105399190613082565b60405180910390f35b34801561054e57600080fd5b506105576115a7565b005b34801561056557600080fd5b5061056e6115bb565b60405161057b9190613082565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190612b50565b6115c1565b005b3480156105b957600080fd5b506105c26115d3565b005b3480156105d057600080fd5b506105d96115e5565b6040516105e69190612e7e565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190612b50565b61160f565b005b34801561062457600080fd5b5061062d611621565b60405161063a9190612f00565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612a2d565b6116b3565b005b34801561067857600080fd5b506106816117be565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612a6d565b6117f2565b005b6106c660048036038101906106c191906129aa565b611886565b005b3480156106d457600080fd5b506106dd6118f9565b6040516106ea9190612f00565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612b50565b611987565b6040516107279190612f00565b60405180910390f35b34801561073c57600080fd5b50610745611ae0565b6040516107529190613082565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190612b07565b611ae6565b005b34801561079057600080fd5b506107ab60048036038101906107a69190612917565b611b08565b6040516107b89190612ee5565b60405180910390f35b3480156107cd57600080fd5b506107d6611b9c565b005b3480156107e457600080fd5b506107ff60048036038101906107fa91906128ea565b611c97565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108a290613347565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90613347565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b600061093082611d1b565b610966576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109af82611406565b90508073ffffffffffffffffffffffffffffffffffffffff166109d0611d7a565b73ffffffffffffffffffffffffffffffffffffffff1614610a33576109fc816109f7611d7a565b611b08565b610a32576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601060019054906101000a900460ff1681565b6000610b05611d82565b6001546000540303905090565b6000610b1d82611d8b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b84576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b9084611e59565b91509150610ba68187610ba1611d7a565b611e80565b610bf257610bbb86610bb6611d7a565b611b08565b610bf1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c59576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c668686866001611ec4565b8015610c7157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3f85610d1b888887611eca565b7c020000000000000000000000000000000000000000000000000000000017611ef2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc7576000600185019050600060046000838152602001908152602001600020541415610dc5576000548114610dc4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2f8686866001611f1d565b505050505050565b610e3f611f23565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490612fc2565b60405180910390fd5b610eb5611f6d565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561114b57601060019054906101000a900460ff16610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390613022565b60405180910390fd5b600b5481610f58610afb565b610f62919061317c565b1115610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90612fe2565b60405180910390fd5b600c5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ff1919061317c565b1115611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613062565b60405180910390fd5b600d54600d54826110439190613203565b61104d919061325d565b34101561108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690613002565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110df919061317c565b9250508190555080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611135919061317c565b925050819055506111463382611fbd565b611331565b601060019054906101000a900460ff1661119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613022565b60405180910390fd5b600b54816111a6610afb565b6111b0919061317c565b11156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890612fe2565b60405180910390fd5b600c5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461123f919061317c565b1115611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790613062565b60405180910390fd5b600d548161128e9190613203565b3410156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613002565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461131f919061317c565b925050819055506113303382611fbd565b5b611339611fdb565b50565b60126020528060005260406000206000915090505481565b61135c611fe5565b611364612063565b565b61136e611fe5565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6113b583838360405180602001604052806000815250611886565b505050565b601060009054906101000a900460ff1681565b6113d5611fe5565b80600e90805190602001906113eb9291906126fe565b5050565b6000600a60009054906101000a900460ff16905090565b600061141182611d8b565b9050919050565b600d5481565b611426611fe5565b61142e611f6d565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612fc2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114e2573d6000803e3d6000fd5b506114eb611fdb565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115af611fe5565b6115b960006120c6565b565b600c5481565b6115c9611fe5565b80600c8190555050565b6115db611fe5565b6115e361218c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611617611fe5565b80600d8190555050565b60606003805461163090613347565b80601f016020809104026020016040519081016040528092919081815260200182805461165c90613347565b80156116a95780601f1061167e576101008083540402835291602001916116a9565b820191906000526020600020905b81548152906001019060200180831161168c57829003601f168201915b5050505050905090565b80600760006116c0611d7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176d611d7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b29190612ee5565b60405180910390a35050565b6117c6611fe5565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790612fc2565b60405180910390fd5b611868611fe5565b611870611f6d565b61187a8282611fbd565b611882611fdb565b5050565b611891848484610b12565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f3576118bc848484846121ef565b6118f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f805461190690613347565b80601f016020809104026020016040519081016040528092919081815260200182805461193290613347565b801561197f5780601f106119545761010080835404028352916020019161197f565b820191906000526020600020905b81548152906001019060200180831161196257829003601f168201915b505050505081565b606061199282611d1b565b6119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890612fa2565b60405180910390fd5b60001515601060009054906101000a900460ff1615151415611a7f57600e80546119fa90613347565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2690613347565b8015611a735780601f10611a4857610100808354040283529160200191611a73565b820191906000526020600020905b815481529060010190602001808311611a5657829003601f168201915b50505050509050611adb565b6000611a8961234f565b90506000815111611aa95760405180602001604052806000815250611ad7565b80611ab3846123e1565b600f604051602001611ac793929190612e4d565b6040516020818303038152906040525b9150505b919050565b600b5481565b611aee611fe5565b80600f9080519060200190611b049291906126fe565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba4611fe5565b611bac611f6d565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190612fc2565b60405180910390fd5b732682a68c56d5f81d4d79ee630fc85b6ea4e51f0f73ffffffffffffffffffffffffffffffffffffffff166108fc6064600547611c579190613203565b611c6191906131d2565b9081150290604051600060405180830381858888f19350505050158015611c8c573d6000803e3d6000fd5b50611c95611fdb565b565b611c9f611fe5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690612f42565b60405180910390fd5b611d18816120c6565b50565b600081611d26611d82565b11158015611d35575060005482105b8015611d73575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d9a611d82565b11611e2257600054811015611e215760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e1f575b6000811415611e15576004600083600190039350838152602001908152602001600020549050611dea565b8092505050611e54565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ee186868461243a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f2b6113ef565b15611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290612f62565b60405180910390fd5b565b60026009541415611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90613042565b60405180910390fd5b6002600981905550565b611fd7828260405180602001604052806000815250612443565b5050565b6001600981905550565b611fed6124e0565b73ffffffffffffffffffffffffffffffffffffffff1661200b6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614612061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205890612f82565b60405180910390fd5b565b61206b6124e8565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120af6124e0565b6040516120bc9190612e7e565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612194611f23565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121d86124e0565b6040516121e59190612e7e565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612215611d7a565b8786866040518563ffffffff1660e01b81526004016122379493929190612e99565b602060405180830381600087803b15801561225157600080fd5b505af192505050801561228257506040513d601f19601f8201168201806040525081019061227f9190612ada565b60015b6122fc573d80600081146122b2576040519150601f19603f3d011682016040523d82523d6000602084013e6122b7565b606091505b506000815114156122f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461235e90613347565b80601f016020809104026020016040519081016040528092919081815260200182805461238a90613347565b80156123d75780601f106123ac576101008083540402835291602001916123d7565b820191906000526020600020905b8154815290600101906020018083116123ba57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561242557600184039350600a81066030018453600a810490508061242057612425565b6123fa565b50828103602084039350808452505050919050565b60009392505050565b61244d8383612531565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124db57600080549050600083820390505b61248d60008683806001019450866121ef565b6124c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061247a5781600054146124d857600080fd5b50505b505050565b600033905090565b6124f06113ef565b61252f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252690612f22565b60405180910390fd5b565b6000805490506000821415612572576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61257f6000848385611ec4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125f6836125e76000866000611eca565b6125f0856126ee565b17611ef2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461269757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061265c565b5060008214156126d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126e96000848385611f1d565b505050565b60006001821460e11b9050919050565b82805461270a90613347565b90600052602060002090601f01602090048101928261272c5760008555612773565b82601f1061274557805160ff1916838001178555612773565b82800160010185558215612773579182015b82811115612772578251825591602001919060010190612757565b5b5090506127809190612784565b5090565b5b8082111561279d576000816000905550600101612785565b5090565b60006127b46127af846130c2565b61309d565b9050828152602081018484840111156127d0576127cf61346b565b5b6127db848285613305565b509392505050565b60006127f66127f1846130f3565b61309d565b9050828152602081018484840111156128125761281161346b565b5b61281d848285613305565b509392505050565b600081359050612834816136c0565b92915050565b600081359050612849816136d7565b92915050565b60008135905061285e816136ee565b92915050565b600081519050612873816136ee565b92915050565b600082601f83011261288e5761288d613466565b5b813561289e8482602086016127a1565b91505092915050565b600082601f8301126128bc576128bb613466565b5b81356128cc8482602086016127e3565b91505092915050565b6000813590506128e481613705565b92915050565b600060208284031215612900576128ff613475565b5b600061290e84828501612825565b91505092915050565b6000806040838503121561292e5761292d613475565b5b600061293c85828601612825565b925050602061294d85828601612825565b9150509250929050565b6000806000606084860312156129705761296f613475565b5b600061297e86828701612825565b935050602061298f86828701612825565b92505060406129a0868287016128d5565b9150509250925092565b600080600080608085870312156129c4576129c3613475565b5b60006129d287828801612825565b94505060206129e387828801612825565b93505060406129f4878288016128d5565b925050606085013567ffffffffffffffff811115612a1557612a14613470565b5b612a2187828801612879565b91505092959194509250565b60008060408385031215612a4457612a43613475565b5b6000612a5285828601612825565b9250506020612a638582860161283a565b9150509250929050565b60008060408385031215612a8457612a83613475565b5b6000612a9285828601612825565b9250506020612aa3858286016128d5565b9150509250929050565b600060208284031215612ac357612ac2613475565b5b6000612ad18482850161284f565b91505092915050565b600060208284031215612af057612aef613475565b5b6000612afe84828501612864565b91505092915050565b600060208284031215612b1d57612b1c613475565b5b600082013567ffffffffffffffff811115612b3b57612b3a613470565b5b612b47848285016128a7565b91505092915050565b600060208284031215612b6657612b65613475565b5b6000612b74848285016128d5565b91505092915050565b612b8681613291565b82525050565b612b95816132a3565b82525050565b6000612ba682613139565b612bb0818561314f565b9350612bc0818560208601613314565b612bc98161347a565b840191505092915050565b6000612bdf82613144565b612be98185613160565b9350612bf9818560208601613314565b612c028161347a565b840191505092915050565b6000612c1882613144565b612c228185613171565b9350612c32818560208601613314565b80840191505092915050565b60008154612c4b81613347565b612c558186613171565b94506001821660008114612c705760018114612c8157612cb4565b60ff19831686528186019350612cb4565b612c8a85613124565b60005b83811015612cac57815481890152600182019150602081019050612c8d565b838801955050505b50505092915050565b6000612cca601483613160565b9150612cd58261348b565b602082019050919050565b6000612ced602683613160565b9150612cf8826134b4565b604082019050919050565b6000612d10601083613160565b9150612d1b82613503565b602082019050919050565b6000612d33602083613160565b9150612d3e8261352c565b602082019050919050565b6000612d56602f83613160565b9150612d6182613555565b604082019050919050565b6000612d79603483613160565b9150612d84826135a4565b604082019050919050565b6000612d9c601983613160565b9150612da7826135f3565b602082019050919050565b6000612dbf601583613160565b9150612dca8261361c565b602082019050919050565b6000612de2601f83613160565b9150612ded82613645565b602082019050919050565b6000612e05601f83613160565b9150612e108261366e565b602082019050919050565b6000612e28601e83613160565b9150612e3382613697565b602082019050919050565b612e47816132fb565b82525050565b6000612e598286612c0d565b9150612e658285612c0d565b9150612e718284612c3e565b9150819050949350505050565b6000602082019050612e936000830184612b7d565b92915050565b6000608082019050612eae6000830187612b7d565b612ebb6020830186612b7d565b612ec86040830185612e3e565b8181036060830152612eda8184612b9b565b905095945050505050565b6000602082019050612efa6000830184612b8c565b92915050565b60006020820190508181036000830152612f1a8184612bd4565b905092915050565b60006020820190508181036000830152612f3b81612cbd565b9050919050565b60006020820190508181036000830152612f5b81612ce0565b9050919050565b60006020820190508181036000830152612f7b81612d03565b9050919050565b60006020820190508181036000830152612f9b81612d26565b9050919050565b60006020820190508181036000830152612fbb81612d49565b9050919050565b60006020820190508181036000830152612fdb81612d6c565b9050919050565b60006020820190508181036000830152612ffb81612d8f565b9050919050565b6000602082019050818103600083015261301b81612db2565b9050919050565b6000602082019050818103600083015261303b81612dd5565b9050919050565b6000602082019050818103600083015261305b81612df8565b9050919050565b6000602082019050818103600083015261307b81612e1b565b9050919050565b60006020820190506130976000830184612e3e565b92915050565b60006130a76130b8565b90506130b38282613379565b919050565b6000604051905090565b600067ffffffffffffffff8211156130dd576130dc613437565b5b6130e68261347a565b9050602081019050919050565b600067ffffffffffffffff82111561310e5761310d613437565b5b6131178261347a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613187826132fb565b9150613192836132fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131c7576131c66133aa565b5b828201905092915050565b60006131dd826132fb565b91506131e8836132fb565b9250826131f8576131f76133d9565b5b828204905092915050565b600061320e826132fb565b9150613219836132fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613252576132516133aa565b5b828202905092915050565b6000613268826132fb565b9150613273836132fb565b925082821015613286576132856133aa565b5b828203905092915050565b600061329c826132db565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613332578082015181840152602081019050613317565b83811115613341576000848401525b50505050565b6000600282049050600182168061335f57607f821691505b6020821081141561337357613372613408565b5b50919050565b6133828261347a565b810181811067ffffffffffffffff821117156133a1576133a0613437565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4572726f723a2046756e6374696f6e2063616e6e6f742062652063616c6c656460008201527f20627920616e6f7468657220636f6e7472616374000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20380000600082015250565b6136c981613291565b81146136d457600080fd5b50565b6136e0816132a3565b81146136eb57600080fd5b50565b6136f7816132af565b811461370257600080fd5b50565b61370e816132fb565b811461371957600080fd5b5056fea2646970667358221220b8b8b1291b81ab955b958c9de498121ace29ca4e1c6f2ec978e70762ab3e7e7964736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50325438323278623446424e38744a517863614158694b316963717750326178636b66527373456e356556412f68696464656e2e6a736f6e00000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610730578063da3ef23f1461075b578063e985e9c514610784578063eb53fa89146107c1578063f2fde38b146107d85761021a565b8063a475b5dd1461066c578063add5a4fa14610683578063b88d4fde146106ac578063c6682862146106c8578063c87b56dd146106f35761021a565b80638456cb59116100f25780638456cb59146105ad5780638da5cb5b146105c457806391b7f5ed146105ef57806395d89b4114610618578063a22cb465146106435761021a565b806370a0823114610505578063715018a6146105425780637501f741146105595780637f00c7a6146105845761021a565b80633f4ba83a116101a657806355f804b31161017557806355f804b3146104205780635c975abb146104495780636352211e146104745780636817c76c146104b1578063700d9df3146104dc5761021a565b80633f4ba83a146103ab5780634047638d146103c257806342842e0e146103d957806351830227146103f55761021a565b80630f4161aa116101ed5780630f4161aa146102e057806318160ddd1461030b57806323b872dd146103365780632db115441461035257806337321ec81461036e5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612aad565b610801565b6040516102539190612ee5565b60405180910390f35b34801561026857600080fd5b50610271610893565b60405161027e9190612f00565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612b50565b610925565b6040516102bb9190612e7e565b60405180910390f35b6102de60048036038101906102d99190612a6d565b6109a4565b005b3480156102ec57600080fd5b506102f5610ae8565b6040516103029190612ee5565b60405180910390f35b34801561031757600080fd5b50610320610afb565b60405161032d9190613082565b60405180910390f35b610350600480360381019061034b9190612957565b610b12565b005b61036c60048036038101906103679190612b50565b610e37565b005b34801561037a57600080fd5b50610395600480360381019061039091906128ea565b61133c565b6040516103a29190613082565b60405180910390f35b3480156103b757600080fd5b506103c0611354565b005b3480156103ce57600080fd5b506103d7611366565b005b6103f360048036038101906103ee9190612957565b61139a565b005b34801561040157600080fd5b5061040a6113ba565b6040516104179190612ee5565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190612b07565b6113cd565b005b34801561045557600080fd5b5061045e6113ef565b60405161046b9190612ee5565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190612b50565b611406565b6040516104a89190612e7e565b60405180910390f35b3480156104bd57600080fd5b506104c6611418565b6040516104d39190613082565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906128ea565b61141e565b005b34801561051157600080fd5b5061052c600480360381019061052791906128ea565b6114ee565b6040516105399190613082565b60405180910390f35b34801561054e57600080fd5b506105576115a7565b005b34801561056557600080fd5b5061056e6115bb565b60405161057b9190613082565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190612b50565b6115c1565b005b3480156105b957600080fd5b506105c26115d3565b005b3480156105d057600080fd5b506105d96115e5565b6040516105e69190612e7e565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190612b50565b61160f565b005b34801561062457600080fd5b5061062d611621565b60405161063a9190612f00565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612a2d565b6116b3565b005b34801561067857600080fd5b506106816117be565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612a6d565b6117f2565b005b6106c660048036038101906106c191906129aa565b611886565b005b3480156106d457600080fd5b506106dd6118f9565b6040516106ea9190612f00565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612b50565b611987565b6040516107279190612f00565b60405180910390f35b34801561073c57600080fd5b50610745611ae0565b6040516107529190613082565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190612b07565b611ae6565b005b34801561079057600080fd5b506107ab60048036038101906107a69190612917565b611b08565b6040516107b89190612ee5565b60405180910390f35b3480156107cd57600080fd5b506107d6611b9c565b005b3480156107e457600080fd5b506107ff60048036038101906107fa91906128ea565b611c97565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108a290613347565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90613347565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b600061093082611d1b565b610966576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109af82611406565b90508073ffffffffffffffffffffffffffffffffffffffff166109d0611d7a565b73ffffffffffffffffffffffffffffffffffffffff1614610a33576109fc816109f7611d7a565b611b08565b610a32576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601060019054906101000a900460ff1681565b6000610b05611d82565b6001546000540303905090565b6000610b1d82611d8b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b84576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b9084611e59565b91509150610ba68187610ba1611d7a565b611e80565b610bf257610bbb86610bb6611d7a565b611b08565b610bf1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c59576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c668686866001611ec4565b8015610c7157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3f85610d1b888887611eca565b7c020000000000000000000000000000000000000000000000000000000017611ef2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc7576000600185019050600060046000838152602001908152602001600020541415610dc5576000548114610dc4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2f8686866001611f1d565b505050505050565b610e3f611f23565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490612fc2565b60405180910390fd5b610eb5611f6d565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561114b57601060019054906101000a900460ff16610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390613022565b60405180910390fd5b600b5481610f58610afb565b610f62919061317c565b1115610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90612fe2565b60405180910390fd5b600c5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ff1919061317c565b1115611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613062565b60405180910390fd5b600d54600d54826110439190613203565b61104d919061325d565b34101561108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690613002565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110df919061317c565b9250508190555080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611135919061317c565b925050819055506111463382611fbd565b611331565b601060019054906101000a900460ff1661119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613022565b60405180910390fd5b600b54816111a6610afb565b6111b0919061317c565b11156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890612fe2565b60405180910390fd5b600c5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461123f919061317c565b1115611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790613062565b60405180910390fd5b600d548161128e9190613203565b3410156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613002565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461131f919061317c565b925050819055506113303382611fbd565b5b611339611fdb565b50565b60126020528060005260406000206000915090505481565b61135c611fe5565b611364612063565b565b61136e611fe5565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6113b583838360405180602001604052806000815250611886565b505050565b601060009054906101000a900460ff1681565b6113d5611fe5565b80600e90805190602001906113eb9291906126fe565b5050565b6000600a60009054906101000a900460ff16905090565b600061141182611d8b565b9050919050565b600d5481565b611426611fe5565b61142e611f6d565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612fc2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114e2573d6000803e3d6000fd5b506114eb611fdb565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115af611fe5565b6115b960006120c6565b565b600c5481565b6115c9611fe5565b80600c8190555050565b6115db611fe5565b6115e361218c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611617611fe5565b80600d8190555050565b60606003805461163090613347565b80601f016020809104026020016040519081016040528092919081815260200182805461165c90613347565b80156116a95780601f1061167e576101008083540402835291602001916116a9565b820191906000526020600020905b81548152906001019060200180831161168c57829003601f168201915b5050505050905090565b80600760006116c0611d7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176d611d7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b29190612ee5565b60405180910390a35050565b6117c6611fe5565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790612fc2565b60405180910390fd5b611868611fe5565b611870611f6d565b61187a8282611fbd565b611882611fdb565b5050565b611891848484610b12565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f3576118bc848484846121ef565b6118f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f805461190690613347565b80601f016020809104026020016040519081016040528092919081815260200182805461193290613347565b801561197f5780601f106119545761010080835404028352916020019161197f565b820191906000526020600020905b81548152906001019060200180831161196257829003601f168201915b505050505081565b606061199282611d1b565b6119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890612fa2565b60405180910390fd5b60001515601060009054906101000a900460ff1615151415611a7f57600e80546119fa90613347565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2690613347565b8015611a735780601f10611a4857610100808354040283529160200191611a73565b820191906000526020600020905b815481529060010190602001808311611a5657829003601f168201915b50505050509050611adb565b6000611a8961234f565b90506000815111611aa95760405180602001604052806000815250611ad7565b80611ab3846123e1565b600f604051602001611ac793929190612e4d565b6040516020818303038152906040525b9150505b919050565b600b5481565b611aee611fe5565b80600f9080519060200190611b049291906126fe565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba4611fe5565b611bac611f6d565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190612fc2565b60405180910390fd5b732682a68c56d5f81d4d79ee630fc85b6ea4e51f0f73ffffffffffffffffffffffffffffffffffffffff166108fc6064600547611c579190613203565b611c6191906131d2565b9081150290604051600060405180830381858888f19350505050158015611c8c573d6000803e3d6000fd5b50611c95611fdb565b565b611c9f611fe5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690612f42565b60405180910390fd5b611d18816120c6565b50565b600081611d26611d82565b11158015611d35575060005482105b8015611d73575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d9a611d82565b11611e2257600054811015611e215760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e1f575b6000811415611e15576004600083600190039350838152602001908152602001600020549050611dea565b8092505050611e54565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ee186868461243a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f2b6113ef565b15611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290612f62565b60405180910390fd5b565b60026009541415611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90613042565b60405180910390fd5b6002600981905550565b611fd7828260405180602001604052806000815250612443565b5050565b6001600981905550565b611fed6124e0565b73ffffffffffffffffffffffffffffffffffffffff1661200b6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614612061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205890612f82565b60405180910390fd5b565b61206b6124e8565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120af6124e0565b6040516120bc9190612e7e565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612194611f23565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121d86124e0565b6040516121e59190612e7e565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612215611d7a565b8786866040518563ffffffff1660e01b81526004016122379493929190612e99565b602060405180830381600087803b15801561225157600080fd5b505af192505050801561228257506040513d601f19601f8201168201806040525081019061227f9190612ada565b60015b6122fc573d80600081146122b2576040519150601f19603f3d011682016040523d82523d6000602084013e6122b7565b606091505b506000815114156122f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461235e90613347565b80601f016020809104026020016040519081016040528092919081815260200182805461238a90613347565b80156123d75780601f106123ac576101008083540402835291602001916123d7565b820191906000526020600020905b8154815290600101906020018083116123ba57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561242557600184039350600a81066030018453600a810490508061242057612425565b6123fa565b50828103602084039350808452505050919050565b60009392505050565b61244d8383612531565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124db57600080549050600083820390505b61248d60008683806001019450866121ef565b6124c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061247a5781600054146124d857600080fd5b50505b505050565b600033905090565b6124f06113ef565b61252f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252690612f22565b60405180910390fd5b565b6000805490506000821415612572576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61257f6000848385611ec4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125f6836125e76000866000611eca565b6125f0856126ee565b17611ef2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461269757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061265c565b5060008214156126d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126e96000848385611f1d565b505050565b60006001821460e11b9050919050565b82805461270a90613347565b90600052602060002090601f01602090048101928261272c5760008555612773565b82601f1061274557805160ff1916838001178555612773565b82800160010185558215612773579182015b82811115612772578251825591602001919060010190612757565b5b5090506127809190612784565b5090565b5b8082111561279d576000816000905550600101612785565b5090565b60006127b46127af846130c2565b61309d565b9050828152602081018484840111156127d0576127cf61346b565b5b6127db848285613305565b509392505050565b60006127f66127f1846130f3565b61309d565b9050828152602081018484840111156128125761281161346b565b5b61281d848285613305565b509392505050565b600081359050612834816136c0565b92915050565b600081359050612849816136d7565b92915050565b60008135905061285e816136ee565b92915050565b600081519050612873816136ee565b92915050565b600082601f83011261288e5761288d613466565b5b813561289e8482602086016127a1565b91505092915050565b600082601f8301126128bc576128bb613466565b5b81356128cc8482602086016127e3565b91505092915050565b6000813590506128e481613705565b92915050565b600060208284031215612900576128ff613475565b5b600061290e84828501612825565b91505092915050565b6000806040838503121561292e5761292d613475565b5b600061293c85828601612825565b925050602061294d85828601612825565b9150509250929050565b6000806000606084860312156129705761296f613475565b5b600061297e86828701612825565b935050602061298f86828701612825565b92505060406129a0868287016128d5565b9150509250925092565b600080600080608085870312156129c4576129c3613475565b5b60006129d287828801612825565b94505060206129e387828801612825565b93505060406129f4878288016128d5565b925050606085013567ffffffffffffffff811115612a1557612a14613470565b5b612a2187828801612879565b91505092959194509250565b60008060408385031215612a4457612a43613475565b5b6000612a5285828601612825565b9250506020612a638582860161283a565b9150509250929050565b60008060408385031215612a8457612a83613475565b5b6000612a9285828601612825565b9250506020612aa3858286016128d5565b9150509250929050565b600060208284031215612ac357612ac2613475565b5b6000612ad18482850161284f565b91505092915050565b600060208284031215612af057612aef613475565b5b6000612afe84828501612864565b91505092915050565b600060208284031215612b1d57612b1c613475565b5b600082013567ffffffffffffffff811115612b3b57612b3a613470565b5b612b47848285016128a7565b91505092915050565b600060208284031215612b6657612b65613475565b5b6000612b74848285016128d5565b91505092915050565b612b8681613291565b82525050565b612b95816132a3565b82525050565b6000612ba682613139565b612bb0818561314f565b9350612bc0818560208601613314565b612bc98161347a565b840191505092915050565b6000612bdf82613144565b612be98185613160565b9350612bf9818560208601613314565b612c028161347a565b840191505092915050565b6000612c1882613144565b612c228185613171565b9350612c32818560208601613314565b80840191505092915050565b60008154612c4b81613347565b612c558186613171565b94506001821660008114612c705760018114612c8157612cb4565b60ff19831686528186019350612cb4565b612c8a85613124565b60005b83811015612cac57815481890152600182019150602081019050612c8d565b838801955050505b50505092915050565b6000612cca601483613160565b9150612cd58261348b565b602082019050919050565b6000612ced602683613160565b9150612cf8826134b4565b604082019050919050565b6000612d10601083613160565b9150612d1b82613503565b602082019050919050565b6000612d33602083613160565b9150612d3e8261352c565b602082019050919050565b6000612d56602f83613160565b9150612d6182613555565b604082019050919050565b6000612d79603483613160565b9150612d84826135a4565b604082019050919050565b6000612d9c601983613160565b9150612da7826135f3565b602082019050919050565b6000612dbf601583613160565b9150612dca8261361c565b602082019050919050565b6000612de2601f83613160565b9150612ded82613645565b602082019050919050565b6000612e05601f83613160565b9150612e108261366e565b602082019050919050565b6000612e28601e83613160565b9150612e3382613697565b602082019050919050565b612e47816132fb565b82525050565b6000612e598286612c0d565b9150612e658285612c0d565b9150612e718284612c3e565b9150819050949350505050565b6000602082019050612e936000830184612b7d565b92915050565b6000608082019050612eae6000830187612b7d565b612ebb6020830186612b7d565b612ec86040830185612e3e565b8181036060830152612eda8184612b9b565b905095945050505050565b6000602082019050612efa6000830184612b8c565b92915050565b60006020820190508181036000830152612f1a8184612bd4565b905092915050565b60006020820190508181036000830152612f3b81612cbd565b9050919050565b60006020820190508181036000830152612f5b81612ce0565b9050919050565b60006020820190508181036000830152612f7b81612d03565b9050919050565b60006020820190508181036000830152612f9b81612d26565b9050919050565b60006020820190508181036000830152612fbb81612d49565b9050919050565b60006020820190508181036000830152612fdb81612d6c565b9050919050565b60006020820190508181036000830152612ffb81612d8f565b9050919050565b6000602082019050818103600083015261301b81612db2565b9050919050565b6000602082019050818103600083015261303b81612dd5565b9050919050565b6000602082019050818103600083015261305b81612df8565b9050919050565b6000602082019050818103600083015261307b81612e1b565b9050919050565b60006020820190506130976000830184612e3e565b92915050565b60006130a76130b8565b90506130b38282613379565b919050565b6000604051905090565b600067ffffffffffffffff8211156130dd576130dc613437565b5b6130e68261347a565b9050602081019050919050565b600067ffffffffffffffff82111561310e5761310d613437565b5b6131178261347a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613187826132fb565b9150613192836132fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131c7576131c66133aa565b5b828201905092915050565b60006131dd826132fb565b91506131e8836132fb565b9250826131f8576131f76133d9565b5b828204905092915050565b600061320e826132fb565b9150613219836132fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613252576132516133aa565b5b828202905092915050565b6000613268826132fb565b9150613273836132fb565b925082821015613286576132856133aa565b5b828203905092915050565b600061329c826132db565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613332578082015181840152602081019050613317565b83811115613341576000848401525b50505050565b6000600282049050600182168061335f57607f821691505b6020821081141561337357613372613408565b5b50919050565b6133828261347a565b810181811067ffffffffffffffff821117156133a1576133a0613437565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4572726f723a2046756e6374696f6e2063616e6e6f742062652063616c6c656460008201527f20627920616e6f7468657220636f6e7472616374000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20380000600082015250565b6136c981613291565b81146136d457600080fd5b50565b6136e0816132a3565b81146136eb57600080fd5b50565b6136f7816132af565b811461370257600080fd5b50565b61370e816132fb565b811461371957600080fd5b5056fea2646970667358221220b8b8b1291b81ab955b958c9de498121ace29ca4e1c6f2ec978e70762ab3e7e7964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50325438323278623446424e38744a517863614158694b316963717750326178636b66527373456e356556412f68696464656e2e6a736f6e00000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmP2T822xb4FBN8tJQxcaAXiK1icqwP2axckfRssEn5eVA/hidden.json
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d50325438323278623446424e38744a517863614158694b3169637177
Arg [4] : 50326178636b66527373456e356556412f68696464656e2e6a736f6e00000000
Deployed Bytecode Sourcemap
60842:5106:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27598:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28500:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34991:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34424:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61312:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24251:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38630:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62476:1302;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61458:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65224:65;;;;;;;;;;;;;:::i;:::-;;64719:104;;;;;;;;;;;;;:::i;:::-;;41551:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61277:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65435:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8212:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29893:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61020:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65608:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25435:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5722:103;;;;;;;;;;;;;:::i;:::-;;60986:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65048:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65154:62;;;;;;;;;;;;;:::i;:::-;;5074:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64946:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28676:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35549:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64866:74;;;;;;;;;;;;;:::i;:::-;;62252:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42342:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61173:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64174:499;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60948:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65297:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35940:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65758:183;;;;;;;;;;;;;:::i;:::-;;5980:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27598:639;27683:4;28022:10;28007:25;;:11;:25;;;;:102;;;;28099:10;28084:25;;:11;:25;;;;28007:102;:179;;;;28176:10;28161:25;;:11;:25;;;;28007:179;27987:199;;27598:639;;;:::o;28500:100::-;28554:13;28587:5;28580:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28500:100;:::o;34991:218::-;35067:7;35092:16;35100:7;35092;:16::i;:::-;35087:64;;35117:34;;;;;;;;;;;;;;35087:64;35171:15;:24;35187:7;35171:24;;;;;;;;;;;:30;;;;;;;;;;;;35164:37;;34991:218;;;:::o;34424:408::-;34513:13;34529:16;34537:7;34529;:16::i;:::-;34513:32;;34585:5;34562:28;;:19;:17;:19::i;:::-;:28;;;34558:175;;34610:44;34627:5;34634:19;:17;:19::i;:::-;34610:16;:44::i;:::-;34605:128;;34682:35;;;;;;;;;;;;;;34605:128;34558:175;34778:2;34745:15;:24;34761:7;34745:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34816:7;34812:2;34796:28;;34805:5;34796:28;;;;;;;;;;;;34502:330;34424:408;;:::o;61312:37::-;;;;;;;;;;;;;:::o;24251:323::-;24312:7;24540:15;:13;:15::i;:::-;24525:12;;24509:13;;:28;:46;24502:53;;24251:323;:::o;38630:2825::-;38772:27;38802;38821:7;38802:18;:27::i;:::-;38772:57;;38887:4;38846:45;;38862:19;38846:45;;;38842:86;;38900:28;;;;;;;;;;;;;;38842:86;38942:27;38971:23;38998:35;39025:7;38998:26;:35::i;:::-;38941:92;;;;39133:68;39158:15;39175:4;39181:19;:17;:19::i;:::-;39133:24;:68::i;:::-;39128:180;;39221:43;39238:4;39244:19;:17;:19::i;:::-;39221:16;:43::i;:::-;39216:92;;39273:35;;;;;;;;;;;;;;39216:92;39128:180;39339:1;39325:16;;:2;:16;;;39321:52;;;39350:23;;;;;;;;;;;;;;39321:52;39386:43;39408:4;39414:2;39418:7;39427:1;39386:21;:43::i;:::-;39522:15;39519:160;;;39662:1;39641:19;39634:30;39519:160;40059:18;:24;40078:4;40059:24;;;;;;;;;;;;;;;;40057:26;;;;;;;;;;;;40128:18;:22;40147:2;40128:22;;;;;;;;;;;;;;;;40126:24;;;;;;;;;;;40450:146;40487:2;40536:45;40551:4;40557:2;40561:19;40536:14;:45::i;:::-;20650:8;40508:73;40450:18;:146::i;:::-;40421:17;:26;40439:7;40421:26;;;;;;;;;;;:175;;;;40767:1;20650:8;40716:19;:47;:52;40712:627;;;40789:19;40821:1;40811:7;:11;40789:33;;40978:1;40944:17;:30;40962:11;40944:30;;;;;;;;;;;;:35;40940:384;;;41082:13;;41067:11;:28;41063:242;;41262:19;41229:17;:30;41247:11;41229:30;;;;;;;;;;;:52;;;;41063:242;40940:384;40770:569;40712:627;41386:7;41382:2;41367:27;;41376:4;41367:27;;;;;;;;;;;;41405:42;41426:4;41432:2;41436:7;41445:1;41405:20;:42::i;:::-;38761:2694;;;38630:2825;;;:::o;62476:1302::-;7817:19;:17;:19::i;:::-;62158:10:::1;62145:23;;:9;:23;;;62137:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;2345:21:::2;:19;:21::i;:::-;62665:1:::3;62635:14;:26;62650:10;62635:26;;;;;;;;;;;;;;;;:31;62631:1140;;;62691:17;;;;;;;;;;;62683:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;62796:9;;62783;62767:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;62759:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;62903:7;;62889:9;62859:15;:27;62875:10;62859:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;62858:52;;62850:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;63008:9;;62995;;62983;:21;;;;:::i;:::-;62982:35;;;;:::i;:::-;62968:9;:50;;62960:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;63091:1;63061:14;:26;63076:10;63061:26;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;63138:9;63107:15;:27;63123:10;63107:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;63162:32;63172:10;63184:9;63162;:32::i;:::-;62631:1140;;;63314:17;;;;;;;;;;;63306:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;63419:9;;63406;63390:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;63382:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;63526:7;;63512:9;63482:15;:27;63498:10;63482:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;63481:52;;63473:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;63617:9;;63605;:21;;;;:::i;:::-;63591:9;:36;;63583:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;63701:9;63670:15;:27;63686:10;63670:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;63725:32;63735:10;63747:9;63725;:32::i;:::-;62631:1140;2389:20:::2;:18;:20::i;:::-;62476:1302:::0;:::o;61458:49::-;;;;;;;;;;;;;;;;;:::o;65224:65::-;4960:13;:11;:13::i;:::-;65271:10:::1;:8;:10::i;:::-;65224:65::o:0;64719:104::-;4960:13;:11;:13::i;:::-;64798:17:::1;;;;;;;;;;;64797:18;64777:17;;:38;;;;;;;;;;;;;;;;;;64719:104::o:0;41551:193::-;41697:39;41714:4;41720:2;41724:7;41697:39;;;;;;;;;;;;:16;:39::i;:::-;41551:193;;;:::o;61277:28::-;;;;;;;;;;;;;:::o;65435:104::-;4960:13;:11;:13::i;:::-;65520:11:::1;65510:7;:21;;;;;;;;;;;;:::i;:::-;;65435:104:::0;:::o;8212:86::-;8259:4;8283:7;;;;;;;;;;;8276:14;;8212:86;:::o;29893:152::-;29965:7;30008:27;30027:7;30008:18;:27::i;:::-;29985:52;;29893:152;;;:::o;61020:38::-;;;;:::o;65608:142::-;4960:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;62158:10:::2;62145:23;;:9;:23;;;62137:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;65706:3:::3;65698:21;;:44;65720:21;65698:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;2389:20:::1;:18;:20::i;:::-;65608:142:::0;:::o;25435:233::-;25507:7;25548:1;25531:19;;:5;:19;;;25527:60;;;25559:28;;;;;;;;;;;;;;25527:60;19594:13;25605:18;:25;25624:5;25605:25;;;;;;;;;;;;;;;;:55;25598:62;;25435:233;;;:::o;5722:103::-;4960:13;:11;:13::i;:::-;5787:30:::1;5814:1;5787:18;:30::i;:::-;5722:103::o:0;60986:27::-;;;;:::o;65048:96::-;4960:13;:11;:13::i;:::-;65128:8:::1;65118:7;:18;;;;65048:96:::0;:::o;65154:62::-;4960:13;:11;:13::i;:::-;65200:8:::1;:6;:8::i;:::-;65154:62::o:0;5074:87::-;5120:7;5147:6;;;;;;;;;;;5140:13;;5074:87;:::o;64946:94::-;4960:13;:11;:13::i;:::-;65022:10:::1;65010:9;:22;;;;64946:94:::0;:::o;28676:104::-;28732:13;28765:7;28758:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28676:104;:::o;35549:234::-;35696:8;35644:18;:39;35663:19;:17;:19::i;:::-;35644:39;;;;;;;;;;;;;;;:49;35684:8;35644:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35756:8;35720:55;;35735:19;:17;:19::i;:::-;35720:55;;;35766:8;35720:55;;;;;;:::i;:::-;;;;;;;;35549:234;;:::o;64866:74::-;4960:13;:11;:13::i;:::-;64924:8:::1;;;;;;;;;;;64923:9;64912:8;;:20;;;;;;;;;;;;;;;;;;64866:74::o:0;62252:141::-;62158:10;62145:23;;:9;:23;;;62137:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;4960:13:::1;:11;:13::i;:::-;2345:21:::2;:19;:21::i;:::-;62357:28:::3;62367:8;62377:7;62357:9;:28::i;:::-;2389:20:::2;:18;:20::i;:::-;62252:141:::0;;:::o;42342:407::-;42517:31;42530:4;42536:2;42540:7;42517:12;:31::i;:::-;42581:1;42563:2;:14;;;:19;42559:183;;42602:56;42633:4;42639:2;42643:7;42652:5;42602:30;:56::i;:::-;42597:145;;42686:40;;;;;;;;;;;;;;42597:145;42559:183;42342:407;;;;:::o;61173:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64174:499::-;64272:13;64307:16;64315:7;64307;:16::i;:::-;64299:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;64403:5;64391:17;;:8;;;;;;;;;;;:17;;;64387:273;;;64428:7;64421:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64387:273;64460:28;64491:10;:8;:10::i;:::-;64460:41;;64550:1;64525:14;64519:28;:32;:133;;;;;;;;;;;;;;;;;64587:14;64603:18;64613:7;64603:9;:18::i;:::-;64623:13;64570:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64519:133;64512:140;;;64174:499;;;;:::o;60948:31::-;;;;:::o;65297:130::-;4960:13;:11;:13::i;:::-;65402:17:::1;65386:13;:33;;;;;;;;;;;;:::i;:::-;;65297:130:::0;:::o;35940:164::-;36037:4;36061:18;:25;36080:5;36061:25;;;;;;;;;;;;;;;:35;36087:8;36061:35;;;;;;;;;;;;;;;;;;;;;;;;;36054:42;;35940:164;;;;:::o;65758:183::-;4960:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;62158:10:::2;62145:23;;:9;:23;;;62137:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;65848:42:::3;65840:60;;:93;65929:3;65925:1;65901:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;65840:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;2389:20:::1;:18;:20::i;:::-;65758:183::o:0;5980:201::-;4960:13;:11;:13::i;:::-;6089:1:::1;6069:22;;:8;:22;;;;6061:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6145:28;6164:8;6145:18;:28::i;:::-;5980:201:::0;:::o;36362:282::-;36427:4;36483:7;36464:15;:13;:15::i;:::-;:26;;:66;;;;;36517:13;;36507:7;:23;36464:66;:153;;;;;36616:1;20370:8;36568:17;:26;36586:7;36568:26;;;;;;;;;;;;:44;:49;36464:153;36444:173;;36362:282;;;:::o;58670:105::-;58730:7;58757:10;58750:17;;58670:105;:::o;64021:101::-;64086:7;64113:1;64106:8;;64021:101;:::o;31048:1275::-;31115:7;31135:12;31150:7;31135:22;;31218:4;31199:15;:13;:15::i;:::-;:23;31195:1061;;31252:13;;31245:4;:20;31241:1015;;;31290:14;31307:17;:23;31325:4;31307:23;;;;;;;;;;;;31290:40;;31424:1;20370:8;31396:6;:24;:29;31392:845;;;32061:113;32078:1;32068:6;:11;32061:113;;;32121:17;:25;32139:6;;;;;;;32121:25;;;;;;;;;;;;32112:34;;32061:113;;;32207:6;32200:13;;;;;;31392:845;31267:989;31241:1015;31195:1061;32284:31;;;;;;;;;;;;;;31048:1275;;;;:::o;37525:485::-;37627:27;37656:23;37697:38;37738:15;:24;37754:7;37738:24;;;;;;;;;;;37697:65;;37915:18;37892:41;;37972:19;37966:26;37947:45;;37877:126;37525:485;;;:::o;36753:659::-;36902:11;37067:16;37060:5;37056:28;37047:37;;37227:16;37216:9;37212:32;37199:45;;37377:15;37366:9;37363:30;37355:5;37344:9;37341:20;37338:56;37328:66;;36753:659;;;;;:::o;43411:159::-;;;;;:::o;57979:311::-;58114:7;58134:16;20774:3;58160:19;:41;;58134:68;;20774:3;58228:31;58239:4;58245:2;58249:9;58228:10;:31::i;:::-;58220:40;;:62;;58213:69;;;57979:311;;;;;:::o;32871:450::-;32951:14;33119:16;33112:5;33108:28;33099:37;;33296:5;33282:11;33257:23;33253:41;33250:52;33243:5;33240:63;33230:73;;32871:450;;;;:::o;44235:158::-;;;;;:::o;8371:108::-;8442:8;:6;:8::i;:::-;8441:9;8433:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;8371:108::o;2425:293::-;1827:1;2559:7;;:19;;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;52502:112::-;52579:27;52589:2;52593:8;52579:27;;;;;;;;;;;;:9;:27::i;:::-;52502:112;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;5239:132::-;5314:12;:10;:12::i;:::-;5303:23;;:7;:5;:7::i;:::-;:23;;;5295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5239:132::o;9067:120::-;8076:16;:14;:16::i;:::-;9136:5:::1;9126:7;;:15;;;;;;;;;;;;;;;;;;9157:22;9166:12;:10;:12::i;:::-;9157:22;;;;;;:::i;:::-;;;;;;;;9067:120::o:0;6341:191::-;6415:16;6434:6;;;;;;;;;;;6415:25;;6460:8;6451:6;;:17;;;;;;;;;;;;;;;;;;6515:8;6484:40;;6505:8;6484:40;;;;;;;;;;;;6404:128;6341:191;:::o;8808:118::-;7817:19;:17;:19::i;:::-;8878:4:::1;8868:7;;:14;;;;;;;;;;;;;;;;;;8898:20;8905:12;:10;:12::i;:::-;8898:20;;;;;;:::i;:::-;;;;;;;;8808:118::o:0;44833:716::-;44996:4;45042:2;45017:45;;;45063:19;:17;:19::i;:::-;45084:4;45090:7;45099:5;45017:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45013:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45317:1;45300:6;:13;:18;45296:235;;;45346:40;;;;;;;;;;;;;;45296:235;45489:6;45483:13;45474:6;45470:2;45466:15;45459:38;45013:529;45186:54;;;45176:64;;;:6;:64;;;;45169:71;;;44833:716;;;;;;:::o;63837:108::-;63897:13;63930:7;63923:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63837:108;:::o;58877:1745::-;58942:17;59376:4;59369;59363:11;59359:22;59468:1;59462:4;59455:15;59543:4;59540:1;59536:12;59529:19;;59625:1;59620:3;59613:14;59729:3;59968:5;59950:428;59976:1;59950:428;;;60016:1;60011:3;60007:11;60000:18;;60187:2;60181:4;60177:13;60173:2;60169:22;60164:3;60156:36;60281:2;60275:4;60271:13;60263:21;;60348:4;60338:25;;60356:5;;60338:25;59950:428;;;59954:21;60417:3;60412;60408:13;60532:4;60527:3;60523:14;60516:21;;60597:6;60592:3;60585:19;58981:1634;;;58877:1745;;;:::o;57680:147::-;57817:6;57680:147;;;;;:::o;51729:689::-;51860:19;51866:2;51870:8;51860:5;:19::i;:::-;51939:1;51921:2;:14;;;:19;51917:483;;51961:11;51975:13;;51961:27;;52007:13;52029:8;52023:3;:14;52007:30;;52056:233;52087:62;52126:1;52130:2;52134:7;;;;;;52143:5;52087:30;:62::i;:::-;52082:167;;52185:40;;;;;;;;;;;;;;52082:167;52284:3;52276:5;:11;52056:233;;52371:3;52354:13;;:20;52350:34;;52376:8;;;52350:34;51942:458;;51917:483;51729:689;;;:::o;3625:98::-;3678:7;3705:10;3698:17;;3625:98;:::o;8556:108::-;8623:8;:6;:8::i;:::-;8615:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8556:108::o;46011:2966::-;46084:20;46107:13;;46084:36;;46147:1;46135:8;:13;46131:44;;;46157:18;;;;;;;;;;;;;;46131:44;46188:61;46218:1;46222:2;46226:12;46240:8;46188:21;:61::i;:::-;46732:1;19732:2;46702:1;:26;;46701:32;46689:8;:45;46663:18;:22;46682:2;46663:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;47011:139;47048:2;47102:33;47125:1;47129:2;47133:1;47102:14;:33::i;:::-;47069:30;47090:8;47069:20;:30::i;:::-;:66;47011:18;:139::i;:::-;46977:17;:31;46995:12;46977:31;;;;;;;;;;;:173;;;;47167:16;47198:11;47227:8;47212:12;:23;47198:37;;47748:16;47744:2;47740:25;47728:37;;48120:12;48080:8;48039:1;47977:25;47918:1;47857;47830:335;48491:1;48477:12;48473:20;48431:346;48532:3;48523:7;48520:16;48431:346;;48750:7;48740:8;48737:1;48710:25;48707:1;48704;48699:59;48585:1;48576:7;48572:15;48561:26;;48431:346;;;48435:77;48822:1;48810:8;:13;48806:45;;;48832:19;;;;;;;;;;;;;;48806:45;48884:3;48868:13;:19;;;;46437:2462;;48909:60;48938:1;48942:2;48946:12;48960:8;48909:20;:60::i;:::-;46073:2904;46011:2966;;:::o;33423:324::-;33493:14;33726:1;33716:8;33713:15;33687:24;33683:46;33673:56;;33423:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:118::-;13570:24;13588:5;13570:24;:::i;:::-;13565:3;13558:37;13483:118;;:::o;13607:589::-;13832:3;13854:95;13945:3;13936:6;13854:95;:::i;:::-;13847:102;;13966:95;14057:3;14048:6;13966:95;:::i;:::-;13959:102;;14078:92;14166:3;14157:6;14078:92;:::i;:::-;14071:99;;14187:3;14180:10;;13607:589;;;;;;:::o;14202:222::-;14295:4;14333:2;14322:9;14318:18;14310:26;;14346:71;14414:1;14403:9;14399:17;14390:6;14346:71;:::i;:::-;14202:222;;;;:::o;14430:640::-;14625:4;14663:3;14652:9;14648:19;14640:27;;14677:71;14745:1;14734:9;14730:17;14721:6;14677:71;:::i;:::-;14758:72;14826:2;14815:9;14811:18;14802:6;14758:72;:::i;:::-;14840;14908:2;14897:9;14893:18;14884:6;14840:72;:::i;:::-;14959:9;14953:4;14949:20;14944:2;14933:9;14929:18;14922:48;14987:76;15058:4;15049:6;14987:76;:::i;:::-;14979:84;;14430:640;;;;;;;:::o;15076:210::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15214:65;15276:1;15265:9;15261:17;15252:6;15214:65;:::i;:::-;15076:210;;;;:::o;15292:313::-;15405:4;15443:2;15432:9;15428:18;15420:26;;15492:9;15486:4;15482:20;15478:1;15467:9;15463:17;15456:47;15520:78;15593:4;15584:6;15520:78;:::i;:::-;15512:86;;15292:313;;;;:::o;15611:419::-;15777:4;15815:2;15804:9;15800:18;15792:26;;15864:9;15858:4;15854:20;15850:1;15839:9;15835:17;15828:47;15892:131;16018:4;15892:131;:::i;:::-;15884:139;;15611:419;;;:::o;16036:::-;16202:4;16240:2;16229:9;16225:18;16217:26;;16289:9;16283:4;16279:20;16275:1;16264:9;16260:17;16253:47;16317:131;16443:4;16317:131;:::i;:::-;16309:139;;16036:419;;;:::o;16461:::-;16627:4;16665:2;16654:9;16650:18;16642:26;;16714:9;16708:4;16704:20;16700:1;16689:9;16685:17;16678:47;16742:131;16868:4;16742:131;:::i;:::-;16734:139;;16461:419;;;:::o;16886:::-;17052:4;17090:2;17079:9;17075:18;17067:26;;17139:9;17133:4;17129:20;17125:1;17114:9;17110:17;17103:47;17167:131;17293:4;17167:131;:::i;:::-;17159:139;;16886:419;;;:::o;17311:::-;17477:4;17515:2;17504:9;17500:18;17492:26;;17564:9;17558:4;17554:20;17550:1;17539:9;17535:17;17528:47;17592:131;17718:4;17592:131;:::i;:::-;17584:139;;17311:419;;;:::o;17736:::-;17902:4;17940:2;17929:9;17925:18;17917:26;;17989:9;17983:4;17979:20;17975:1;17964:9;17960:17;17953:47;18017:131;18143:4;18017:131;:::i;:::-;18009:139;;17736:419;;;:::o;18161:::-;18327:4;18365:2;18354:9;18350:18;18342:26;;18414:9;18408:4;18404:20;18400:1;18389:9;18385:17;18378:47;18442:131;18568:4;18442:131;:::i;:::-;18434:139;;18161:419;;;:::o;18586:::-;18752:4;18790:2;18779:9;18775:18;18767:26;;18839:9;18833:4;18829:20;18825:1;18814:9;18810:17;18803:47;18867:131;18993:4;18867:131;:::i;:::-;18859:139;;18586:419;;;:::o;19011:::-;19177:4;19215:2;19204:9;19200:18;19192:26;;19264:9;19258:4;19254:20;19250:1;19239:9;19235:17;19228:47;19292:131;19418:4;19292:131;:::i;:::-;19284:139;;19011:419;;;:::o;19436:::-;19602:4;19640:2;19629:9;19625:18;19617:26;;19689:9;19683:4;19679:20;19675:1;19664:9;19660:17;19653:47;19717:131;19843:4;19717:131;:::i;:::-;19709:139;;19436:419;;;:::o;19861:::-;20027:4;20065:2;20054:9;20050:18;20042:26;;20114:9;20108:4;20104:20;20100:1;20089:9;20085:17;20078:47;20142:131;20268:4;20142:131;:::i;:::-;20134:139;;19861:419;;;:::o;20286:222::-;20379:4;20417:2;20406:9;20402:18;20394:26;;20430:71;20498:1;20487:9;20483:17;20474:6;20430:71;:::i;:::-;20286:222;;;;:::o;20514:129::-;20548:6;20575:20;;:::i;:::-;20565:30;;20604:33;20632:4;20624:6;20604:33;:::i;:::-;20514:129;;;:::o;20649:75::-;20682:6;20715:2;20709:9;20699:19;;20649:75;:::o;20730:307::-;20791:4;20881:18;20873:6;20870:30;20867:56;;;20903:18;;:::i;:::-;20867:56;20941:29;20963:6;20941:29;:::i;:::-;20933:37;;21025:4;21019;21015:15;21007:23;;20730:307;;;:::o;21043:308::-;21105:4;21195:18;21187:6;21184:30;21181:56;;;21217:18;;:::i;:::-;21181:56;21255:29;21277:6;21255:29;:::i;:::-;21247:37;;21339:4;21333;21329:15;21321:23;;21043:308;;;:::o;21357:141::-;21406:4;21429:3;21421:11;;21452:3;21449:1;21442:14;21486:4;21483:1;21473:18;21465:26;;21357:141;;;:::o;21504:98::-;21555:6;21589:5;21583:12;21573:22;;21504:98;;;:::o;21608:99::-;21660:6;21694:5;21688:12;21678:22;;21608:99;;;:::o;21713:168::-;21796:11;21830:6;21825:3;21818:19;21870:4;21865:3;21861:14;21846:29;;21713:168;;;;:::o;21887:169::-;21971:11;22005:6;22000:3;21993:19;22045:4;22040:3;22036:14;22021:29;;21887:169;;;;:::o;22062:148::-;22164:11;22201:3;22186:18;;22062:148;;;;:::o;22216:305::-;22256:3;22275:20;22293:1;22275:20;:::i;:::-;22270:25;;22309:20;22327:1;22309:20;:::i;:::-;22304:25;;22463:1;22395:66;22391:74;22388:1;22385:81;22382:107;;;22469:18;;:::i;:::-;22382:107;22513:1;22510;22506:9;22499:16;;22216:305;;;;:::o;22527:185::-;22567:1;22584:20;22602:1;22584:20;:::i;:::-;22579:25;;22618:20;22636:1;22618:20;:::i;:::-;22613:25;;22657:1;22647:35;;22662:18;;:::i;:::-;22647:35;22704:1;22701;22697:9;22692:14;;22527:185;;;;:::o;22718:348::-;22758:7;22781:20;22799:1;22781:20;:::i;:::-;22776:25;;22815:20;22833:1;22815:20;:::i;:::-;22810:25;;23003:1;22935:66;22931:74;22928:1;22925:81;22920:1;22913:9;22906:17;22902:105;22899:131;;;23010:18;;:::i;:::-;22899:131;23058:1;23055;23051:9;23040:20;;22718:348;;;;:::o;23072:191::-;23112:4;23132:20;23150:1;23132:20;:::i;:::-;23127:25;;23166:20;23184:1;23166:20;:::i;:::-;23161:25;;23205:1;23202;23199:8;23196:34;;;23210:18;;:::i;:::-;23196:34;23255:1;23252;23248:9;23240:17;;23072:191;;;;:::o;23269:96::-;23306:7;23335:24;23353:5;23335:24;:::i;:::-;23324:35;;23269:96;;;:::o;23371:90::-;23405:7;23448:5;23441:13;23434:21;23423:32;;23371:90;;;:::o;23467:149::-;23503:7;23543:66;23536:5;23532:78;23521:89;;23467:149;;;:::o;23622:126::-;23659:7;23699:42;23692:5;23688:54;23677:65;;23622:126;;;:::o;23754:77::-;23791:7;23820:5;23809:16;;23754:77;;;:::o;23837:154::-;23921:6;23916:3;23911;23898:30;23983:1;23974:6;23969:3;23965:16;23958:27;23837:154;;;:::o;23997:307::-;24065:1;24075:113;24089:6;24086:1;24083:13;24075:113;;;24174:1;24169:3;24165:11;24159:18;24155:1;24150:3;24146:11;24139:39;24111:2;24108:1;24104:10;24099:15;;24075:113;;;24206:6;24203:1;24200:13;24197:101;;;24286:1;24277:6;24272:3;24268:16;24261:27;24197:101;24046:258;23997:307;;;:::o;24310:320::-;24354:6;24391:1;24385:4;24381:12;24371:22;;24438:1;24432:4;24428:12;24459:18;24449:81;;24515:4;24507:6;24503:17;24493:27;;24449:81;24577:2;24569:6;24566:14;24546:18;24543:38;24540:84;;;24596:18;;:::i;:::-;24540:84;24361:269;24310:320;;;:::o;24636:281::-;24719:27;24741:4;24719:27;:::i;:::-;24711:6;24707:40;24849:6;24837:10;24834:22;24813:18;24801:10;24798:34;24795:62;24792:88;;;24860:18;;:::i;:::-;24792:88;24900:10;24896:2;24889:22;24679:238;24636:281;;:::o;24923:180::-;24971:77;24968:1;24961:88;25068:4;25065:1;25058:15;25092:4;25089:1;25082:15;25109:180;25157:77;25154:1;25147:88;25254:4;25251:1;25244:15;25278:4;25275:1;25268:15;25295:180;25343:77;25340:1;25333:88;25440:4;25437:1;25430:15;25464:4;25461:1;25454:15;25481:180;25529:77;25526:1;25519:88;25626:4;25623:1;25616:15;25650:4;25647:1;25640:15;25667:117;25776:1;25773;25766:12;25790:117;25899:1;25896;25889:12;25913:117;26022:1;26019;26012:12;26036:117;26145:1;26142;26135:12;26159:102;26200:6;26251:2;26247:7;26242:2;26235:5;26231:14;26227:28;26217:38;;26159:102;;;:::o;26267:170::-;26407:22;26403:1;26395:6;26391:14;26384:46;26267:170;:::o;26443:225::-;26583:34;26579:1;26571:6;26567:14;26560:58;26652:8;26647:2;26639:6;26635:15;26628:33;26443:225;:::o;26674:166::-;26814:18;26810:1;26802:6;26798:14;26791:42;26674:166;:::o;26846:182::-;26986:34;26982:1;26974:6;26970:14;26963:58;26846:182;:::o;27034:234::-;27174:34;27170:1;27162:6;27158:14;27151:58;27243:17;27238:2;27230:6;27226:15;27219:42;27034:234;:::o;27274:239::-;27414:34;27410:1;27402:6;27398:14;27391:58;27483:22;27478:2;27470:6;27466:15;27459:47;27274:239;:::o;27519:175::-;27659:27;27655:1;27647:6;27643:14;27636:51;27519:175;:::o;27700:171::-;27840:23;27836:1;27828:6;27824:14;27817:47;27700:171;:::o;27877:181::-;28017:33;28013:1;28005:6;28001:14;27994:57;27877:181;:::o;28064:::-;28204:33;28200:1;28192:6;28188:14;28181:57;28064:181;:::o;28251:180::-;28391:32;28387:1;28379:6;28375:14;28368:56;28251:180;:::o;28437:122::-;28510:24;28528:5;28510:24;:::i;:::-;28503:5;28500:35;28490:63;;28549:1;28546;28539:12;28490:63;28437:122;:::o;28565:116::-;28635:21;28650:5;28635:21;:::i;:::-;28628:5;28625:32;28615:60;;28671:1;28668;28661:12;28615:60;28565:116;:::o;28687:120::-;28759:23;28776:5;28759:23;:::i;:::-;28752:5;28749:34;28739:62;;28797:1;28794;28787:12;28739:62;28687:120;:::o;28813:122::-;28886:24;28904:5;28886:24;:::i;:::-;28879:5;28876:35;28866:63;;28925:1;28922;28915:12;28866:63;28813:122;:::o
Swarm Source
ipfs://b8b8b1291b81ab955b958c9de498121ace29ca4e1c6f2ec978e70762ab3e7e79
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.