ERC-721
Overview
Max Total Supply
623 Canadians
Holders
80
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 CanadiansLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Canadians
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-18 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts 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 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: Canadians.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.13; contract Canadians is Ownable, ERC721A { uint256 public maxSupply = 10000; uint256 public maxFreeSupply = 10000; uint256 public maxPerTxDuringMint = 20; uint256 public maxPerAddressDuringMint = 20; uint256 public maxPerAddressDuringFreeMint = 3; uint256 public price = 0.002 ether; bool public saleIsActive = true; address constant internal TEAM_ADDRESS = 0x3CA8A24DBbacb0341EF1eE29988D3b7729aa10CF; string private _baseTokenURI; mapping(address => uint256) public freeMintedAmount; mapping(address => uint256) public mintedAmount; constructor() ERC721A("The Canadians NFT", "Canadians") { _safeMint(msg.sender, 10); } modifier mintCompliance() { require(saleIsActive, "Sale is not active yet."); require(tx.origin == msg.sender, "Wrong Caller"); _; } function mint(uint256 _quantity) external payable mintCompliance() { require( msg.value >= price * _quantity, "GDZ: Insufficient Fund." ); require( maxSupply >= totalSupply() + _quantity, "GDZ: Exceeds max supply." ); uint256 _mintedAmount = mintedAmount[msg.sender]; require( _mintedAmount + _quantity <= maxPerAddressDuringMint, "GDZ: Exceeds max mints per address!" ); require( _quantity > 0 && _quantity <= maxPerTxDuringMint, "Invalid mint amount." ); mintedAmount[msg.sender] = _mintedAmount + _quantity; _safeMint(msg.sender, _quantity); } function freeMint(uint256 _quantity) external mintCompliance() { require( maxFreeSupply >= totalSupply() + _quantity, "GDZ: Exceeds max supply." ); uint256 _freeMintedAmount = freeMintedAmount[msg.sender]; require( _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint, "GDZ: Exceeds max free mints per address!" ); freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity; _safeMint(msg.sender, _quantity); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function treasuryMint(uint quantity) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); } function setMaxPerTx(uint256 _amount) external onlyOwner { maxPerTxDuringMint = _amount; } function setMaxPerAddress(uint256 _amount) external onlyOwner { maxPerAddressDuringMint = _amount; } function setMaxFreePerAddress(uint256 _amount) external onlyOwner { maxPerAddressDuringFreeMint = _amount; } function flipSale() public onlyOwner { saleIsActive = !saleIsActive; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function withdrawBalance() external payable onlyOwner { (bool success, ) = payable(TEAM_ADDRESS).call{ value: address(this).balance }(""); require(success, "transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526127106009819055600a556014600b819055600c556003600d5566071afd498d0000600e55600f805460ff191660011790553480156200004357600080fd5b5060405180604001604052806011815260200170151a194810d85b98591a585b9cc8139195607a1b8152506040518060400160405280600981526020016843616e616469616e7360b81b815250620000aa620000a4620000f060201b60201c565b620000f4565b8151620000bf906003906020850190620003ca565b508051620000d5906004906020840190620003ca565b5050600060015550620000ea33600a62000144565b6200055a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001668282604051806020016040528060008152506200016a60201b60201c565b5050565b6001546001600160a01b0384166200019457604051622e076360e81b815260040160405180910390fd5b82600003620001b65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b1562000282575b60405182906001600160a01b03881690600090600080516020620021fc833981519152908290a460018201916200024790600090889087620002d6565b62000265576040516368d2bf6b60e11b815260040160405180910390fd5b8082106200020a5782600154146200027c57600080fd5b620002b7565b5b6040516001830192906001600160a01b03881690600090600080516020620021fc833981519152908290a480821062000283575b50600155620002d060008583866001600160e01b038516565b50505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200030d90339089908890889060040162000470565b6020604051808303816000875af19250505080156200034b575060408051601f3d908101601f191682019092526200034891810190620004eb565b60015b620003ad573d8080156200037c576040519150601f19603f3d011682016040523d82523d6000602084013e62000381565b606091505b508051600003620003a5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620003d8906200051e565b90600052602060002090601f016020900481019282620003fc576000855562000447565b82601f106200041757805160ff191683800117855562000447565b8280016001018555821562000447579182015b82811115620004475782518255916020019190600101906200042a565b506200045592915062000459565b5090565b5b808211156200045557600081556001016200045a565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620004bf5785810182015185820160a001528101620004a1565b82811115620004d257600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620004fe57600080fd5b81516001600160e01b0319811681146200051757600080fd5b9392505050565b600181811c908216806200053357607f821691505b6020821081036200055457634e487b7160e01b600052602260045260246000fd5b50919050565b611c92806200056a6000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c6f6f216116100a0578063e985e9c51161006f578063e985e9c5146105b1578063eb8d2444146105fa578063efdc778814610614578063f2fde38b14610634578063fbbf8cc31461065457600080fd5b8063c6f6f21614610545578063c87b56dd14610565578063d3464cbd14610585578063d5abeb011461059b57600080fd5b8063a035b1fe116100e7578063a035b1fe146104bc578063a0712d68146104d2578063a22cb465146104e5578063b88d4fde14610505578063bbb643191461052557600080fd5b80638da5cb5b1461043c57806391b7f5ed1461045a57806395d89b411461047a57806396b102011461048f57600080fd5b806355f804b31161019b578063715018a61161016a578063715018a6146103bc5780637ba5e621146103d15780637bddd65b146103e65780637c928fe9146104065780638bc35c2f1461042657600080fd5b806355f804b3146103545780635fd8c710146103745780636352211e1461037c57806370a082311461039c57600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e85780632e0fd6eb1461030857806342842e0e1461031e578063475133341461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611806565b610681565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d3565b604051610240919061187b565b34801561027757600080fd5b5061028b61028636600461188e565b610765565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046118c3565b6107a9565b005b3480156102d157600080fd5b50600254600154035b604051908152602001610240565b3480156102f457600080fd5b506102c36103033660046118ed565b61087b565b34801561031457600080fd5b506102da600d5481565b34801561032a57600080fd5b506102c36103393660046118ed565b61088b565b34801561034a57600080fd5b506102da600a5481565b34801561036057600080fd5b506102c361036f366004611929565b6108a6565b6102c36108e5565b34801561038857600080fd5b5061028b61039736600461188e565b6109b1565b3480156103a857600080fd5b506102da6103b736600461199b565b6109bc565b3480156103c857600080fd5b506102c3610a0b565b3480156103dd57600080fd5b506102c3610a41565b3480156103f257600080fd5b506102c361040136600461188e565b610a7f565b34801561041257600080fd5b506102c361042136600461188e565b610aae565b34801561043257600080fd5b506102da600c5481565b34801561044857600080fd5b506000546001600160a01b031661028b565b34801561046657600080fd5b506102c361047536600461188e565b610c43565b34801561048657600080fd5b5061025e610c72565b34801561049b57600080fd5b506102da6104aa36600461199b565b60116020526000908152604090205481565b3480156104c857600080fd5b506102da600e5481565b6102c36104e036600461188e565b610c81565b3480156104f157600080fd5b506102c36105003660046119b6565b610ebf565b34801561051157600080fd5b506102c3610520366004611a08565b610f54565b34801561053157600080fd5b506102c361054036600461188e565b610f9e565b34801561055157600080fd5b506102c361056036600461188e565b610fcd565b34801561057157600080fd5b5061025e61058036600461188e565b610ffc565b34801561059157600080fd5b506102da600b5481565b3480156105a757600080fd5b506102da60095481565b3480156105bd57600080fd5b506102346105cc366004611ae4565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561060657600080fd5b50600f546102349060ff1681565b34801561062057600080fd5b506102c361062f36600461188e565b611080565b34801561064057600080fd5b506102c361064f36600461199b565b611163565b34801561066057600080fd5b506102da61066f36600461199b565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b0319831614806106b257506380ac58cd60e01b6001600160e01b03198316145b806106cd5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106e290611b17565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90611b17565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b6000610770826111fb565b61078d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107b482611223565b9050806001600160a01b0316836001600160a01b0316036107e85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461081f5761080281336105cc565b61081f576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61088683838361128a565b505050565b61088683838360405180602001604052806000815250610f54565b6000546001600160a01b031633146108d95760405162461bcd60e51b81526004016108d090611b51565b60405180910390fd5b61088660108383611757565b6000546001600160a01b0316331461090f5760405162461bcd60e51b81526004016108d090611b51565b604051600090733ca8a24dbbacb0341ef1ee29988d3b7729aa10cf9047908381818185875af1925050503d8060008114610965576040519150601f19603f3d011682016040523d82523d6000602084013e61096a565b606091505b50509050806109ae5760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b60448201526064016108d0565b50565b60006106cd82611223565b60006001600160a01b0382166109e5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a355760405162461bcd60e51b81526004016108d090611b51565b610a3f6000611431565b565b6000546001600160a01b03163314610a6b5760405162461bcd60e51b81526004016108d090611b51565b600f805460ff19811660ff90911615179055565b6000546001600160a01b03163314610aa95760405162461bcd60e51b81526004016108d090611b51565b600c55565b600f5460ff16610afa5760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064016108d0565b323314610b385760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016108d0565b80610b466002546001540390565b610b509190611b9c565b600a541015610b9c5760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b60448201526064016108d0565b33600090815260116020526040902054600d54610bb98383611b9c565b1115610c185760405162461bcd60e51b815260206004820152602860248201527f47445a3a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b60648201526084016108d0565b610c228282611b9c565b33600081815260116020526040902091909155610c3f9083611481565b5050565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b81526004016108d090611b51565b600e55565b6060600480546106e290611b17565b600f5460ff16610ccd5760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064016108d0565b323314610d0b5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016108d0565b80600e54610d199190611bb4565b341015610d685760405162461bcd60e51b815260206004820152601760248201527f47445a3a20496e73756666696369656e742046756e642e00000000000000000060448201526064016108d0565b80610d766002546001540390565b610d809190611b9c565b6009541015610dcc5760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b60448201526064016108d0565b33600090815260126020526040902054600c54610de98383611b9c565b1115610e435760405162461bcd60e51b815260206004820152602360248201527f47445a3a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b60648201526084016108d0565b600082118015610e555750600b548211155b610e985760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016108d0565b610ea28282611b9c565b33600081815260126020526040902091909155610c3f9083611481565b336001600160a01b03831603610ee85760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f5f84848461128a565b6001600160a01b0383163b15610f9857610f7b8484848461149b565b610f98576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610fc85760405162461bcd60e51b81526004016108d090611b51565b600d55565b6000546001600160a01b03163314610ff75760405162461bcd60e51b81526004016108d090611b51565b600b55565b6060611007826111fb565b61102457604051630a14c4b560e41b815260040160405180910390fd5b600061102e611586565b9050805160000361104e5760405180602001604052806000815250611079565b8061105884611595565b604051602001611069929190611bd3565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146110aa5760405162461bcd60e51b81526004016108d090611b51565b600081116110f05760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016108d0565b600954816111016002546001540390565b61110b9190611b9c565b11156111595760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c7920657863656564656400000000000000000060448201526064016108d0565b6109ae3382611481565b6000546001600160a01b0316331461118d5760405162461bcd60e51b81526004016108d090611b51565b6001600160a01b0381166111f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d0565b6109ae81611431565b6000600154821080156106cd575050600090815260056020526040902054600160e01b161590565b6000816001548110156112715760008181526005602052604081205490600160e01b8216900361126f575b8060000361107957506000190160008181526005602052604090205461124e565b505b604051636f96cda160e11b815260040160405180910390fd5b600061129582611223565b9050836001600160a01b0316816001600160a01b0316146112c85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112e657506112e685336105cc565b806113015750336112f684610765565b6001600160a01b0316145b90508061132157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661134857604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b87178117909155831690036113e9576001830160008181526005602052604081205490036113e75760015481146113e75760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610c3f8282604051806020016040528060008152506115e4565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114d0903390899088908890600401611c02565b6020604051808303816000875af192505050801561150b575060408051601f3d908101601f1916820190925261150891810190611c3f565b60015b611569573d808015611539576040519150601f19603f3d011682016040523d82523d6000602084013e61153e565b606091505b508051600003611561576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601080546106e290611b17565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115d257600183039250600a81066030018353600a90046115b4565b50819003601f19909101908152919050565b6001546001600160a01b03841661160d57604051622e076360e81b815260040160405180910390fd5b8260000361162e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611703575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116cc600087848060010195508761149b565b6116e9576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116815782600154146116fe57600080fd5b611748565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611704575b50600155610f98600085838684565b82805461176390611b17565b90600052602060002090601f01602090048101928261178557600085556117cb565b82601f1061179e5782800160ff198235161785556117cb565b828001600101855582156117cb579182015b828111156117cb5782358255916020019190600101906117b0565b506117d79291506117db565b5090565b5b808211156117d757600081556001016117dc565b6001600160e01b0319811681146109ae57600080fd5b60006020828403121561181857600080fd5b8135611079816117f0565b60005b8381101561183e578181015183820152602001611826565b83811115610f985750506000910152565b60008151808452611867816020860160208601611823565b601f01601f19169290920160200192915050565b602081526000611079602083018461184f565b6000602082840312156118a057600080fd5b5035919050565b80356001600160a01b03811681146118be57600080fd5b919050565b600080604083850312156118d657600080fd5b6118df836118a7565b946020939093013593505050565b60008060006060848603121561190257600080fd5b61190b846118a7565b9250611919602085016118a7565b9150604084013590509250925092565b6000806020838503121561193c57600080fd5b823567ffffffffffffffff8082111561195457600080fd5b818501915085601f83011261196857600080fd5b81358181111561197757600080fd5b86602082850101111561198957600080fd5b60209290920196919550909350505050565b6000602082840312156119ad57600080fd5b611079826118a7565b600080604083850312156119c957600080fd5b6119d2836118a7565b9150602083013580151581146119e757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a1e57600080fd5b611a27856118a7565b9350611a35602086016118a7565b925060408501359150606085013567ffffffffffffffff80821115611a5957600080fd5b818701915087601f830112611a6d57600080fd5b813581811115611a7f57611a7f6119f2565b604051601f8201601f19908116603f01168101908382118183101715611aa757611aa76119f2565b816040528281528a6020848701011115611ac057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611af757600080fd5b611b00836118a7565b9150611b0e602084016118a7565b90509250929050565b600181811c90821680611b2b57607f821691505b602082108103611b4b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611baf57611baf611b86565b500190565b6000816000190483118215151615611bce57611bce611b86565b500290565b60008351611be5818460208801611823565b835190830190611bf9818360208801611823565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c359083018461184f565b9695505050505050565b600060208284031215611c5157600080fd5b8151611079816117f056fea2646970667358221220994d112eed9fdc509515e8fa7c79ac37ad3efb2e20fb89947455f3bad19b70c864736f6c634300080d0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c6f6f216116100a0578063e985e9c51161006f578063e985e9c5146105b1578063eb8d2444146105fa578063efdc778814610614578063f2fde38b14610634578063fbbf8cc31461065457600080fd5b8063c6f6f21614610545578063c87b56dd14610565578063d3464cbd14610585578063d5abeb011461059b57600080fd5b8063a035b1fe116100e7578063a035b1fe146104bc578063a0712d68146104d2578063a22cb465146104e5578063b88d4fde14610505578063bbb643191461052557600080fd5b80638da5cb5b1461043c57806391b7f5ed1461045a57806395d89b411461047a57806396b102011461048f57600080fd5b806355f804b31161019b578063715018a61161016a578063715018a6146103bc5780637ba5e621146103d15780637bddd65b146103e65780637c928fe9146104065780638bc35c2f1461042657600080fd5b806355f804b3146103545780635fd8c710146103745780636352211e1461037c57806370a082311461039c57600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e85780632e0fd6eb1461030857806342842e0e1461031e578063475133341461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611806565b610681565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d3565b604051610240919061187b565b34801561027757600080fd5b5061028b61028636600461188e565b610765565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046118c3565b6107a9565b005b3480156102d157600080fd5b50600254600154035b604051908152602001610240565b3480156102f457600080fd5b506102c36103033660046118ed565b61087b565b34801561031457600080fd5b506102da600d5481565b34801561032a57600080fd5b506102c36103393660046118ed565b61088b565b34801561034a57600080fd5b506102da600a5481565b34801561036057600080fd5b506102c361036f366004611929565b6108a6565b6102c36108e5565b34801561038857600080fd5b5061028b61039736600461188e565b6109b1565b3480156103a857600080fd5b506102da6103b736600461199b565b6109bc565b3480156103c857600080fd5b506102c3610a0b565b3480156103dd57600080fd5b506102c3610a41565b3480156103f257600080fd5b506102c361040136600461188e565b610a7f565b34801561041257600080fd5b506102c361042136600461188e565b610aae565b34801561043257600080fd5b506102da600c5481565b34801561044857600080fd5b506000546001600160a01b031661028b565b34801561046657600080fd5b506102c361047536600461188e565b610c43565b34801561048657600080fd5b5061025e610c72565b34801561049b57600080fd5b506102da6104aa36600461199b565b60116020526000908152604090205481565b3480156104c857600080fd5b506102da600e5481565b6102c36104e036600461188e565b610c81565b3480156104f157600080fd5b506102c36105003660046119b6565b610ebf565b34801561051157600080fd5b506102c3610520366004611a08565b610f54565b34801561053157600080fd5b506102c361054036600461188e565b610f9e565b34801561055157600080fd5b506102c361056036600461188e565b610fcd565b34801561057157600080fd5b5061025e61058036600461188e565b610ffc565b34801561059157600080fd5b506102da600b5481565b3480156105a757600080fd5b506102da60095481565b3480156105bd57600080fd5b506102346105cc366004611ae4565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561060657600080fd5b50600f546102349060ff1681565b34801561062057600080fd5b506102c361062f36600461188e565b611080565b34801561064057600080fd5b506102c361064f36600461199b565b611163565b34801561066057600080fd5b506102da61066f36600461199b565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b0319831614806106b257506380ac58cd60e01b6001600160e01b03198316145b806106cd5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106e290611b17565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90611b17565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b6000610770826111fb565b61078d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107b482611223565b9050806001600160a01b0316836001600160a01b0316036107e85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461081f5761080281336105cc565b61081f576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61088683838361128a565b505050565b61088683838360405180602001604052806000815250610f54565b6000546001600160a01b031633146108d95760405162461bcd60e51b81526004016108d090611b51565b60405180910390fd5b61088660108383611757565b6000546001600160a01b0316331461090f5760405162461bcd60e51b81526004016108d090611b51565b604051600090733ca8a24dbbacb0341ef1ee29988d3b7729aa10cf9047908381818185875af1925050503d8060008114610965576040519150601f19603f3d011682016040523d82523d6000602084013e61096a565b606091505b50509050806109ae5760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b60448201526064016108d0565b50565b60006106cd82611223565b60006001600160a01b0382166109e5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a355760405162461bcd60e51b81526004016108d090611b51565b610a3f6000611431565b565b6000546001600160a01b03163314610a6b5760405162461bcd60e51b81526004016108d090611b51565b600f805460ff19811660ff90911615179055565b6000546001600160a01b03163314610aa95760405162461bcd60e51b81526004016108d090611b51565b600c55565b600f5460ff16610afa5760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064016108d0565b323314610b385760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016108d0565b80610b466002546001540390565b610b509190611b9c565b600a541015610b9c5760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b60448201526064016108d0565b33600090815260116020526040902054600d54610bb98383611b9c565b1115610c185760405162461bcd60e51b815260206004820152602860248201527f47445a3a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b60648201526084016108d0565b610c228282611b9c565b33600081815260116020526040902091909155610c3f9083611481565b5050565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b81526004016108d090611b51565b600e55565b6060600480546106e290611b17565b600f5460ff16610ccd5760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064016108d0565b323314610d0b5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016108d0565b80600e54610d199190611bb4565b341015610d685760405162461bcd60e51b815260206004820152601760248201527f47445a3a20496e73756666696369656e742046756e642e00000000000000000060448201526064016108d0565b80610d766002546001540390565b610d809190611b9c565b6009541015610dcc5760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b60448201526064016108d0565b33600090815260126020526040902054600c54610de98383611b9c565b1115610e435760405162461bcd60e51b815260206004820152602360248201527f47445a3a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b60648201526084016108d0565b600082118015610e555750600b548211155b610e985760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016108d0565b610ea28282611b9c565b33600081815260126020526040902091909155610c3f9083611481565b336001600160a01b03831603610ee85760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f5f84848461128a565b6001600160a01b0383163b15610f9857610f7b8484848461149b565b610f98576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610fc85760405162461bcd60e51b81526004016108d090611b51565b600d55565b6000546001600160a01b03163314610ff75760405162461bcd60e51b81526004016108d090611b51565b600b55565b6060611007826111fb565b61102457604051630a14c4b560e41b815260040160405180910390fd5b600061102e611586565b9050805160000361104e5760405180602001604052806000815250611079565b8061105884611595565b604051602001611069929190611bd3565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146110aa5760405162461bcd60e51b81526004016108d090611b51565b600081116110f05760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016108d0565b600954816111016002546001540390565b61110b9190611b9c565b11156111595760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c7920657863656564656400000000000000000060448201526064016108d0565b6109ae3382611481565b6000546001600160a01b0316331461118d5760405162461bcd60e51b81526004016108d090611b51565b6001600160a01b0381166111f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d0565b6109ae81611431565b6000600154821080156106cd575050600090815260056020526040902054600160e01b161590565b6000816001548110156112715760008181526005602052604081205490600160e01b8216900361126f575b8060000361107957506000190160008181526005602052604090205461124e565b505b604051636f96cda160e11b815260040160405180910390fd5b600061129582611223565b9050836001600160a01b0316816001600160a01b0316146112c85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112e657506112e685336105cc565b806113015750336112f684610765565b6001600160a01b0316145b90508061132157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661134857604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b87178117909155831690036113e9576001830160008181526005602052604081205490036113e75760015481146113e75760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610c3f8282604051806020016040528060008152506115e4565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114d0903390899088908890600401611c02565b6020604051808303816000875af192505050801561150b575060408051601f3d908101601f1916820190925261150891810190611c3f565b60015b611569573d808015611539576040519150601f19603f3d011682016040523d82523d6000602084013e61153e565b606091505b508051600003611561576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601080546106e290611b17565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115d257600183039250600a81066030018353600a90046115b4565b50819003601f19909101908152919050565b6001546001600160a01b03841661160d57604051622e076360e81b815260040160405180910390fd5b8260000361162e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611703575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116cc600087848060010195508761149b565b6116e9576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116815782600154146116fe57600080fd5b611748565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611704575b50600155610f98600085838684565b82805461176390611b17565b90600052602060002090601f01602090048101928261178557600085556117cb565b82601f1061179e5782800160ff198235161785556117cb565b828001600101855582156117cb579182015b828111156117cb5782358255916020019190600101906117b0565b506117d79291506117db565b5090565b5b808211156117d757600081556001016117dc565b6001600160e01b0319811681146109ae57600080fd5b60006020828403121561181857600080fd5b8135611079816117f0565b60005b8381101561183e578181015183820152602001611826565b83811115610f985750506000910152565b60008151808452611867816020860160208601611823565b601f01601f19169290920160200192915050565b602081526000611079602083018461184f565b6000602082840312156118a057600080fd5b5035919050565b80356001600160a01b03811681146118be57600080fd5b919050565b600080604083850312156118d657600080fd5b6118df836118a7565b946020939093013593505050565b60008060006060848603121561190257600080fd5b61190b846118a7565b9250611919602085016118a7565b9150604084013590509250925092565b6000806020838503121561193c57600080fd5b823567ffffffffffffffff8082111561195457600080fd5b818501915085601f83011261196857600080fd5b81358181111561197757600080fd5b86602082850101111561198957600080fd5b60209290920196919550909350505050565b6000602082840312156119ad57600080fd5b611079826118a7565b600080604083850312156119c957600080fd5b6119d2836118a7565b9150602083013580151581146119e757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a1e57600080fd5b611a27856118a7565b9350611a35602086016118a7565b925060408501359150606085013567ffffffffffffffff80821115611a5957600080fd5b818701915087601f830112611a6d57600080fd5b813581811115611a7f57611a7f6119f2565b604051601f8201601f19908116603f01168101908382118183101715611aa757611aa76119f2565b816040528281528a6020848701011115611ac057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611af757600080fd5b611b00836118a7565b9150611b0e602084016118a7565b90509250929050565b600181811c90821680611b2b57607f821691505b602082108103611b4b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611baf57611baf611b86565b500190565b6000816000190483118215151615611bce57611bce611b86565b500290565b60008351611be5818460208801611823565b835190830190611bf9818360208801611823565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c359083018461184f565b9695505050505050565b600060208284031215611c5157600080fd5b8151611079816117f056fea2646970667358221220994d112eed9fdc509515e8fa7c79ac37ad3efb2e20fb89947455f3bad19b70c864736f6c634300080d0033
Deployed Bytecode Sourcemap
41863:3606:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16496:615;;;;;;;;;;-1:-1:-1;16496:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16496:615:0;;;;;;;;21509:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23577:204::-;;;;;;;;;;-1:-1:-1;23577:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23577:204:0;1528:203:1;23037:474:0;;;;;;;;;;-1:-1:-1;23037:474:0;;;;;:::i;:::-;;:::i;:::-;;15550:315;;;;;;;;;;-1:-1:-1;15816:12:0;;15800:13;;:28;15550:315;;;2319:25:1;;;2307:2;2292:18;15550:315:0;2173:177:1;24463:170:0;;;;;;;;;;-1:-1:-1;24463:170:0;;;;;:::i;:::-;;:::i;42141:47::-;;;;;;;;;;;;;;;;24704:185;;;;;;;;;;-1:-1:-1;24704:185:0;;;;;:::i;:::-;;:::i;41967:51::-;;;;;;;;;;;;;;;;45005:106;;;;;;;;;;-1:-1:-1;45005:106:0;;;;;:::i;:::-;;:::i;45241:225::-;;;:::i;21298:144::-;;;;;;;;;;-1:-1:-1;21298:144:0;;;;;:::i;:::-;;:::i;17175:224::-;;;;;;;;;;-1:-1:-1;17175:224:0;;;;;:::i;:::-;;:::i;2606:103::-;;;;;;;;;;;;;:::i;44913:84::-;;;;;;;;;;;;;:::i;44661:114::-;;;;;;;;;;-1:-1:-1;44661:114:0;;;;;:::i;:::-;;:::i;43609:540::-;;;;;;;;;;-1:-1:-1;43609:540:0;;;;;:::i;:::-;;:::i;42086:48::-;;;;;;;;;;;;;;;;1955:87;;;;;;;;;;-1:-1:-1;2001:7:0;2028:6;-1:-1:-1;;;;;2028:6:0;1955:87;;44157:86;;;;;;;;;;-1:-1:-1;44157:86:0;;;;;:::i;:::-;;:::i;21678:104::-;;;;;;;;;;;;;:::i;42453:51::-;;;;;;;;;;-1:-1:-1;42453:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;42201:57;;;;;;;;;;;;;;;;42847:754;;;;;;:::i;:::-;;:::i;23853:308::-;;;;;;;;;;-1:-1:-1;23853:308:0;;;;;:::i;:::-;;:::i;24960:396::-;;;;;;;;;;-1:-1:-1;24960:396:0;;;;;:::i;:::-;;:::i;44783:122::-;;;;;;;;;;-1:-1:-1;44783:122:0;;;;;:::i;:::-;;:::i;44549:104::-;;;;;;;;;;-1:-1:-1;44549:104:0;;;;;:::i;:::-;;:::i;21853:318::-;;;;;;;;;;-1:-1:-1;21853:318:0;;;;;:::i;:::-;;:::i;42031:48::-;;;;;;;;;;;;;;;;41909:51;;;;;;;;;;;;;;;;24232:164;;;;;;;;;;-1:-1:-1;24232:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24353:25:0;;;24329:4;24353:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24232:164;42265:50;;;;;;;;;;-1:-1:-1;42265:50:0;;;;;;;;44251:290;;;;;;;;;;-1:-1:-1;44251:290:0;;;;;:::i;:::-;;:::i;2864:201::-;;;;;;;;;;-1:-1:-1;2864:201:0;;;;;:::i;:::-;;:::i;42511:47::-;;;;;;;;;;-1:-1:-1;42511:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;16496:615;16581:4;-1:-1:-1;;;;;;;;;16881:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16958:25:0;;;16881:102;:179;;;-1:-1:-1;;;;;;;;;;17035:25:0;;;16881:179;16861:199;16496:615;-1:-1:-1;;16496:615:0:o;21509:100::-;21563:13;21596:5;21589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21509:100;:::o;23577:204::-;23645:7;23670:16;23678:7;23670;:16::i;:::-;23665:64;;23695:34;;-1:-1:-1;;;23695:34:0;;;;;;;;;;;23665:64;-1:-1:-1;23749:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23749:24:0;;23577:204::o;23037:474::-;23110:13;23142:27;23161:7;23142:18;:27::i;:::-;23110:61;;23192:5;-1:-1:-1;;;;;23186:11:0;:2;-1:-1:-1;;;;;23186:11:0;;23182:48;;23206:24;;-1:-1:-1;;;23206:24:0;;;;;;;;;;;23182:48;39680:10;-1:-1:-1;;;;;23247:28:0;;;23243:175;;23295:44;23312:5;39680:10;24232:164;:::i;23295:44::-;23290:128;;23367:35;;-1:-1:-1;;;23367:35:0;;;;;;;;;;;23290:128;23430:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23430:29:0;-1:-1:-1;;;;;23430:29:0;;;;;;;;;23475:28;;23430:24;;23475:28;;;;;;;23099:412;23037:474;;:::o;24463:170::-;24597:28;24607:4;24613:2;24617:7;24597:9;:28::i;:::-;24463:170;;;:::o;24704:185::-;24842:39;24859:4;24865:2;24869:7;24842:39;;;;;;;;;;;;:16;:39::i;45005:106::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;;;;;;;;;45080:23:::1;:13;45096:7:::0;;45080:23:::1;:::i;45241:225::-:0;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;45327:84:::1;::::0;45309:12:::1;::::0;42365:42:::1;::::0;45375:21:::1;::::0;45309:12;45327:84;45309:12;45327:84;45375:21;42365:42;45327:84:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45308:103;;;45430:7;45422:36;;;::::0;-1:-1:-1;;;45422:36:0;;6526:2:1;45422:36:0::1;::::0;::::1;6508:21:1::0;6565:2;6545:18;;;6538:30;-1:-1:-1;;;6584:18:1;;;6577:46;6640:18;;45422:36:0::1;6324:340:1::0;45422:36:0::1;45295:171;45241:225::o:0;21298:144::-;21362:7;21405:27;21424:7;21405:18;:27::i;17175:224::-;17239:7;-1:-1:-1;;;;;17263:19:0;;17259:60;;17291:28;;-1:-1:-1;;;17291:28:0;;;;;;;;;;;17259:60;-1:-1:-1;;;;;;17337:25:0;;;;;:18;:25;;;;;;12514:13;17337:54;;17175:224::o;2606:103::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;44913:84::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44977:12:::1;::::0;;-1:-1:-1;;44961:28:0;::::1;44977:12;::::0;;::::1;44976:13;44961:28;::::0;;44913:84::o;44661:114::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44734:23:::1;:33:::0;44661:114::o;43609:540::-;42720:12;;;;42712:48;;;;-1:-1:-1;;;42712:48:0;;6871:2:1;42712:48:0;;;6853:21:1;6910:2;6890:18;;;6883:30;-1:-1:-1;;;6929:18:1;;;6922:53;6992:18;;42712:48:0;6669:347:1;42712:48:0;42779:9;42792:10;42779:23;42771:48;;;;-1:-1:-1;;;42771:48:0;;7223:2:1;42771:48:0;;;7205:21:1;7262:2;7242:18;;;7235:30;-1:-1:-1;;;7281:18:1;;;7274:42;7333:18;;42771:48:0;7021:336:1;42771:48:0;43738:9:::1;43722:13;15816:12:::0;;15800:13;;:28;;15550:315;43722:13:::1;:25;;;;:::i;:::-;43705:13;;:42;;43683:116;;;::::0;-1:-1:-1;;;43683:116:0;;7829:2:1;43683:116:0::1;::::0;::::1;7811:21:1::0;7868:2;7848:18;;;7841:30;-1:-1:-1;;;7887:18:1;;;7880:54;7951:18;;43683:116:0::1;7627:348:1::0;43683:116:0::1;43855:10;43810:25;43838:28:::0;;;:16:::1;:28;::::0;;;;;43932:27:::1;::::0;43899:29:::1;43919:9:::0;43838:28;43899:29:::1;:::i;:::-;:60;;43877:150;;;::::0;-1:-1:-1;;;43877:150:0;;8182:2:1;43877:150:0::1;::::0;::::1;8164:21:1::0;8221:2;8201:18;;;8194:30;8260:34;8240:18;;;8233:62;-1:-1:-1;;;8311:18:1;;;8304:38;8359:19;;43877:150:0::1;7980:404:1::0;43877:150:0::1;44069:29;44089:9:::0;44069:17;:29:::1;:::i;:::-;44055:10;44038:28;::::0;;;:16:::1;:28;::::0;;;;:60;;;;44109:32:::1;::::0;44131:9;44109::::1;:32::i;:::-;43672:477;43609:540:::0;:::o;44157:86::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44221:5:::1;:14:::0;44157:86::o;21678:104::-;21734:13;21767:7;21760:14;;;;;:::i;42847:754::-;42720:12;;;;42712:48;;;;-1:-1:-1;;;42712:48:0;;6871:2:1;42712:48:0;;;6853:21:1;6910:2;6890:18;;;6883:30;-1:-1:-1;;;6929:18:1;;;6922:53;6992:18;;42712:48:0;6669:347:1;42712:48:0;42779:9;42792:10;42779:23;42771:48;;;;-1:-1:-1;;;42771:48:0;;7223:2:1;42771:48:0;;;7205:21:1;7262:2;7242:18;;;7235:30;-1:-1:-1;;;7281:18:1;;;7274:42;7333:18;;42771:48:0;7021:336:1;42771:48:0;42968:9:::1;42960:5;;:17;;;;:::i;:::-;42947:9;:30;;42925:103;;;::::0;-1:-1:-1;;;42925:103:0;;8764:2:1;42925:103:0::1;::::0;::::1;8746:21:1::0;8803:2;8783:18;;;8776:30;8842:25;8822:18;;;8815:53;8885:18;;42925:103:0::1;8562:347:1::0;42925:103:0::1;43090:9;43074:13;15816:12:::0;;15800:13;;:28;;15550:315;43074:13:::1;:25;;;;:::i;:::-;43061:9;;:38;;43039:112;;;::::0;-1:-1:-1;;;43039:112:0;;7829:2:1;43039:112:0::1;::::0;::::1;7811:21:1::0;7868:2;7848:18;;;7841:30;-1:-1:-1;;;7887:18:1;;;7880:54;7951:18;;43039:112:0::1;7627:348:1::0;43039:112:0::1;43199:10;43162:21;43186:24:::0;;;:12:::1;:24;::::0;;;;;43272:23:::1;::::0;43243:25:::1;43259:9:::0;43186:24;43243:25:::1;:::i;:::-;:52;;43221:137;;;::::0;-1:-1:-1;;;43221:137:0;;9116:2:1;43221:137:0::1;::::0;::::1;9098:21:1::0;9155:2;9135:18;;;9128:30;9194:34;9174:18;;;9167:62;-1:-1:-1;;;9245:18:1;;;9238:33;9288:19;;43221:137:0::1;8914:399:1::0;43221:137:0::1;43403:1;43391:9;:13;:48;;;;;43421:18;;43408:9;:31;;43391:48;43369:118;;;::::0;-1:-1:-1;;;43369:118:0;;9520:2:1;43369:118:0::1;::::0;::::1;9502:21:1::0;9559:2;9539:18;;;9532:30;-1:-1:-1;;;9578:18:1;;;9571:50;9638:18;;43369:118:0::1;9318:344:1::0;43369:118:0::1;43525:25;43541:9:::0;43525:13;:25:::1;:::i;:::-;43511:10;43498:24;::::0;;;:12:::1;:24;::::0;;;;:52;;;;43561:32:::1;::::0;43583:9;43561::::1;:32::i;23853:308::-:0;39680:10;-1:-1:-1;;;;;23952:31:0;;;23948:61;;23992:17;;-1:-1:-1;;;23992:17:0;;;;;;;;;;;23948:61;39680:10;24022:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24022:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24022:60:0;;;;;;;;;;24098:55;;540:41:1;;;24022:49:0;;39680:10;24098:55;;513:18:1;24098:55:0;;;;;;;23853:308;;:::o;24960:396::-;25127:28;25137:4;25143:2;25147:7;25127:9;:28::i;:::-;-1:-1:-1;;;;;25170:14:0;;;:19;25166:183;;25209:56;25240:4;25246:2;25250:7;25259:5;25209:30;:56::i;:::-;25204:145;;25293:40;;-1:-1:-1;;;25293:40:0;;;;;;;;;;;25204:145;24960:396;;;;:::o;44783:122::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44860:27:::1;:37:::0;44783:122::o;44549:104::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44617:18:::1;:28:::0;44549:104::o;21853:318::-;21926:13;21957:16;21965:7;21957;:16::i;:::-;21952:59;;21982:29;;-1:-1:-1;;;21982:29:0;;;;;;;;;;;21952:59;22024:21;22048:10;:8;:10::i;:::-;22024:34;;22082:7;22076:21;22101:1;22076:26;:87;;;;;;;;;;;;;;;;;22129:7;22138:18;22148:7;22138:9;:18::i;:::-;22112:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22076:87;22069:94;21853:318;-1:-1:-1;;;21853:318:0:o;44251:290::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;44355:1:::1;44344:8;:12;44328:65;;;::::0;-1:-1:-1;;;44328:65:0;;10344:2:1;44328:65:0::1;::::0;::::1;10326:21:1::0;10383:2;10363:18;;;10356:30;-1:-1:-1;;;10402:18:1;;;10395:49;10461:18;;44328:65:0::1;10142:343:1::0;44328:65:0::1;44444:9;;44432:8;44416:13;15816:12:::0;;15800:13;;:28;;15550:315;44416:13:::1;:24;;;;:::i;:::-;:37;;44400:94;;;::::0;-1:-1:-1;;;44400:94:0;;10692:2:1;44400:94:0::1;::::0;::::1;10674:21:1::0;10731:2;10711:18;;;10704:30;10770:25;10750:18;;;10743:53;10813:18;;44400:94:0::1;10490:347:1::0;44400:94:0::1;44501:31;44511:10;44523:8;44501:9;:31::i;2864:201::-:0;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;39680:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;11044:2:1;2945:73:0::1;::::0;::::1;11026:21:1::0;11083:2;11063:18;;;11056:30;11122:34;11102:18;;;11095:62;-1:-1:-1;;;11173:18:1;;;11166:36;11219:19;;2945:73:0::1;10842:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;25611:273::-:0;25668:4;25758:13;;25748:7;:23;25705:152;;;;-1:-1:-1;;25809:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25809:43:0;:48;;25611:273::o;18813:1129::-;18880:7;18915;19017:13;;19010:4;:20;19006:869;;;19055:14;19072:23;;;:17;:23;;;;;;;-1:-1:-1;;;19161:23:0;;:28;;19157:699;;19680:113;19687:6;19697:1;19687:11;19680:113;;-1:-1:-1;;;19758:6:0;19740:25;;;;:17;:25;;;;;;19680:113;;19157:699;19032:843;19006:869;19903:31;;-1:-1:-1;;;19903:31:0;;;;;;;;;;;30850:2515;30965:27;30995;31014:7;30995:18;:27::i;:::-;30965:57;;31080:4;-1:-1:-1;;;;;31039:45:0;31055:19;-1:-1:-1;;;;;31039:45:0;;31035:86;;31093:28;;-1:-1:-1;;;31093:28:0;;;;;;;;;;;31035:86;31134:22;39680:10;-1:-1:-1;;;;;31160:27:0;;;;:87;;-1:-1:-1;31204:43:0;31221:4;39680:10;24232:164;:::i;31204:43::-;31160:147;;;-1:-1:-1;39680:10:0;31264:20;31276:7;31264:11;:20::i;:::-;-1:-1:-1;;;;;31264:43:0;;31160:147;31134:174;;31326:17;31321:66;;31352:35;;-1:-1:-1;;;31352:35:0;;;;;;;;;;;31321:66;-1:-1:-1;;;;;31402:16:0;;31398:52;;31427:23;;-1:-1:-1;;;31427:23:0;;;;;;;;;;;31398:52;31579:24;;;;:15;:24;;;;;;;;31572:31;;-1:-1:-1;;;;;;31572:31:0;;;-1:-1:-1;;;;;31971:24:0;;;;;:18;:24;;;;;31969:26;;-1:-1:-1;;31969:26:0;;;32040:22;;;;;;;32038:24;;-1:-1:-1;32038:24:0;;;32333:26;;;:17;:26;;;;;-1:-1:-1;;;32421:15:0;13168:3;32421:41;32379:84;;:128;;32333:174;;;32627:46;;:51;;32623:626;;32731:1;32721:11;;32699:19;32854:30;;;:17;:30;;;;;;:35;;32850:384;;32992:13;;32977:11;:28;32973:242;;33139:30;;;;:17;:30;;;;;:52;;;32973:242;32680:569;32623:626;33296:7;33292:2;-1:-1:-1;;;;;33277:27:0;33286:4;-1:-1:-1;;;;;33277:27:0;;;;;;;;;;;30954:2411;;30850:2515;;;:::o;3225:191::-;3299:16;3318:6;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;3368:40;;3318:6;;;;;;;3368:40;;3299:16;3368:40;3288:128;3225:191;:::o;25968:104::-;26037:27;26047:2;26051:8;26037:27;;;;;;;;;;;;:9;:27::i;37062:716::-;37246:88;;-1:-1:-1;;;37246:88:0;;37225:4;;-1:-1:-1;;;;;37246:45:0;;;;;:88;;39680:10;;37313:4;;37319:7;;37328:5;;37246:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37246:88:0;;;;;;;;-1:-1:-1;;37246:88:0;;;;;;;;;;;;:::i;:::-;;;37242:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37529:6;:13;37546:1;37529:18;37525:235;;37575:40;;-1:-1:-1;;;37575:40:0;;;;;;;;;;;37525:235;37718:6;37712:13;37703:6;37699:2;37695:15;37688:38;37242:529;-1:-1:-1;;;;;;37405:64:0;-1:-1:-1;;;37405:64:0;;-1:-1:-1;37062:716:0;;;;;;:::o;45119:114::-;45179:13;45212;45205:20;;;;;:::i;39804:1959::-;40275:4;40269:11;;40282:3;40265:21;;40360:17;;;;41057:11;;;40936:5;41189:2;41203;41193:13;;41185:22;41057:11;41172:36;41244:2;41234:13;;40827:682;41263:4;40827:682;;;41438:1;41433:3;41429:11;41422:18;;41489:2;41483:4;41479:13;41475:2;41471:22;41466:3;41458:36;41359:2;41349:13;;40827:682;;;-1:-1:-1;41551:13:0;;;-1:-1:-1;;41666:12:0;;;41726:19;;;41666:12;39804:1959;-1:-1:-1;39804:1959:0:o;26445:2236::-;26591:13;;-1:-1:-1;;;;;26619:16:0;;26615:48;;26644:19;;-1:-1:-1;;;26644:19:0;;;;;;;;;;;26615:48;26678:8;26690:1;26678:13;26674:44;;26700:18;;-1:-1:-1;;;26700:18:0;;;;;;;;;;;26674:44;-1:-1:-1;;;;;27267:22:0;;;;;;:18;:22;;;;12651:2;27267:22;;;:70;;27305:31;27293:44;;27267:70;;;27580:31;;;:17;:31;;;;;27673:15;13168:3;27673:41;27631:84;;-1:-1:-1;27751:13:0;;13431:3;27736:56;27631:162;27580:213;;:31;;27874:23;;;;27918:14;:19;27914:635;;27958:313;27989:38;;28014:12;;-1:-1:-1;;;;;27989:38:0;;;28006:1;;27989:38;;28006:1;;27989:38;28055:69;28094:1;28098:2;28102:14;;;;;;28118:5;28055:30;:69::i;:::-;28050:174;;28160:40;;-1:-1:-1;;;28160:40:0;;;;;;;;;;;28050:174;28266:3;28251:12;:18;27958:313;;28352:12;28335:13;;:29;28331:43;;28366:8;;;28331:43;27914:635;;;28415:119;28446:40;;28471:14;;;;;-1:-1:-1;;;;;28446:40:0;;;28463:1;;28446:40;;28463:1;;28446:40;28529:3;28514:12;:18;28415:119;;27914:635;-1:-1:-1;28563:13:0;:28;28613:60;28642:1;28646:2;28650:12;28664:8;28613:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;5368:380::-;5447:1;5443:12;;;;5490;;;5511:61;;5565:4;5557:6;5553:17;5543:27;;5511:61;5618:2;5610:6;5607:14;5587:18;5584:38;5581:161;;5664:10;5659:3;5655:20;5652:1;5645:31;5699:4;5696:1;5689:15;5727:4;5724:1;5717:15;5581:161;;5368:380;;;:::o;5753:356::-;5955:2;5937:21;;;5974:18;;;5967:30;6033:34;6028:2;6013:18;;6006:62;6100:2;6085:18;;5753:356::o;7362:127::-;7423:10;7418:3;7414:20;7411:1;7404:31;7454:4;7451:1;7444:15;7478:4;7475:1;7468:15;7494:128;7534:3;7565:1;7561:6;7558:1;7555:13;7552:39;;;7571:18;;:::i;:::-;-1:-1:-1;7607:9:1;;7494:128::o;8389:168::-;8429:7;8495:1;8491;8487:6;8483:14;8480:1;8477:21;8472:1;8465:9;8458:17;8454:45;8451:71;;;8502:18;;:::i;:::-;-1:-1:-1;8542:9:1;;8389:168::o;9667:470::-;9846:3;9884:6;9878:13;9900:53;9946:6;9941:3;9934:4;9926:6;9922:17;9900:53;:::i;:::-;10016:13;;9975:16;;;;10038:57;10016:13;9975:16;10072:4;10060:17;;10038:57;:::i;:::-;10111:20;;9667:470;-1:-1:-1;;;;9667:470:1:o;11249:489::-;-1:-1:-1;;;;;11518:15:1;;;11500:34;;11570:15;;11565:2;11550:18;;11543:43;11617:2;11602:18;;11595:34;;;11665:3;11660:2;11645:18;;11638:31;;;11443:4;;11686:46;;11712:19;;11704:6;11686:46;:::i;:::-;11678:54;11249:489;-1:-1:-1;;;;;;11249:489:1:o;11743:249::-;11812:6;11865:2;11853:9;11844:7;11840:23;11836:32;11833:52;;;11881:1;11878;11871:12;11833:52;11913:9;11907:16;11932:30;11956:5;11932:30;:::i
Swarm Source
ipfs://994d112eed9fdc509515e8fa7c79ac37ad3efb2e20fb89947455f3bad19b70c8
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.