ERC-721
Overview
Max Total Supply
7,777 TA
Holders
1,262
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TrippinAliens
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-07 */ // File: @openzeppelin/contracts/utils/Context.sol // Trippin Aliens Collection // SPDX-License-Identifier: MIT // 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 v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/TrippinAliens.sol pragma solidity ^0.8.11; contract TrippinAliens is ERC721A, Ownable { string _baseTokenURI; bool public isActive = false; uint256 public mintPrice = 0.005 ether; uint256 public constant MAX_SUPPLY = 7777; uint256 public maxAllowedTokensPerPurchase = 10; constructor(string memory baseURI) ERC721A("Trippin Aliens", "TA") { setBaseURI(baseURI); } modifier saleIsOpen { require(totalSupply() <= MAX_SUPPLY, "Sale has ended."); _; } modifier onlyAuthorized() { require(owner() == msg.sender); _; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } function toggleSale() public onlyAuthorized { isActive = !isActive; } function setPrice(uint256 _price) public onlyAuthorized { mintPrice = _price; } function setBaseURI(string memory baseURI) public onlyAuthorized { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function freeMint(uint256 _count) public payable saleIsOpen { uint256 mintIndex = totalSupply(); uint256 discountPrice = _count; if (msg.sender != owner()) { require(isActive, "Sale is not active currently."); } require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded."); require( _count <= maxAllowedTokensPerPurchase, "Exceeds maximum allowed tokens" ); if(_count > 1){ discountPrice = _count - 1; } if(balanceOf(msg.sender) >= 1 || _count > 1) { require(msg.value >= mintPrice * discountPrice, "Insufficient ETH amount sent."); } _safeMint(msg.sender, _count); } function withdraw() external onlyAuthorized { uint balance = address(this).balance; payable(owner()).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxAllowedTokensPerPurchase","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff0219169083151502179055506611c37937e08000600b55600a600c553480156200003c57600080fd5b506040516200332438038062003324833981810160405281019062000062919062000502565b6040518060400160405280600e81526020017f5472697070696e20416c69656e730000000000000000000000000000000000008152506040518060400160405280600281526020017f54410000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e6929190620002b5565b508060039080519060200190620000ff929190620002b5565b50620001106200015060201b60201c565b6000819055505050620001386200012c6200015960201b60201c565b6200016160201b60201c565b62000149816200022760201b60201c565b50620005b8565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166200024e6200028b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200026f57600080fd5b806009908051906020019062000287929190620002b5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002c39062000582565b90600052602060002090601f016020900481019282620002e7576000855562000333565b82601f106200030257805160ff191683800117855562000333565b8280016001018555821562000333579182015b828111156200033257825182559160200191906001019062000315565b5b50905062000342919062000346565b5090565b5b808211156200036157600081600090555060010162000347565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003ce8262000383565b810181811067ffffffffffffffff82111715620003f057620003ef62000394565b5b80604052505050565b60006200040562000365565b9050620004138282620003c3565b919050565b600067ffffffffffffffff82111562000436576200043562000394565b5b620004418262000383565b9050602081019050919050565b60005b838110156200046e57808201518184015260208101905062000451565b838111156200047e576000848401525b50505050565b60006200049b620004958462000418565b620003f9565b905082815260208101848484011115620004ba57620004b96200037e565b5b620004c78482856200044e565b509392505050565b600082601f830112620004e757620004e662000379565b5b8151620004f984826020860162000484565b91505092915050565b6000602082840312156200051b576200051a6200036f565b5b600082015167ffffffffffffffff8111156200053c576200053b62000374565b5b6200054a84828501620004cf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059b57607f821691505b60208210811415620005b257620005b162000553565b5b50919050565b612d5c80620005c86000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610527578063e0a7051514610564578063e985e9c51461058f578063f2fde38b146105cc57610181565b806395d89b41146104aa578063a22cb465146104d5578063b88d4fde146104fe57610181565b806370a08231146103cf578063715018a61461040c5780637c928fe9146104235780637d8966e41461043f5780638da5cb5b1461045657806391b7f5ed1461048157610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e1461031557806355f804b31461033e5780636352211e146103675780636817c76c146103a457610181565b806323b872dd146102aa57806332cb6b0c146102d35780633ccfd60b146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806322f3e2d41461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612014565b6105f5565b6040516101ba919061205c565b60405180910390f35b3480156101cf57600080fd5b506101d8610687565b6040516101e59190612110565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612168565b610719565b60405161022291906121d6565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061221d565b610795565b005b34801561026057600080fd5b5061026961093c565b604051610276919061226c565b60405180910390f35b34801561028b57600080fd5b50610294610953565b6040516102a1919061205c565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612287565b610966565b005b3480156102df57600080fd5b506102e8610976565b6040516102f5919061226c565b60405180910390f35b34801561030a57600080fd5b5061031361097c565b005b34801561032157600080fd5b5061033c60048036038101906103379190612287565b610a11565b005b34801561034a57600080fd5b506103656004803603810190610360919061240f565b610a31565b005b34801561037357600080fd5b5061038e60048036038101906103899190612168565b610a8a565b60405161039b91906121d6565b60405180910390f35b3480156103b057600080fd5b506103b9610a9c565b6040516103c6919061226c565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190612458565b610aa2565b604051610403919061226c565b60405180910390f35b34801561041857600080fd5b50610421610b5b565b005b61043d60048036038101906104389190612168565b610be3565b005b34801561044b57600080fd5b50610454610df5565b005b34801561046257600080fd5b5061046b610e60565b60405161047891906121d6565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612168565b610e8a565b005b3480156104b657600080fd5b506104bf610ed3565b6040516104cc9190612110565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906124b1565b610f65565b005b34801561050a57600080fd5b5061052560048036038101906105209190612592565b6110dd565b005b34801561053357600080fd5b5061054e60048036038101906105499190612168565b611150565b60405161055b9190612110565b60405180910390f35b34801561057057600080fd5b506105796111ee565b604051610586919061226c565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190612615565b6111f4565b6040516105c3919061205c565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190612458565b611288565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461069690612684565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290612684565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b5050505050905090565b600061072482611380565b61075a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a0826113df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610808576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108276114ad565b73ffffffffffffffffffffffffffffffffffffffff161461088a576108538161084e6114ad565b6111f4565b610889576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109466114b5565b6001546000540303905090565b600a60009054906101000a900460ff1681565b6109718383836114be565b505050565b611e6181565b3373ffffffffffffffffffffffffffffffffffffffff1661099b610e60565b73ffffffffffffffffffffffffffffffffffffffff16146109bb57600080fd5b60004790506109c8610e60565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a0d573d6000803e3d6000fd5b5050565b610a2c838383604051806020016040528060008152506110dd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610a50610e60565b73ffffffffffffffffffffffffffffffffffffffff1614610a7057600080fd5b8060099080519060200190610a86929190611f05565b5050565b6000610a95826113df565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b63611868565b73ffffffffffffffffffffffffffffffffffffffff16610b81610e60565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90612702565b60405180910390fd5b610be16000611870565b565b611e61610bee61093c565b1115610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c269061276e565b60405180910390fd5b6000610c3961093c565b90506000829050610c48610e60565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cca57600a60009054906101000a900460ff16610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906127da565b60405180910390fd5b5b611e618383610cd99190612829565b1115610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d11906128cb565b60405180910390fd5b600c54831115610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690612937565b60405180910390fd5b6001831115610d7857600183610d759190612957565b90505b6001610d8333610aa2565b101580610d905750600183115b15610de65780600b54610da3919061298b565b341015610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90612a31565b60405180910390fd5b5b610df03384611936565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610e14610e60565b73ffffffffffffffffffffffffffffffffffffffff1614610e3457600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16610ea9610e60565b73ffffffffffffffffffffffffffffffffffffffff1614610ec957600080fd5b80600b8190555050565b606060038054610ee290612684565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e90612684565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b5050505050905090565b610f6d6114ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fdf6114ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108c6114ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110d1919061205c565b60405180910390a35050565b6110e88484846114be565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461114a5761111384848484611954565b611149576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061115b82611380565b61119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612ac3565b60405180910390fd5b60006111a583611aa5565b905060008151116111c557604051806020016040528060008152506111e6565b806040516020016111d69190612b6b565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611290611868565b73ffffffffffffffffffffffffffffffffffffffff166112ae610e60565b73ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90612702565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90612bff565b60405180910390fd5b61137d81611870565b50565b60008161138b6114b5565b1115801561139a575060005482105b80156113d8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806113ee6114b5565b11611476576000548110156114755760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611473575b600081141561146957600460008360019003935083815260200190815260200160002054905061143e565b80925050506114a8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b60006114c9826113df565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611530576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166115516114ad565b73ffffffffffffffffffffffffffffffffffffffff161480611580575061157f8561157a6114ad565b6111f4565b5b806115c5575061158e6114ad565b73ffffffffffffffffffffffffffffffffffffffff166115ad84610719565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806115fe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611665576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116728585856001611b44565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61176f86611b4a565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156117f95760006001840190506000600460008381526020019081526020016000205414156117f75760005481146117f6578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118618585856001611b54565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611950828260405180602001604052806000815250611b5a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261197a6114ad565b8786866040518563ffffffff1660e01b815260040161199c9493929190612c74565b6020604051808303816000875af19250505080156119d857506040513d601f19601f820116820180604052508101906119d59190612cd5565b60015b611a52573d8060008114611a08576040519150601f19603f3d011682016040523d82523d6000602084013e611a0d565b606091505b50600081511415611a4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060611ab082611380565b611ae6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611af0611e0f565b9050600081511415611b115760405180602001604052806000815250611b3c565b80611b1b84611ea1565b604051602001611b2c929190612d02565b6040516020818303038152906040525b915050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bc7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611c02576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0f6000858386611b44565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611c7460018514611efb565b901b60a042901b611c8486611b4a565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611d88575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d386000878480600101955087611954565b611d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611cc9578260005414611d8357600080fd5b611df3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611d89575b816000819055505050611e096000858386611b54565b50505050565b606060098054611e1e90612684565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4a90612684565b8015611e975780601f10611e6c57610100808354040283529160200191611e97565b820191906000526020600020905b815481529060010190602001808311611e7a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ee757600183039250600a81066030018353600a81049050611ec7565b508181036020830392508083525050919050565b6000819050919050565b828054611f1190612684565b90600052602060002090601f016020900481019282611f335760008555611f7a565b82601f10611f4c57805160ff1916838001178555611f7a565b82800160010185558215611f7a579182015b82811115611f79578251825591602001919060010190611f5e565b5b509050611f879190611f8b565b5090565b5b80821115611fa4576000816000905550600101611f8c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ff181611fbc565b8114611ffc57600080fd5b50565b60008135905061200e81611fe8565b92915050565b60006020828403121561202a57612029611fb2565b5b600061203884828501611fff565b91505092915050565b60008115159050919050565b61205681612041565b82525050565b6000602082019050612071600083018461204d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b1578082015181840152602081019050612096565b838111156120c0576000848401525b50505050565b6000601f19601f8301169050919050565b60006120e282612077565b6120ec8185612082565b93506120fc818560208601612093565b612105816120c6565b840191505092915050565b6000602082019050818103600083015261212a81846120d7565b905092915050565b6000819050919050565b61214581612132565b811461215057600080fd5b50565b6000813590506121628161213c565b92915050565b60006020828403121561217e5761217d611fb2565b5b600061218c84828501612153565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121c082612195565b9050919050565b6121d0816121b5565b82525050565b60006020820190506121eb60008301846121c7565b92915050565b6121fa816121b5565b811461220557600080fd5b50565b600081359050612217816121f1565b92915050565b6000806040838503121561223457612233611fb2565b5b600061224285828601612208565b925050602061225385828601612153565b9150509250929050565b61226681612132565b82525050565b6000602082019050612281600083018461225d565b92915050565b6000806000606084860312156122a05761229f611fb2565b5b60006122ae86828701612208565b93505060206122bf86828701612208565b92505060406122d086828701612153565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61231c826120c6565b810181811067ffffffffffffffff8211171561233b5761233a6122e4565b5b80604052505050565b600061234e611fa8565b905061235a8282612313565b919050565b600067ffffffffffffffff82111561237a576123796122e4565b5b612383826120c6565b9050602081019050919050565b82818337600083830152505050565b60006123b26123ad8461235f565b612344565b9050828152602081018484840111156123ce576123cd6122df565b5b6123d9848285612390565b509392505050565b600082601f8301126123f6576123f56122da565b5b813561240684826020860161239f565b91505092915050565b60006020828403121561242557612424611fb2565b5b600082013567ffffffffffffffff81111561244357612442611fb7565b5b61244f848285016123e1565b91505092915050565b60006020828403121561246e5761246d611fb2565b5b600061247c84828501612208565b91505092915050565b61248e81612041565b811461249957600080fd5b50565b6000813590506124ab81612485565b92915050565b600080604083850312156124c8576124c7611fb2565b5b60006124d685828601612208565b92505060206124e78582860161249c565b9150509250929050565b600067ffffffffffffffff82111561250c5761250b6122e4565b5b612515826120c6565b9050602081019050919050565b6000612535612530846124f1565b612344565b905082815260208101848484011115612551576125506122df565b5b61255c848285612390565b509392505050565b600082601f830112612579576125786122da565b5b8135612589848260208601612522565b91505092915050565b600080600080608085870312156125ac576125ab611fb2565b5b60006125ba87828801612208565b94505060206125cb87828801612208565b93505060406125dc87828801612153565b925050606085013567ffffffffffffffff8111156125fd576125fc611fb7565b5b61260987828801612564565b91505092959194509250565b6000806040838503121561262c5761262b611fb2565b5b600061263a85828601612208565b925050602061264b85828601612208565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061269c57607f821691505b602082108114156126b0576126af612655565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126ec602083612082565b91506126f7826126b6565b602082019050919050565b6000602082019050818103600083015261271b816126df565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612758600f83612082565b915061276382612722565b602082019050919050565b600060208201905081810360008301526127878161274b565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006127c4601d83612082565b91506127cf8261278e565b602082019050919050565b600060208201905081810360008301526127f3816127b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061283482612132565b915061283f83612132565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612874576128736127fa565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006128b5601683612082565b91506128c08261287f565b602082019050919050565b600060208201905081810360008301526128e4816128a8565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612921601e83612082565b915061292c826128eb565b602082019050919050565b6000602082019050818103600083015261295081612914565b9050919050565b600061296282612132565b915061296d83612132565b9250828210156129805761297f6127fa565b5b828203905092915050565b600061299682612132565b91506129a183612132565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129da576129d96127fa565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612a1b601d83612082565b9150612a26826129e5565b602082019050919050565b60006020820190508181036000830152612a4a81612a0e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612aad602f83612082565b9150612ab882612a51565b604082019050919050565b60006020820190508181036000830152612adc81612aa0565b9050919050565b600081905092915050565b6000612af982612077565b612b038185612ae3565b9350612b13818560208601612093565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612b55600583612ae3565b9150612b6082612b1f565b600582019050919050565b6000612b778284612aee565b9150612b8282612b48565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612be9602683612082565b9150612bf482612b8d565b604082019050919050565b60006020820190508181036000830152612c1881612bdc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612c4682612c1f565b612c508185612c2a565b9350612c60818560208601612093565b612c69816120c6565b840191505092915050565b6000608082019050612c8960008301876121c7565b612c9660208301866121c7565b612ca3604083018561225d565b8181036060830152612cb58184612c3b565b905095945050505050565b600081519050612ccf81611fe8565b92915050565b600060208284031215612ceb57612cea611fb2565b5b6000612cf984828501612cc0565b91505092915050565b6000612d0e8285612aee565b9150612d1a8284612aee565b9150819050939250505056fea264697066735822122028dfcbf52ca8a2c60d68b01fb8c0d507272b0edcf329a35d31a260f1385e943d64736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f7472697070696e616c69656e2e6d7970696e6174612e636c6f75642f697066732f516d6559457432433354317554626f7851317364656472454a76445577547831356f56594a615638517753416f6b2f0000000000000000
Deployed Bytecode
0x6080604052600436106101815760003560e01c806370a08231116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610527578063e0a7051514610564578063e985e9c51461058f578063f2fde38b146105cc57610181565b806395d89b41146104aa578063a22cb465146104d5578063b88d4fde146104fe57610181565b806370a08231146103cf578063715018a61461040c5780637c928fe9146104235780637d8966e41461043f5780638da5cb5b1461045657806391b7f5ed1461048157610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e1461031557806355f804b31461033e5780636352211e146103675780636817c76c146103a457610181565b806323b872dd146102aa57806332cb6b0c146102d35780633ccfd60b146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806322f3e2d41461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612014565b6105f5565b6040516101ba919061205c565b60405180910390f35b3480156101cf57600080fd5b506101d8610687565b6040516101e59190612110565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612168565b610719565b60405161022291906121d6565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061221d565b610795565b005b34801561026057600080fd5b5061026961093c565b604051610276919061226c565b60405180910390f35b34801561028b57600080fd5b50610294610953565b6040516102a1919061205c565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612287565b610966565b005b3480156102df57600080fd5b506102e8610976565b6040516102f5919061226c565b60405180910390f35b34801561030a57600080fd5b5061031361097c565b005b34801561032157600080fd5b5061033c60048036038101906103379190612287565b610a11565b005b34801561034a57600080fd5b506103656004803603810190610360919061240f565b610a31565b005b34801561037357600080fd5b5061038e60048036038101906103899190612168565b610a8a565b60405161039b91906121d6565b60405180910390f35b3480156103b057600080fd5b506103b9610a9c565b6040516103c6919061226c565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190612458565b610aa2565b604051610403919061226c565b60405180910390f35b34801561041857600080fd5b50610421610b5b565b005b61043d60048036038101906104389190612168565b610be3565b005b34801561044b57600080fd5b50610454610df5565b005b34801561046257600080fd5b5061046b610e60565b60405161047891906121d6565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612168565b610e8a565b005b3480156104b657600080fd5b506104bf610ed3565b6040516104cc9190612110565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906124b1565b610f65565b005b34801561050a57600080fd5b5061052560048036038101906105209190612592565b6110dd565b005b34801561053357600080fd5b5061054e60048036038101906105499190612168565b611150565b60405161055b9190612110565b60405180910390f35b34801561057057600080fd5b506105796111ee565b604051610586919061226c565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190612615565b6111f4565b6040516105c3919061205c565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190612458565b611288565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461069690612684565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290612684565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b5050505050905090565b600061072482611380565b61075a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a0826113df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610808576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108276114ad565b73ffffffffffffffffffffffffffffffffffffffff161461088a576108538161084e6114ad565b6111f4565b610889576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109466114b5565b6001546000540303905090565b600a60009054906101000a900460ff1681565b6109718383836114be565b505050565b611e6181565b3373ffffffffffffffffffffffffffffffffffffffff1661099b610e60565b73ffffffffffffffffffffffffffffffffffffffff16146109bb57600080fd5b60004790506109c8610e60565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a0d573d6000803e3d6000fd5b5050565b610a2c838383604051806020016040528060008152506110dd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610a50610e60565b73ffffffffffffffffffffffffffffffffffffffff1614610a7057600080fd5b8060099080519060200190610a86929190611f05565b5050565b6000610a95826113df565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b63611868565b73ffffffffffffffffffffffffffffffffffffffff16610b81610e60565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90612702565b60405180910390fd5b610be16000611870565b565b611e61610bee61093c565b1115610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c269061276e565b60405180910390fd5b6000610c3961093c565b90506000829050610c48610e60565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cca57600a60009054906101000a900460ff16610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906127da565b60405180910390fd5b5b611e618383610cd99190612829565b1115610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d11906128cb565b60405180910390fd5b600c54831115610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690612937565b60405180910390fd5b6001831115610d7857600183610d759190612957565b90505b6001610d8333610aa2565b101580610d905750600183115b15610de65780600b54610da3919061298b565b341015610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90612a31565b60405180910390fd5b5b610df03384611936565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610e14610e60565b73ffffffffffffffffffffffffffffffffffffffff1614610e3457600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16610ea9610e60565b73ffffffffffffffffffffffffffffffffffffffff1614610ec957600080fd5b80600b8190555050565b606060038054610ee290612684565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e90612684565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b5050505050905090565b610f6d6114ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fdf6114ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108c6114ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110d1919061205c565b60405180910390a35050565b6110e88484846114be565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461114a5761111384848484611954565b611149576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061115b82611380565b61119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612ac3565b60405180910390fd5b60006111a583611aa5565b905060008151116111c557604051806020016040528060008152506111e6565b806040516020016111d69190612b6b565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611290611868565b73ffffffffffffffffffffffffffffffffffffffff166112ae610e60565b73ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90612702565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90612bff565b60405180910390fd5b61137d81611870565b50565b60008161138b6114b5565b1115801561139a575060005482105b80156113d8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806113ee6114b5565b11611476576000548110156114755760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611473575b600081141561146957600460008360019003935083815260200190815260200160002054905061143e565b80925050506114a8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b60006114c9826113df565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611530576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166115516114ad565b73ffffffffffffffffffffffffffffffffffffffff161480611580575061157f8561157a6114ad565b6111f4565b5b806115c5575061158e6114ad565b73ffffffffffffffffffffffffffffffffffffffff166115ad84610719565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806115fe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611665576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116728585856001611b44565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61176f86611b4a565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156117f95760006001840190506000600460008381526020019081526020016000205414156117f75760005481146117f6578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118618585856001611b54565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611950828260405180602001604052806000815250611b5a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261197a6114ad565b8786866040518563ffffffff1660e01b815260040161199c9493929190612c74565b6020604051808303816000875af19250505080156119d857506040513d601f19601f820116820180604052508101906119d59190612cd5565b60015b611a52573d8060008114611a08576040519150601f19603f3d011682016040523d82523d6000602084013e611a0d565b606091505b50600081511415611a4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060611ab082611380565b611ae6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611af0611e0f565b9050600081511415611b115760405180602001604052806000815250611b3c565b80611b1b84611ea1565b604051602001611b2c929190612d02565b6040516020818303038152906040525b915050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bc7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611c02576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0f6000858386611b44565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611c7460018514611efb565b901b60a042901b611c8486611b4a565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611d88575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d386000878480600101955087611954565b611d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611cc9578260005414611d8357600080fd5b611df3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611d89575b816000819055505050611e096000858386611b54565b50505050565b606060098054611e1e90612684565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4a90612684565b8015611e975780601f10611e6c57610100808354040283529160200191611e97565b820191906000526020600020905b815481529060010190602001808311611e7a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ee757600183039250600a81066030018353600a81049050611ec7565b508181036020830392508083525050919050565b6000819050919050565b828054611f1190612684565b90600052602060002090601f016020900481019282611f335760008555611f7a565b82601f10611f4c57805160ff1916838001178555611f7a565b82800160010185558215611f7a579182015b82811115611f79578251825591602001919060010190611f5e565b5b509050611f879190611f8b565b5090565b5b80821115611fa4576000816000905550600101611f8c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ff181611fbc565b8114611ffc57600080fd5b50565b60008135905061200e81611fe8565b92915050565b60006020828403121561202a57612029611fb2565b5b600061203884828501611fff565b91505092915050565b60008115159050919050565b61205681612041565b82525050565b6000602082019050612071600083018461204d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b1578082015181840152602081019050612096565b838111156120c0576000848401525b50505050565b6000601f19601f8301169050919050565b60006120e282612077565b6120ec8185612082565b93506120fc818560208601612093565b612105816120c6565b840191505092915050565b6000602082019050818103600083015261212a81846120d7565b905092915050565b6000819050919050565b61214581612132565b811461215057600080fd5b50565b6000813590506121628161213c565b92915050565b60006020828403121561217e5761217d611fb2565b5b600061218c84828501612153565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121c082612195565b9050919050565b6121d0816121b5565b82525050565b60006020820190506121eb60008301846121c7565b92915050565b6121fa816121b5565b811461220557600080fd5b50565b600081359050612217816121f1565b92915050565b6000806040838503121561223457612233611fb2565b5b600061224285828601612208565b925050602061225385828601612153565b9150509250929050565b61226681612132565b82525050565b6000602082019050612281600083018461225d565b92915050565b6000806000606084860312156122a05761229f611fb2565b5b60006122ae86828701612208565b93505060206122bf86828701612208565b92505060406122d086828701612153565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61231c826120c6565b810181811067ffffffffffffffff8211171561233b5761233a6122e4565b5b80604052505050565b600061234e611fa8565b905061235a8282612313565b919050565b600067ffffffffffffffff82111561237a576123796122e4565b5b612383826120c6565b9050602081019050919050565b82818337600083830152505050565b60006123b26123ad8461235f565b612344565b9050828152602081018484840111156123ce576123cd6122df565b5b6123d9848285612390565b509392505050565b600082601f8301126123f6576123f56122da565b5b813561240684826020860161239f565b91505092915050565b60006020828403121561242557612424611fb2565b5b600082013567ffffffffffffffff81111561244357612442611fb7565b5b61244f848285016123e1565b91505092915050565b60006020828403121561246e5761246d611fb2565b5b600061247c84828501612208565b91505092915050565b61248e81612041565b811461249957600080fd5b50565b6000813590506124ab81612485565b92915050565b600080604083850312156124c8576124c7611fb2565b5b60006124d685828601612208565b92505060206124e78582860161249c565b9150509250929050565b600067ffffffffffffffff82111561250c5761250b6122e4565b5b612515826120c6565b9050602081019050919050565b6000612535612530846124f1565b612344565b905082815260208101848484011115612551576125506122df565b5b61255c848285612390565b509392505050565b600082601f830112612579576125786122da565b5b8135612589848260208601612522565b91505092915050565b600080600080608085870312156125ac576125ab611fb2565b5b60006125ba87828801612208565b94505060206125cb87828801612208565b93505060406125dc87828801612153565b925050606085013567ffffffffffffffff8111156125fd576125fc611fb7565b5b61260987828801612564565b91505092959194509250565b6000806040838503121561262c5761262b611fb2565b5b600061263a85828601612208565b925050602061264b85828601612208565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061269c57607f821691505b602082108114156126b0576126af612655565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126ec602083612082565b91506126f7826126b6565b602082019050919050565b6000602082019050818103600083015261271b816126df565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612758600f83612082565b915061276382612722565b602082019050919050565b600060208201905081810360008301526127878161274b565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006127c4601d83612082565b91506127cf8261278e565b602082019050919050565b600060208201905081810360008301526127f3816127b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061283482612132565b915061283f83612132565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612874576128736127fa565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006128b5601683612082565b91506128c08261287f565b602082019050919050565b600060208201905081810360008301526128e4816128a8565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612921601e83612082565b915061292c826128eb565b602082019050919050565b6000602082019050818103600083015261295081612914565b9050919050565b600061296282612132565b915061296d83612132565b9250828210156129805761297f6127fa565b5b828203905092915050565b600061299682612132565b91506129a183612132565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129da576129d96127fa565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612a1b601d83612082565b9150612a26826129e5565b602082019050919050565b60006020820190508181036000830152612a4a81612a0e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612aad602f83612082565b9150612ab882612a51565b604082019050919050565b60006020820190508181036000830152612adc81612aa0565b9050919050565b600081905092915050565b6000612af982612077565b612b038185612ae3565b9350612b13818560208601612093565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612b55600583612ae3565b9150612b6082612b1f565b600582019050919050565b6000612b778284612aee565b9150612b8282612b48565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612be9602683612082565b9150612bf482612b8d565b604082019050919050565b60006020820190508181036000830152612c1881612bdc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612c4682612c1f565b612c508185612c2a565b9350612c60818560208601612093565b612c69816120c6565b840191505092915050565b6000608082019050612c8960008301876121c7565b612c9660208301866121c7565b612ca3604083018561225d565b8181036060830152612cb58184612c3b565b905095945050505050565b600081519050612ccf81611fe8565b92915050565b600060208284031215612ceb57612cea611fb2565b5b6000612cf984828501612cc0565b91505092915050565b6000612d0e8285612aee565b9150612d1a8284612aee565b9150819050939250505056fea264697066735822122028dfcbf52ca8a2c60d68b01fb8c0d507272b0edcf329a35d31a260f1385e943d64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f7472697070696e616c69656e2e6d7970696e6174612e636c6f75642f697066732f516d6559457432433354317554626f7851317364656472454a76445577547831356f56594a615638517753416f6b2f0000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://trippinalien.mypinata.cloud/ipfs/QmeYEt2C3T1uTboxQ1sdedrEJvDUwTx15oVYJaV8QwSAok/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [2] : 68747470733a2f2f7472697070696e616c69656e2e6d7970696e6174612e636c
Arg [3] : 6f75642f697066732f516d6559457432433354317554626f7851317364656472
Arg [4] : 454a76445577547831356f56594a615638517753416f6b2f0000000000000000
Deployed Bytecode Sourcemap
41908:2260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16559:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21572:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23640:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23100:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15613:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41985:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24526:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42061:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44031:134;;;;;;;;;;;;;:::i;:::-;;24767:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43117:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21361:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42018:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17238:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2669:103;;;;;;;;;;;;;:::i;:::-;;43338:687;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42941:77;;;;;;;;;;;;;:::i;:::-;;2018:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43024;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21741:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23916:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25023:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42459:476;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42107:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24295:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2927:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16559:615;16644:4;16959:10;16944:25;;:11;:25;;;;:102;;;;17036:10;17021:25;;:11;:25;;;;16944:102;:179;;;;17113:10;17098:25;;:11;:25;;;;16944:179;16924:199;;16559:615;;;:::o;21572:100::-;21626:13;21659:5;21652:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21572:100;:::o;23640:204::-;23708:7;23733:16;23741:7;23733;:16::i;:::-;23728:64;;23758:34;;;;;;;;;;;;;;23728:64;23812:15;:24;23828:7;23812:24;;;;;;;;;;;;;;;;;;;;;23805:31;;23640:204;;;:::o;23100:474::-;23173:13;23205:27;23224:7;23205:18;:27::i;:::-;23173:61;;23255:5;23249:11;;:2;:11;;;23245:48;;;23269:24;;;;;;;;;;;;;;23245:48;23333:5;23310:28;;:19;:17;:19::i;:::-;:28;;;23306:175;;23358:44;23375:5;23382:19;:17;:19::i;:::-;23358:16;:44::i;:::-;23353:128;;23430:35;;;;;;;;;;;;;;23353:128;23306:175;23520:2;23493:15;:24;23509:7;23493:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23558:7;23554:2;23538:28;;23547:5;23538:28;;;;;;;;;;;;23162:412;23100:474;;:::o;15613:315::-;15666:7;15894:15;:13;:15::i;:::-;15879:12;;15863:13;;:28;:46;15856:53;;15613:315;:::o;41985:28::-;;;;;;;;;;;;;:::o;24526:170::-;24660:28;24670:4;24676:2;24680:7;24660:9;:28::i;:::-;24526:170;;;:::o;42061:41::-;42098:4;42061:41;:::o;44031:134::-;42425:10;42414:21;;:7;:5;:7::i;:::-;:21;;;42406:30;;;;;;44082:12:::1;44097:21;44082:36;;44133:7;:5;:7::i;:::-;44125:25;;:34;44151:7;44125:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44075:90;44031:134::o:0;24767:185::-;24905:39;24922:4;24928:2;24932:7;24905:39;;;;;;;;;;;;:16;:39::i;:::-;24767:185;;;:::o;43117:101::-;42425:10;42414:21;;:7;:5;:7::i;:::-;:21;;;42406:30;;;;;;43205:7:::1;43189:13;:23;;;;;;;;;;;;:::i;:::-;;43117:101:::0;:::o;21361:144::-;21425:7;21468:27;21487:7;21468:18;:27::i;:::-;21445:52;;21361:144;;;:::o;42018:38::-;;;;:::o;17238:224::-;17302:7;17343:1;17326:19;;:5;:19;;;17322:60;;;17354:28;;;;;;;;;;;;;;17322:60;12577:13;17400:18;:25;17419:5;17400:25;;;;;;;;;;;;;;;;:54;17393:61;;17238:224;;;:::o;2669:103::-;2249:12;:10;:12::i;:::-;2238:23;;:7;:5;:7::i;:::-;:23;;;2230:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2734:30:::1;2761:1;2734:18;:30::i;:::-;2669:103::o:0;43338:687::-;42098:4;42306:13;:11;:13::i;:::-;:27;;42298:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;43405:17:::1;43425:13;:11;:13::i;:::-;43405:33;;43445:21;43469:6;43445:30;;43502:7;:5;:7::i;:::-;43488:21;;:10;:21;;;43484:94;;43528:8;;;;;;;;;;;43520:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;43484:94;42098:4;43606:6;43594:9;:18;;;;:::i;:::-;:32;;43586:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43686:27;;43676:6;:37;;43660:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;43782:1;43773:6;:10;43770:57;;;43818:1;43809:6;:10;;;;:::i;:::-;43793:26;;43770:57;43863:1;43838:21;43848:10;43838:9;:21::i;:::-;:26;;:40;;;;43877:1;43868:6;:10;43838:40;43835:142;;;43922:13;43910:9;;:25;;;;:::i;:::-;43897:9;:38;;43889:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;43835:142;43988:29;43998:10;44010:6;43988:9;:29::i;:::-;43398:627;;43338:687:::0;:::o;42941:77::-;42425:10;42414:21;;:7;:5;:7::i;:::-;:21;;;42406:30;;;;;;43004:8:::1;;;;;;;;;;;43003:9;42992:8;;:20;;;;;;;;;;;;;;;;;;42941:77::o:0;2018:87::-;2064:7;2091:6;;;;;;;;;;;2084:13;;2018:87;:::o;43024:::-;42425:10;42414:21;;:7;:5;:7::i;:::-;:21;;;42406:30;;;;;;43099:6:::1;43087:9;:18;;;;43024:87:::0;:::o;21741:104::-;21797:13;21830:7;21823:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21741:104;:::o;23916:308::-;24027:19;:17;:19::i;:::-;24015:31;;:8;:31;;;24011:61;;;24055:17;;;;;;;;;;;;;;24011:61;24137:8;24085:18;:39;24104:19;:17;:19::i;:::-;24085:39;;;;;;;;;;;;;;;:49;24125:8;24085:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24197:8;24161:55;;24176:19;:17;:19::i;:::-;24161:55;;;24207:8;24161:55;;;;;;:::i;:::-;;;;;;;;23916:308;;:::o;25023:396::-;25190:28;25200:4;25206:2;25210:7;25190:9;:28::i;:::-;25251:1;25233:2;:14;;;:19;25229:183;;25272:56;25303:4;25309:2;25313:7;25322:5;25272:30;:56::i;:::-;25267:145;;25356:40;;;;;;;;;;;;;;25267:145;25229:183;25023:396;;;;:::o;42459:476::-;42577:13;42630:16;42638:7;42630;:16::i;:::-;42608:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;42734:23;42760;42775:7;42760:14;:23::i;:::-;42734:49;;42840:1;42820:9;42814:23;:27;:113;;;;;;;;;;;;;;;;;42885:9;42868:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;42814:113;42794:133;;;42459:476;;;:::o;42107:47::-;;;;:::o;24295:164::-;24392:4;24416:18;:25;24435:5;24416:25;;;;;;;;;;;;;;;:35;24442:8;24416:35;;;;;;;;;;;;;;;;;;;;;;;;;24409:42;;24295:164;;;;:::o;2927:201::-;2249:12;:10;:12::i;:::-;2238:23;;:7;:5;:7::i;:::-;:23;;;2230:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3036:1:::1;3016:22;;:8;:22;;;;3008:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3092:28;3111:8;3092:18;:28::i;:::-;2927:201:::0;:::o;25674:273::-;25731:4;25787:7;25768:15;:13;:15::i;:::-;:26;;:66;;;;;25821:13;;25811:7;:23;25768:66;:152;;;;;25919:1;13347:8;25872:17;:26;25890:7;25872:26;;;;;;;;;;;;:43;:48;25768:152;25748:172;;25674:273;;;:::o;18876:1129::-;18943:7;18963:12;18978:7;18963:22;;19046:4;19027:15;:13;:15::i;:::-;:23;19023:915;;19080:13;;19073:4;:20;19069:869;;;19118:14;19135:17;:23;19153:4;19135:23;;;;;;;;;;;;19118:40;;19251:1;13347:8;19224:6;:23;:28;19220:699;;;19743:113;19760:1;19750:6;:11;19743:113;;;19803:17;:25;19821:6;;;;;;;19803:25;;;;;;;;;;;;19794:34;;19743:113;;;19889:6;19882:13;;;;;;19220:699;19095:843;19069:869;19023:915;19966:31;;;;;;;;;;;;;;18876:1129;;;;:::o;39656:105::-;39716:7;39743:10;39736:17;;39656:105;:::o;15136:92::-;15192:7;15219:1;15212:8;;15136:92;:::o;30913:2515::-;31028:27;31058;31077:7;31058:18;:27::i;:::-;31028:57;;31143:4;31102:45;;31118:19;31102:45;;;31098:86;;31156:28;;;;;;;;;;;;;;31098:86;31197:22;31246:4;31223:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31267:43;31284:4;31290:19;:17;:19::i;:::-;31267:16;:43::i;:::-;31223:87;:147;;;;31351:19;:17;:19::i;:::-;31327:43;;:20;31339:7;31327:11;:20::i;:::-;:43;;;31223:147;31197:174;;31389:17;31384:66;;31415:35;;;;;;;;;;;;;;31384:66;31479:1;31465:16;;:2;:16;;;31461:52;;;31490:23;;;;;;;;;;;;;;31461:52;31526:43;31548:4;31554:2;31558:7;31567:1;31526:21;:43::i;:::-;31642:15;:24;31658:7;31642:24;;;;;;;;;;;;31635:31;;;;;;;;;;;32034:18;:24;32053:4;32034:24;;;;;;;;;;;;;;;;32032:26;;;;;;;;;;;;32103:18;:22;32122:2;32103:22;;;;;;;;;;;;;;;;32101:24;;;;;;;;;;;13629:8;13231:3;32484:15;:41;;32442:21;32460:2;32442:17;:21::i;:::-;:84;:128;32396:17;:26;32414:7;32396:26;;;;;;;;;;;:174;;;;32740:1;13629:8;32690:19;:46;:51;32686:626;;;32762:19;32794:1;32784:7;:11;32762:33;;32951:1;32917:17;:30;32935:11;32917:30;;;;;;;;;;;;:35;32913:384;;;33055:13;;33040:11;:28;33036:242;;33235:19;33202:17;:30;33220:11;33202:30;;;;;;;;;;;:52;;;;33036:242;32913:384;32743:569;32686:626;33359:7;33355:2;33340:27;;33349:4;33340:27;;;;;;;;;;;;33378:42;33399:4;33405:2;33409:7;33418:1;33378:20;:42::i;:::-;31017:2411;;30913:2515;;;:::o;742:98::-;795:7;822:10;815:17;;742:98;:::o;3288:191::-;3362:16;3381:6;;;;;;;;;;;3362:25;;3407:8;3398:6;;:17;;;;;;;;;;;;;;;;;;3462:8;3431:40;;3452:8;3431:40;;;;;;;;;;;;3351:128;3288:191;:::o;26031:104::-;26100:27;26110:2;26114:8;26100:27;;;;;;;;;;;;:9;:27::i;:::-;26031:104;;:::o;37125:716::-;37288:4;37334:2;37309:45;;;37355:19;:17;:19::i;:::-;37376:4;37382:7;37391:5;37309:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37305:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37609:1;37592:6;:13;:18;37588:235;;;37638:40;;;;;;;;;;;;;;37588:235;37781:6;37775:13;37766:6;37762:2;37758:15;37751:38;37305:529;37478:54;;;37468:64;;;:6;:64;;;;37461:71;;;37125:716;;;;;;:::o;21916:318::-;21989:13;22020:16;22028:7;22020;:16::i;:::-;22015:59;;22045:29;;;;;;;;;;;;;;22015:59;22087:21;22111:10;:8;:10::i;:::-;22087:34;;22164:1;22145:7;22139:21;:26;;:87;;;;;;;;;;;;;;;;;22192:7;22201:18;22211:7;22201:9;:18::i;:::-;22175:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22139:87;22132:94;;;21916:318;;;:::o;38489:159::-;;;;;:::o;22661:148::-;22725:14;22786:5;22776:15;;22661:148;;;:::o;39307:158::-;;;;;:::o;26508:2236::-;26631:20;26654:13;;26631:36;;26696:1;26682:16;;:2;:16;;;26678:48;;;26707:19;;;;;;;;;;;;;;26678:48;26753:1;26741:8;:13;26737:44;;;26763:18;;;;;;;;;;;;;;26737:44;26794:61;26824:1;26828:2;26832:12;26846:8;26794:21;:61::i;:::-;27398:1;12714:2;27369:1;:25;;27368:31;27356:8;:44;27330:18;:22;27349:2;27330:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13494:3;27799:29;27826:1;27814:8;:13;27799:14;:29::i;:::-;:56;;13231:3;27736:15;:41;;27694:21;27712:2;27694:17;:21::i;:::-;:84;:162;27643:17;:31;27661:12;27643:31;;;;;;;;;;;:213;;;;27873:20;27896:12;27873:35;;27923:11;27952:8;27937:12;:23;27923:37;;27999:1;27981:2;:14;;;:19;27977:635;;28021:313;28077:12;28073:2;28052:38;;28069:1;28052:38;;;;;;;;;;;;28118:69;28157:1;28161:2;28165:14;;;;;;28181:5;28118:30;:69::i;:::-;28113:174;;28223:40;;;;;;;;;;;;;;28113:174;28329:3;28314:12;:18;28021:313;;28415:12;28398:13;;:29;28394:43;;28429:8;;;28394:43;27977:635;;;28478:119;28534:14;;;;;;28530:2;28509:40;;28526:1;28509:40;;;;;;;;;;;;28592:3;28577:12;:18;28478:119;;27977:635;28642:12;28626:13;:28;;;;27107:1559;;28676:60;28705:1;28709:2;28713:12;28727:8;28676:20;:60::i;:::-;26620:2124;26508:2236;;;:::o;43224:108::-;43284:13;43313;43306:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43224:108;:::o;39867:1959::-;39924:17;40345:3;40338:4;40332:11;40328:21;40321:28;;40436:3;40430:4;40423:17;40542:3;40999:5;41129:1;41124:3;41120:11;41113:18;;41266:2;41260:4;41256:13;41252:2;41248:22;41243:3;41235:36;41307:2;41301:4;41297:13;41289:21;;40890:682;41326:4;40890:682;;;41501:1;41496:3;41492:11;41485:18;;41552:2;41546:4;41542:13;41538:2;41534:22;41529:3;41521:36;41422:2;41416:4;41412:13;41404:21;;40890:682;;;40894:431;41623:3;41618;41614:13;41738:2;41733:3;41729:12;41722:19;;41801:6;41796:3;41789:19;39963:1856;;39867:1959;;;:::o;22896:142::-;22954:14;23015:5;23005:15;;22896:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:165::-;13758:17;13754:1;13746:6;13742:14;13735:41;13618:165;:::o;13789:366::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:419::-;14327:4;14365:2;14354:9;14350:18;14342:26;;14414:9;14408:4;14404:20;14400:1;14389:9;14385:17;14378:47;14442:131;14568:4;14442:131;:::i;:::-;14434:139;;14161:419;;;:::o;14586:179::-;14726:31;14722:1;14714:6;14710:14;14703:55;14586:179;:::o;14771:366::-;14913:3;14934:67;14998:2;14993:3;14934:67;:::i;:::-;14927:74;;15010:93;15099:3;15010:93;:::i;:::-;15128:2;15123:3;15119:12;15112:19;;14771:366;;;:::o;15143:419::-;15309:4;15347:2;15336:9;15332:18;15324:26;;15396:9;15390:4;15386:20;15382:1;15371:9;15367:17;15360:47;15424:131;15550:4;15424:131;:::i;:::-;15416:139;;15143:419;;;:::o;15568:180::-;15616:77;15613:1;15606:88;15713:4;15710:1;15703:15;15737:4;15734:1;15727:15;15754:305;15794:3;15813:20;15831:1;15813:20;:::i;:::-;15808:25;;15847:20;15865:1;15847:20;:::i;:::-;15842:25;;16001:1;15933:66;15929:74;15926:1;15923:81;15920:107;;;16007:18;;:::i;:::-;15920:107;16051:1;16048;16044:9;16037:16;;15754:305;;;;:::o;16065:172::-;16205:24;16201:1;16193:6;16189:14;16182:48;16065:172;:::o;16243:366::-;16385:3;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16482:93;16571:3;16482:93;:::i;:::-;16600:2;16595:3;16591:12;16584:19;;16243:366;;;:::o;16615:419::-;16781:4;16819:2;16808:9;16804:18;16796:26;;16868:9;16862:4;16858:20;16854:1;16843:9;16839:17;16832:47;16896:131;17022:4;16896:131;:::i;:::-;16888:139;;16615:419;;;:::o;17040:180::-;17180:32;17176:1;17168:6;17164:14;17157:56;17040:180;:::o;17226:366::-;17368:3;17389:67;17453:2;17448:3;17389:67;:::i;:::-;17382:74;;17465:93;17554:3;17465:93;:::i;:::-;17583:2;17578:3;17574:12;17567:19;;17226:366;;;:::o;17598:419::-;17764:4;17802:2;17791:9;17787:18;17779:26;;17851:9;17845:4;17841:20;17837:1;17826:9;17822:17;17815:47;17879:131;18005:4;17879:131;:::i;:::-;17871:139;;17598:419;;;:::o;18023:191::-;18063:4;18083:20;18101:1;18083:20;:::i;:::-;18078:25;;18117:20;18135:1;18117:20;:::i;:::-;18112:25;;18156:1;18153;18150:8;18147:34;;;18161:18;;:::i;:::-;18147:34;18206:1;18203;18199:9;18191:17;;18023:191;;;;:::o;18220:348::-;18260:7;18283:20;18301:1;18283:20;:::i;:::-;18278:25;;18317:20;18335:1;18317:20;:::i;:::-;18312:25;;18505:1;18437:66;18433:74;18430:1;18427:81;18422:1;18415:9;18408:17;18404:105;18401:131;;;18512:18;;:::i;:::-;18401:131;18560:1;18557;18553:9;18542:20;;18220:348;;;;:::o;18574:179::-;18714:31;18710:1;18702:6;18698:14;18691:55;18574:179;:::o;18759:366::-;18901:3;18922:67;18986:2;18981:3;18922:67;:::i;:::-;18915:74;;18998:93;19087:3;18998:93;:::i;:::-;19116:2;19111:3;19107:12;19100:19;;18759:366;;;:::o;19131:419::-;19297:4;19335:2;19324:9;19320:18;19312:26;;19384:9;19378:4;19374:20;19370:1;19359:9;19355:17;19348:47;19412:131;19538:4;19412:131;:::i;:::-;19404:139;;19131:419;;;:::o;19556:234::-;19696:34;19692:1;19684:6;19680:14;19673:58;19765:17;19760:2;19752:6;19748:15;19741:42;19556:234;:::o;19796:366::-;19938:3;19959:67;20023:2;20018:3;19959:67;:::i;:::-;19952:74;;20035:93;20124:3;20035:93;:::i;:::-;20153:2;20148:3;20144:12;20137:19;;19796:366;;;:::o;20168:419::-;20334:4;20372:2;20361:9;20357:18;20349:26;;20421:9;20415:4;20411:20;20407:1;20396:9;20392:17;20385:47;20449:131;20575:4;20449:131;:::i;:::-;20441:139;;20168:419;;;:::o;20593:148::-;20695:11;20732:3;20717:18;;20593:148;;;;:::o;20747:377::-;20853:3;20881:39;20914:5;20881:39;:::i;:::-;20936:89;21018:6;21013:3;20936:89;:::i;:::-;20929:96;;21034:52;21079:6;21074:3;21067:4;21060:5;21056:16;21034:52;:::i;:::-;21111:6;21106:3;21102:16;21095:23;;20857:267;20747:377;;;;:::o;21130:155::-;21270:7;21266:1;21258:6;21254:14;21247:31;21130:155;:::o;21291:400::-;21451:3;21472:84;21554:1;21549:3;21472:84;:::i;:::-;21465:91;;21565:93;21654:3;21565:93;:::i;:::-;21683:1;21678:3;21674:11;21667:18;;21291:400;;;:::o;21697:541::-;21930:3;21952:95;22043:3;22034:6;21952:95;:::i;:::-;21945:102;;22064:148;22208:3;22064:148;:::i;:::-;22057:155;;22229:3;22222:10;;21697:541;;;;:::o;22244:225::-;22384:34;22380:1;22372:6;22368:14;22361:58;22453:8;22448:2;22440:6;22436:15;22429:33;22244:225;:::o;22475:366::-;22617:3;22638:67;22702:2;22697:3;22638:67;:::i;:::-;22631:74;;22714:93;22803:3;22714:93;:::i;:::-;22832:2;22827:3;22823:12;22816:19;;22475:366;;;:::o;22847:419::-;23013:4;23051:2;23040:9;23036:18;23028:26;;23100:9;23094:4;23090:20;23086:1;23075:9;23071:17;23064:47;23128:131;23254:4;23128:131;:::i;:::-;23120:139;;22847:419;;;:::o;23272:98::-;23323:6;23357:5;23351:12;23341:22;;23272:98;;;:::o;23376:168::-;23459:11;23493:6;23488:3;23481:19;23533:4;23528:3;23524:14;23509:29;;23376:168;;;;:::o;23550:360::-;23636:3;23664:38;23696:5;23664:38;:::i;:::-;23718:70;23781:6;23776:3;23718:70;:::i;:::-;23711:77;;23797:52;23842:6;23837:3;23830:4;23823:5;23819:16;23797:52;:::i;:::-;23874:29;23896:6;23874:29;:::i;:::-;23869:3;23865:39;23858:46;;23640:270;23550:360;;;;:::o;23916:640::-;24111:4;24149:3;24138:9;24134:19;24126:27;;24163:71;24231:1;24220:9;24216:17;24207:6;24163:71;:::i;:::-;24244:72;24312:2;24301:9;24297:18;24288:6;24244:72;:::i;:::-;24326;24394:2;24383:9;24379:18;24370:6;24326:72;:::i;:::-;24445:9;24439:4;24435:20;24430:2;24419:9;24415:18;24408:48;24473:76;24544:4;24535:6;24473:76;:::i;:::-;24465:84;;23916:640;;;;;;;:::o;24562:141::-;24618:5;24649:6;24643:13;24634:22;;24665:32;24691:5;24665:32;:::i;:::-;24562:141;;;;:::o;24709:349::-;24778:6;24827:2;24815:9;24806:7;24802:23;24798:32;24795:119;;;24833:79;;:::i;:::-;24795:119;24953:1;24978:63;25033:7;25024:6;25013:9;25009:22;24978:63;:::i;:::-;24968:73;;24924:127;24709:349;;;;:::o;25064:435::-;25244:3;25266:95;25357:3;25348:6;25266:95;:::i;:::-;25259:102;;25378:95;25469:3;25460:6;25378:95;:::i;:::-;25371:102;;25490:3;25483:10;;25064:435;;;;;:::o
Swarm Source
ipfs://28dfcbf52ca8a2c60d68b01fb8c0d507272b0edcf329a35d31a260f1385e943d
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.