Overview
TokenID
164
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
YouDuck
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-03-09 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.28; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface 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); } interface IERC2981 is IERC165 { /// ERC165 bytes to add to interface array - set in parent contract /// implementing this standard /// /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a; /// _registerInterface(_INTERFACE_ID_ERC2981); /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param _tokenId - the NFT asset queried for royalty information /// @param _salePrice - the sale price of the NFT asset specified by _tokenId /// @return receiver - address of who should be sent the royalty payment /// @return royaltyAmount - the royalty payment amount for _salePrice function royaltyInfo( uint256 _tokenId, uint256 _salePrice ) external view returns ( address receiver, uint256 royaltyAmount ); } contract YouDuck is IERC721A { using SafeMath for uint256; address private _owner; function owner() public view returns(address){ return _owner; } mapping(address=>uint256) minted; uint256 public constant MAX_SUPPLY = 1111; uint256 public constant MAX_PER_WALLET = 5; uint256 public constant MAX_FREE_PER_WALLET = 0; uint256 public constant MAX_FREE = 0; uint256 public constant COST = 0.45 ether; string private constant _name = "YouDuck"; string private constant _symbol = "YouDuck"; string private _baseURI = "QmeuVuNY8uxvTiu9i2Bie9ELjtV8hM8GAtXkkMTg3DcwtH"; constructor() { _owner = msg.sender; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(amount*COST <= msg.value, "Value to Low"); //minted[msg.sender] += amount; _mint(_caller, amount); } function freemint() external nob{ address _caller = _msgSenderERC721A(); uint256 amount = 1; require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(totalSupply() + amount <= MAX_FREE, "Value to Low"); require(minted[_caller]+amount <= MAX_FREE_PER_WALLET, "Value to Low"); minted[_caller] += amount; _mint(_caller, amount); } function freemint(address to) external nob{ address _caller = _msgSenderERC721A(); uint256 amount = 1; require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(totalSupply() + amount <= MAX_FREE, "Max reached."); require(minted[_caller]+amount <= MAX_FREE_PER_WALLET, "Max reached."); require(minted[to]+amount <= MAX_FREE_PER_WALLET, "Max reached."); minted[_caller] += amount; minted[to] += amount; _mint(_caller, amount); } // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; uint256 private constant BITPOS_NUMBER_MINTED = 64; uint256 private constant BITPOS_NUMBER_BURNED = 128; uint256 private constant BITPOS_AUX = 192; uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; uint256 private constant BITPOS_START_TIMESTAMP = 160; uint256 private constant BITMASK_BURNED = 1 << 224; uint256 private constant BITPOS_NEXT_INITIALIZED = 225; uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; uint256 private _currentIndex = 0; // 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; function royaltyInfo(uint256, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) { receiver = _owner; royaltyAmount = (salePrice * 500) / 10000; // Calculate royalty based on sale price } function setData(string memory _base) external onlyOwner{ _baseURI = _base; } /** * @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 - _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 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 == 0x2a55205a || // ERC Royalties interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 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 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); } /** * 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; } 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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : ""; } /** * @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(); 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); } /** * @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; } /** * @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 (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // 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(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { 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 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) } } function teamMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < MAX_SUPPLY, "Must be below Max Supply"); _mint(msg.sender, amount); } modifier onlyOwner() { require(_owner==msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin==msg.sender, "no Script"); _; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; address payable recipient = payable(msg.sender); recipient.call{value:balance, gas:30000}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freemint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280602e8152602001612ee1602e91396002908161002b91906102bd565b505f60035534801561003b575f5ffd5b50335f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061038c565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806100fb57607f821691505b60208210810361010e5761010d6100b7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026101707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610135565b61017a8683610135565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101be6101b96101b484610192565b61019b565b610192565b9050919050565b5f819050919050565b6101d7836101a4565b6101eb6101e3826101c5565b848454610141565b825550505050565b5f5f905090565b6102026101f3565b61020d8184846101ce565b505050565b5b81811015610230576102255f826101fa565b600181019050610213565b5050565b601f8211156102755761024681610114565b61024f84610126565b8101602085101561025e578190505b61027261026a85610126565b830182610212565b50505b505050565b5f82821c905092915050565b5f6102955f198460080261027a565b1980831691505092915050565b5f6102ad8383610286565b9150826002028217905092915050565b6102c682610080565b67ffffffffffffffff8111156102df576102de61008a565b5b6102e982546100e4565b6102f4828285610234565b5f60209050601f831160018114610325575f8415610313578287015190505b61031d85826102a2565b865550610384565b601f19841661033386610114565b5f5b8281101561035a57848901518255600182019150602085019450602081019050610335565b868310156103775784890151610373601f891682610286565b8355505b6001600288020188555050505b505050505050565b612b48806103995f395ff3fe60806040526004361061019b575f3560e01c80636352211e116100eb578063b88d4fde11610089578063e985e9c511610063578063e985e9c5146105a2578063ed6661c2146105de578063f2c05b2e14610608578063f9cb63ac146106305761019b565b8063b88d4fde14610514578063bf8fbbd21461053c578063c87b56dd146105665761019b565b806395d89b41116100c557806395d89b411461047c57806398710d1e146104a6578063a0712d68146104d0578063a22cb465146104ec5761019b565b80636352211e146103da57806370a08231146104165780638da5cb5b146104525761019b565b806323b872dd1161015857806332cb6b0c1161013257806332cb6b0c1461034a5780633ccfd60b1461037457806342842e0e1461038a57806347064d6a146103b25761019b565b806323b872dd146102bd5780632a55205a146102e55780632fbba115146103225761019b565b806301ffc9a71461019f57806306fdde03146101db578063081812fc14610205578063095ea7b3146102415780630f2cdd6c1461026957806318160ddd14610293575b5f5ffd5b3480156101aa575f5ffd5b506101c560048036038101906101c09190611cf0565b610646565b6040516101d29190611d35565b60405180910390f35b3480156101e6575f5ffd5b506101ef610707565b6040516101fc9190611dbe565b60405180910390f35b348015610210575f5ffd5b5061022b60048036038101906102269190611e11565b610744565b6040516102389190611e7b565b60405180910390f35b34801561024c575f5ffd5b5061026760048036038101906102629190611ebe565b6107bc565b005b348015610274575f5ffd5b5061027d610930565b60405161028a9190611f0b565b60405180910390f35b34801561029e575f5ffd5b506102a7610935565b6040516102b49190611f0b565b60405180910390f35b3480156102c8575f5ffd5b506102e360048036038101906102de9190611f24565b610947565b005b3480156102f0575f5ffd5b5061030b60048036038101906103069190611f74565b610957565b604051610319929190611fb2565b60405180910390f35b34801561032d575f5ffd5b5061034860048036038101906103439190611e11565b6109a0565b005b348015610355575f5ffd5b5061035e610a91565b60405161036b9190611f0b565b60405180910390f35b34801561037f575f5ffd5b50610388610a97565b005b348015610395575f5ffd5b506103b060048036038101906103ab9190611f24565b610b9c565b005b3480156103bd575f5ffd5b506103d860048036038101906103d39190612105565b610bbb565b005b3480156103e5575f5ffd5b5061040060048036038101906103fb9190611e11565b610c5c565b60405161040d9190611e7b565b60405180910390f35b348015610421575f5ffd5b5061043c6004803603810190610437919061214c565b610c6d565b6040516104499190611f0b565b60405180910390f35b34801561045d575f5ffd5b50610466610cfe565b6040516104739190611e7b565b60405180910390f35b348015610487575f5ffd5b50610490610d25565b60405161049d9190611dbe565b60405180910390f35b3480156104b1575f5ffd5b506104ba610d62565b6040516104c79190611f0b565b60405180910390f35b6104ea60048036038101906104e59190611e11565b610d66565b005b3480156104f7575f5ffd5b50610512600480360381019061050d91906121a1565b610e2c565b005b34801561051f575f5ffd5b5061053a6004803603810190610535919061227d565b610f9e565b005b348015610547575f5ffd5b50610550610faf565b60405161055d9190611f0b565b60405180910390f35b348015610571575f5ffd5b5061058c60048036038101906105879190611e11565b610fbb565b6040516105999190611dbe565b60405180910390f35b3480156105ad575f5ffd5b506105c860048036038101906105c391906122fd565b6110d7565b6040516105d59190611d35565b60405180910390f35b3480156105e9575f5ffd5b506105f2611165565b6040516105ff9190611f0b565b60405180910390f35b348015610613575f5ffd5b5061062e6004803603810190610629919061214c565b611169565b005b34801561063b575f5ffd5b5061064461145e565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d05750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107005750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600781526020017f596f754475636b00000000000000000000000000000000000000000000000000815250905090565b5f61074e82611674565b610784576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6107c682611694565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ff575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff1661081e611758565b73ffffffffffffffffffffffffffffffffffffffff16146108815761084a81610845611758565b6110d7565b610880576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600581565b5f61093e61175f565b60035403905090565b610952838383611766565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f48461098d9190612368565b61099791906123d6565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590612450565b60405180910390fd5b61045781610a3a610935565b610a44919061246e565b10610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b906124eb565b60405180910390fd5b610a8e3382611ac3565b50565b61045781565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90612450565b60405180910390fd5b5f4790505f3390508073ffffffffffffffffffffffffffffffffffffffff168261753090604051610b5590612536565b5f60405180830381858888f193505050503d805f8114610b90576040519150601f19603f3d011682016040523d82523d5f602084013e610b95565b606091505b5050505050565b610bb683838360405180602001604052805f815250610f9e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612450565b60405180910390fd5b8060029081610c589190612747565b5050565b5f610c6682611694565b9050919050565b5f5f610c7883611c18565b03610caf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f596f754475636b00000000000000000000000000000000000000000000000000815250905090565b5f81565b5f610d6f611758565b905061045782610d7d610935565b610d87919061246e565b1115610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90612860565b60405180910390fd5b3467063eb89da4ed000083610ddd9190612368565b1115610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e15906128c8565b60405180910390fd5b610e288183611ac3565b5050565b610e34611758565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e98576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610ea4611758565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4d611758565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f929190611d35565b60405180910390a35050565b610fa9848484611766565b50505050565b67063eb89da4ed000081565b6060610fc682611674565b610ffc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6002805461100a90612577565b80601f016020809104026020016040519081016040528092919081815260200182805461103690612577565b80156110815780601f1061105857610100808354040283529160200191611081565b820191905f5260205f20905b81548152906001019060200180831161106457829003601f168201915b505050505090505f8151036110a45760405180602001604052805f8152506110cf565b806110ae84611c21565b6040516020016110bf9291906129fe565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f81565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90612a8c565b60405180910390fd5b5f6111e0611758565b90505f60019050610457816111f3610935565b6111fd919061246e565b111561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590612860565b60405180910390fd5b5f81611248610935565b611252919061246e565b1115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90612af4565b60405180910390fd5b5f8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112dd919061246e565b111561131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590612af4565b60405180910390fd5b5f8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611368919061246e565b11156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090612af4565b60405180910390fd5b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113f5919061246e565b925050819055508060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611448919061246e565b925050819055506114598282611ac3565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390612a8c565b60405180910390fd5b5f6114d5611758565b90505f60019050610457816114e8610935565b6114f2919061246e565b1115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90612860565b60405180910390fd5b5f8161153d610935565b611547919061246e565b1115611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906128c8565b60405180910390fd5b5f8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115d2919061246e565b1115611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a906128c8565b60405180910390fd5b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461165f919061246e565b925050819055506116708282611ac3565b5050565b5f8161167e61175f565b1115801561168d575060035482105b9050919050565b5f5f829050806116a261175f565b1161172157600354811015611720575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361171e575b5f81036117145760045f836001900393508381526020019081526020015f205490506116ed565b8092505050611753565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61177082611694565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117d7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff1661182b611758565b73ffffffffffffffffffffffffffffffffffffffff16148061185a575061185986611854611758565b6110d7565b5b806118975750611868611758565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806118d0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6118da83611c18565b146119135760065f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6119d487611c18565b171760045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611a53575f6001850190505f60045f8381526020019081526020015f205403611a51576003548114611a50578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611abb8686866001611c7b565b505050505050565b5f60035490505f8203611b02576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e1611b6460018414611c81565b901b60a042901b611b7485611c18565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611b9657816003819055505050611c135f848385611c7b565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c6757600183039250600a81066030018353600a81049050611c47565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ccf81611c9b565b8114611cd9575f5ffd5b50565b5f81359050611cea81611cc6565b92915050565b5f60208284031215611d0557611d04611c93565b5b5f611d1284828501611cdc565b91505092915050565b5f8115159050919050565b611d2f81611d1b565b82525050565b5f602082019050611d485f830184611d26565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611d9082611d4e565b611d9a8185611d58565b9350611daa818560208601611d68565b611db381611d76565b840191505092915050565b5f6020820190508181035f830152611dd68184611d86565b905092915050565b5f819050919050565b611df081611dde565b8114611dfa575f5ffd5b50565b5f81359050611e0b81611de7565b92915050565b5f60208284031215611e2657611e25611c93565b5b5f611e3384828501611dfd565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e6582611e3c565b9050919050565b611e7581611e5b565b82525050565b5f602082019050611e8e5f830184611e6c565b92915050565b611e9d81611e5b565b8114611ea7575f5ffd5b50565b5f81359050611eb881611e94565b92915050565b5f5f60408385031215611ed457611ed3611c93565b5b5f611ee185828601611eaa565b9250506020611ef285828601611dfd565b9150509250929050565b611f0581611dde565b82525050565b5f602082019050611f1e5f830184611efc565b92915050565b5f5f5f60608486031215611f3b57611f3a611c93565b5b5f611f4886828701611eaa565b9350506020611f5986828701611eaa565b9250506040611f6a86828701611dfd565b9150509250925092565b5f5f60408385031215611f8a57611f89611c93565b5b5f611f9785828601611dfd565b9250506020611fa885828601611dfd565b9150509250929050565b5f604082019050611fc55f830185611e6c565b611fd26020830184611efc565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61201782611d76565b810181811067ffffffffffffffff8211171561203657612035611fe1565b5b80604052505050565b5f612048611c8a565b9050612054828261200e565b919050565b5f67ffffffffffffffff82111561207357612072611fe1565b5b61207c82611d76565b9050602081019050919050565b828183375f83830152505050565b5f6120a96120a484612059565b61203f565b9050828152602081018484840111156120c5576120c4611fdd565b5b6120d0848285612089565b509392505050565b5f82601f8301126120ec576120eb611fd9565b5b81356120fc848260208601612097565b91505092915050565b5f6020828403121561211a57612119611c93565b5b5f82013567ffffffffffffffff81111561213757612136611c97565b5b612143848285016120d8565b91505092915050565b5f6020828403121561216157612160611c93565b5b5f61216e84828501611eaa565b91505092915050565b61218081611d1b565b811461218a575f5ffd5b50565b5f8135905061219b81612177565b92915050565b5f5f604083850312156121b7576121b6611c93565b5b5f6121c485828601611eaa565b92505060206121d58582860161218d565b9150509250929050565b5f67ffffffffffffffff8211156121f9576121f8611fe1565b5b61220282611d76565b9050602081019050919050565b5f61222161221c846121df565b61203f565b90508281526020810184848401111561223d5761223c611fdd565b5b612248848285612089565b509392505050565b5f82601f83011261226457612263611fd9565b5b813561227484826020860161220f565b91505092915050565b5f5f5f5f6080858703121561229557612294611c93565b5b5f6122a287828801611eaa565b94505060206122b387828801611eaa565b93505060406122c487828801611dfd565b925050606085013567ffffffffffffffff8111156122e5576122e4611c97565b5b6122f187828801612250565b91505092959194509250565b5f5f6040838503121561231357612312611c93565b5b5f61232085828601611eaa565b925050602061233185828601611eaa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61237282611dde565b915061237d83611dde565b925082820261238b81611dde565b915082820484148315176123a2576123a161233b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6123e082611dde565b91506123eb83611dde565b9250826123fb576123fa6123a9565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f61243a600983611d58565b915061244582612406565b602082019050919050565b5f6020820190508181035f8301526124678161242e565b9050919050565b5f61247882611dde565b915061248383611dde565b925082820190508082111561249b5761249a61233b565b5b92915050565b7f4d7573742062652062656c6f77204d617820537570706c7900000000000000005f82015250565b5f6124d5601883611d58565b91506124e0826124a1565b602082019050919050565b5f6020820190508181035f830152612502816124c9565b9050919050565b5f81905092915050565b50565b5f6125215f83612509565b915061252c82612513565b5f82019050919050565b5f61254082612516565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061258e57607f821691505b6020821081036125a1576125a061254a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026126037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125c8565b61260d86836125c8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61264861264361263e84611dde565b612625565b611dde565b9050919050565b5f819050919050565b6126618361262e565b61267561266d8261264f565b8484546125d4565b825550505050565b5f5f905090565b61268c61267d565b612697818484612658565b505050565b5b818110156126ba576126af5f82612684565b60018101905061269d565b5050565b601f8211156126ff576126d0816125a7565b6126d9846125b9565b810160208510156126e8578190505b6126fc6126f4856125b9565b83018261269c565b50505b505050565b5f82821c905092915050565b5f61271f5f1984600802612704565b1980831691505092915050565b5f6127378383612710565b9150826002028217905092915050565b61275082611d4e565b67ffffffffffffffff81111561276957612768611fe1565b5b6127738254612577565b61277e8282856126be565b5f60209050601f8311600181146127af575f841561279d578287015190505b6127a7858261272c565b86555061280e565b601f1984166127bd866125a7565b5f5b828110156127e4578489015182556001820191506020850194506020810190506127bf565b8683101561280157848901516127fd601f891682612710565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f61284a600883611d58565b915061285582612816565b602082019050919050565b5f6020820190508181035f8301526128778161283e565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6128b2600c83611d58565b91506128bd8261287e565b602082019050919050565b5f6020820190508181035f8301526128df816128a6565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6129246007836128e6565b915061292f826128f0565b600782019050919050565b5f61294482611d4e565b61294e81856128e6565b935061295e818560208601611d68565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f61299e6001836128e6565b91506129a98261296a565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6129e86005836128e6565b91506129f3826129b4565b600582019050919050565b5f612a0882612918565b9150612a14828561293a565b9150612a1f82612992565b9150612a2b828461293a565b9150612a36826129dc565b91508190509392505050565b7f6e6f2053637269707400000000000000000000000000000000000000000000005f82015250565b5f612a76600983611d58565b9150612a8182612a42565b602082019050919050565b5f6020820190508181035f830152612aa381612a6a565b9050919050565b7f4d617820726561636865642e00000000000000000000000000000000000000005f82015250565b5f612ade600c83611d58565b9150612ae982612aaa565b602082019050919050565b5f6020820190508181035f830152612b0b81612ad2565b905091905056fea26469706673582212207f6098a0e9dab06ae18bfd4dcf48f4356d878b571b0cf55f1c972cc1a827126f64736f6c634300081c0033516d657556754e593875787654697539693242696539454c6a745638684d38474174586b6b4d5467334463777448
Deployed Bytecode
0x60806040526004361061019b575f3560e01c80636352211e116100eb578063b88d4fde11610089578063e985e9c511610063578063e985e9c5146105a2578063ed6661c2146105de578063f2c05b2e14610608578063f9cb63ac146106305761019b565b8063b88d4fde14610514578063bf8fbbd21461053c578063c87b56dd146105665761019b565b806395d89b41116100c557806395d89b411461047c57806398710d1e146104a6578063a0712d68146104d0578063a22cb465146104ec5761019b565b80636352211e146103da57806370a08231146104165780638da5cb5b146104525761019b565b806323b872dd1161015857806332cb6b0c1161013257806332cb6b0c1461034a5780633ccfd60b1461037457806342842e0e1461038a57806347064d6a146103b25761019b565b806323b872dd146102bd5780632a55205a146102e55780632fbba115146103225761019b565b806301ffc9a71461019f57806306fdde03146101db578063081812fc14610205578063095ea7b3146102415780630f2cdd6c1461026957806318160ddd14610293575b5f5ffd5b3480156101aa575f5ffd5b506101c560048036038101906101c09190611cf0565b610646565b6040516101d29190611d35565b60405180910390f35b3480156101e6575f5ffd5b506101ef610707565b6040516101fc9190611dbe565b60405180910390f35b348015610210575f5ffd5b5061022b60048036038101906102269190611e11565b610744565b6040516102389190611e7b565b60405180910390f35b34801561024c575f5ffd5b5061026760048036038101906102629190611ebe565b6107bc565b005b348015610274575f5ffd5b5061027d610930565b60405161028a9190611f0b565b60405180910390f35b34801561029e575f5ffd5b506102a7610935565b6040516102b49190611f0b565b60405180910390f35b3480156102c8575f5ffd5b506102e360048036038101906102de9190611f24565b610947565b005b3480156102f0575f5ffd5b5061030b60048036038101906103069190611f74565b610957565b604051610319929190611fb2565b60405180910390f35b34801561032d575f5ffd5b5061034860048036038101906103439190611e11565b6109a0565b005b348015610355575f5ffd5b5061035e610a91565b60405161036b9190611f0b565b60405180910390f35b34801561037f575f5ffd5b50610388610a97565b005b348015610395575f5ffd5b506103b060048036038101906103ab9190611f24565b610b9c565b005b3480156103bd575f5ffd5b506103d860048036038101906103d39190612105565b610bbb565b005b3480156103e5575f5ffd5b5061040060048036038101906103fb9190611e11565b610c5c565b60405161040d9190611e7b565b60405180910390f35b348015610421575f5ffd5b5061043c6004803603810190610437919061214c565b610c6d565b6040516104499190611f0b565b60405180910390f35b34801561045d575f5ffd5b50610466610cfe565b6040516104739190611e7b565b60405180910390f35b348015610487575f5ffd5b50610490610d25565b60405161049d9190611dbe565b60405180910390f35b3480156104b1575f5ffd5b506104ba610d62565b6040516104c79190611f0b565b60405180910390f35b6104ea60048036038101906104e59190611e11565b610d66565b005b3480156104f7575f5ffd5b50610512600480360381019061050d91906121a1565b610e2c565b005b34801561051f575f5ffd5b5061053a6004803603810190610535919061227d565b610f9e565b005b348015610547575f5ffd5b50610550610faf565b60405161055d9190611f0b565b60405180910390f35b348015610571575f5ffd5b5061058c60048036038101906105879190611e11565b610fbb565b6040516105999190611dbe565b60405180910390f35b3480156105ad575f5ffd5b506105c860048036038101906105c391906122fd565b6110d7565b6040516105d59190611d35565b60405180910390f35b3480156105e9575f5ffd5b506105f2611165565b6040516105ff9190611f0b565b60405180910390f35b348015610613575f5ffd5b5061062e6004803603810190610629919061214c565b611169565b005b34801561063b575f5ffd5b5061064461145e565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d05750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107005750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600781526020017f596f754475636b00000000000000000000000000000000000000000000000000815250905090565b5f61074e82611674565b610784576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6107c682611694565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ff575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff1661081e611758565b73ffffffffffffffffffffffffffffffffffffffff16146108815761084a81610845611758565b6110d7565b610880576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600581565b5f61093e61175f565b60035403905090565b610952838383611766565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f48461098d9190612368565b61099791906123d6565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590612450565b60405180910390fd5b61045781610a3a610935565b610a44919061246e565b10610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b906124eb565b60405180910390fd5b610a8e3382611ac3565b50565b61045781565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90612450565b60405180910390fd5b5f4790505f3390508073ffffffffffffffffffffffffffffffffffffffff168261753090604051610b5590612536565b5f60405180830381858888f193505050503d805f8114610b90576040519150601f19603f3d011682016040523d82523d5f602084013e610b95565b606091505b5050505050565b610bb683838360405180602001604052805f815250610f9e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612450565b60405180910390fd5b8060029081610c589190612747565b5050565b5f610c6682611694565b9050919050565b5f5f610c7883611c18565b03610caf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f596f754475636b00000000000000000000000000000000000000000000000000815250905090565b5f81565b5f610d6f611758565b905061045782610d7d610935565b610d87919061246e565b1115610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90612860565b60405180910390fd5b3467063eb89da4ed000083610ddd9190612368565b1115610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e15906128c8565b60405180910390fd5b610e288183611ac3565b5050565b610e34611758565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e98576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610ea4611758565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4d611758565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f929190611d35565b60405180910390a35050565b610fa9848484611766565b50505050565b67063eb89da4ed000081565b6060610fc682611674565b610ffc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6002805461100a90612577565b80601f016020809104026020016040519081016040528092919081815260200182805461103690612577565b80156110815780601f1061105857610100808354040283529160200191611081565b820191905f5260205f20905b81548152906001019060200180831161106457829003601f168201915b505050505090505f8151036110a45760405180602001604052805f8152506110cf565b806110ae84611c21565b6040516020016110bf9291906129fe565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f81565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90612a8c565b60405180910390fd5b5f6111e0611758565b90505f60019050610457816111f3610935565b6111fd919061246e565b111561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590612860565b60405180910390fd5b5f81611248610935565b611252919061246e565b1115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90612af4565b60405180910390fd5b5f8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112dd919061246e565b111561131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590612af4565b60405180910390fd5b5f8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611368919061246e565b11156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090612af4565b60405180910390fd5b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113f5919061246e565b925050819055508060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611448919061246e565b925050819055506114598282611ac3565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390612a8c565b60405180910390fd5b5f6114d5611758565b90505f60019050610457816114e8610935565b6114f2919061246e565b1115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90612860565b60405180910390fd5b5f8161153d610935565b611547919061246e565b1115611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906128c8565b60405180910390fd5b5f8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115d2919061246e565b1115611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a906128c8565b60405180910390fd5b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461165f919061246e565b925050819055506116708282611ac3565b5050565b5f8161167e61175f565b1115801561168d575060035482105b9050919050565b5f5f829050806116a261175f565b1161172157600354811015611720575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361171e575b5f81036117145760045f836001900393508381526020019081526020015f205490506116ed565b8092505050611753565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61177082611694565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117d7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff1661182b611758565b73ffffffffffffffffffffffffffffffffffffffff16148061185a575061185986611854611758565b6110d7565b5b806118975750611868611758565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806118d0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6118da83611c18565b146119135760065f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6119d487611c18565b171760045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611a53575f6001850190505f60045f8381526020019081526020015f205403611a51576003548114611a50578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611abb8686866001611c7b565b505050505050565b5f60035490505f8203611b02576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e1611b6460018414611c81565b901b60a042901b611b7485611c18565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611b9657816003819055505050611c135f848385611c7b565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c6757600183039250600a81066030018353600a81049050611c47565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ccf81611c9b565b8114611cd9575f5ffd5b50565b5f81359050611cea81611cc6565b92915050565b5f60208284031215611d0557611d04611c93565b5b5f611d1284828501611cdc565b91505092915050565b5f8115159050919050565b611d2f81611d1b565b82525050565b5f602082019050611d485f830184611d26565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611d9082611d4e565b611d9a8185611d58565b9350611daa818560208601611d68565b611db381611d76565b840191505092915050565b5f6020820190508181035f830152611dd68184611d86565b905092915050565b5f819050919050565b611df081611dde565b8114611dfa575f5ffd5b50565b5f81359050611e0b81611de7565b92915050565b5f60208284031215611e2657611e25611c93565b5b5f611e3384828501611dfd565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e6582611e3c565b9050919050565b611e7581611e5b565b82525050565b5f602082019050611e8e5f830184611e6c565b92915050565b611e9d81611e5b565b8114611ea7575f5ffd5b50565b5f81359050611eb881611e94565b92915050565b5f5f60408385031215611ed457611ed3611c93565b5b5f611ee185828601611eaa565b9250506020611ef285828601611dfd565b9150509250929050565b611f0581611dde565b82525050565b5f602082019050611f1e5f830184611efc565b92915050565b5f5f5f60608486031215611f3b57611f3a611c93565b5b5f611f4886828701611eaa565b9350506020611f5986828701611eaa565b9250506040611f6a86828701611dfd565b9150509250925092565b5f5f60408385031215611f8a57611f89611c93565b5b5f611f9785828601611dfd565b9250506020611fa885828601611dfd565b9150509250929050565b5f604082019050611fc55f830185611e6c565b611fd26020830184611efc565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61201782611d76565b810181811067ffffffffffffffff8211171561203657612035611fe1565b5b80604052505050565b5f612048611c8a565b9050612054828261200e565b919050565b5f67ffffffffffffffff82111561207357612072611fe1565b5b61207c82611d76565b9050602081019050919050565b828183375f83830152505050565b5f6120a96120a484612059565b61203f565b9050828152602081018484840111156120c5576120c4611fdd565b5b6120d0848285612089565b509392505050565b5f82601f8301126120ec576120eb611fd9565b5b81356120fc848260208601612097565b91505092915050565b5f6020828403121561211a57612119611c93565b5b5f82013567ffffffffffffffff81111561213757612136611c97565b5b612143848285016120d8565b91505092915050565b5f6020828403121561216157612160611c93565b5b5f61216e84828501611eaa565b91505092915050565b61218081611d1b565b811461218a575f5ffd5b50565b5f8135905061219b81612177565b92915050565b5f5f604083850312156121b7576121b6611c93565b5b5f6121c485828601611eaa565b92505060206121d58582860161218d565b9150509250929050565b5f67ffffffffffffffff8211156121f9576121f8611fe1565b5b61220282611d76565b9050602081019050919050565b5f61222161221c846121df565b61203f565b90508281526020810184848401111561223d5761223c611fdd565b5b612248848285612089565b509392505050565b5f82601f83011261226457612263611fd9565b5b813561227484826020860161220f565b91505092915050565b5f5f5f5f6080858703121561229557612294611c93565b5b5f6122a287828801611eaa565b94505060206122b387828801611eaa565b93505060406122c487828801611dfd565b925050606085013567ffffffffffffffff8111156122e5576122e4611c97565b5b6122f187828801612250565b91505092959194509250565b5f5f6040838503121561231357612312611c93565b5b5f61232085828601611eaa565b925050602061233185828601611eaa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61237282611dde565b915061237d83611dde565b925082820261238b81611dde565b915082820484148315176123a2576123a161233b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6123e082611dde565b91506123eb83611dde565b9250826123fb576123fa6123a9565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f61243a600983611d58565b915061244582612406565b602082019050919050565b5f6020820190508181035f8301526124678161242e565b9050919050565b5f61247882611dde565b915061248383611dde565b925082820190508082111561249b5761249a61233b565b5b92915050565b7f4d7573742062652062656c6f77204d617820537570706c7900000000000000005f82015250565b5f6124d5601883611d58565b91506124e0826124a1565b602082019050919050565b5f6020820190508181035f830152612502816124c9565b9050919050565b5f81905092915050565b50565b5f6125215f83612509565b915061252c82612513565b5f82019050919050565b5f61254082612516565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061258e57607f821691505b6020821081036125a1576125a061254a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026126037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125c8565b61260d86836125c8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61264861264361263e84611dde565b612625565b611dde565b9050919050565b5f819050919050565b6126618361262e565b61267561266d8261264f565b8484546125d4565b825550505050565b5f5f905090565b61268c61267d565b612697818484612658565b505050565b5b818110156126ba576126af5f82612684565b60018101905061269d565b5050565b601f8211156126ff576126d0816125a7565b6126d9846125b9565b810160208510156126e8578190505b6126fc6126f4856125b9565b83018261269c565b50505b505050565b5f82821c905092915050565b5f61271f5f1984600802612704565b1980831691505092915050565b5f6127378383612710565b9150826002028217905092915050565b61275082611d4e565b67ffffffffffffffff81111561276957612768611fe1565b5b6127738254612577565b61277e8282856126be565b5f60209050601f8311600181146127af575f841561279d578287015190505b6127a7858261272c565b86555061280e565b601f1984166127bd866125a7565b5f5b828110156127e4578489015182556001820191506020850194506020810190506127bf565b8683101561280157848901516127fd601f891682612710565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f61284a600883611d58565b915061285582612816565b602082019050919050565b5f6020820190508181035f8301526128778161283e565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6128b2600c83611d58565b91506128bd8261287e565b602082019050919050565b5f6020820190508181035f8301526128df816128a6565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6129246007836128e6565b915061292f826128f0565b600782019050919050565b5f61294482611d4e565b61294e81856128e6565b935061295e818560208601611d68565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f61299e6001836128e6565b91506129a98261296a565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6129e86005836128e6565b91506129f3826129b4565b600582019050919050565b5f612a0882612918565b9150612a14828561293a565b9150612a1f82612992565b9150612a2b828461293a565b9150612a36826129dc565b91508190509392505050565b7f6e6f2053637269707400000000000000000000000000000000000000000000005f82015250565b5f612a76600983611d58565b9150612a8182612a42565b602082019050919050565b5f6020820190508181035f830152612aa381612a6a565b9050919050565b7f4d617820726561636865642e00000000000000000000000000000000000000005f82015250565b5f612ade600c83611d58565b9150612ae982612aaa565b602082019050919050565b5f6020820190508181035f830152612b0b81612ad2565b905091905056fea26469706673582212207f6098a0e9dab06ae18bfd4dcf48f4356d878b571b0cf55f1c972cc1a827126f64736f6c634300081c0033
Deployed Bytecode Sourcemap
16946:21745:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22230:674;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26492:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28157:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27640:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17219:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21473:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29043:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20478:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;38092:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17171:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38478:210;;;;;;;;;;;;;:::i;:::-;;29304:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20760:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26281:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22968:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17047:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26661:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17268:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17656:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28433;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29580:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17365:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26777:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28812:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17322:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18389:526;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17972:409;;;;;;;;;;;;;:::i;:::-;;22230:674;22315:4;22630:10;22615:25;;:11;:25;;;;:102;;;;22707:10;22692:25;;:11;:25;;;;22615:102;:179;;;;22784:10;22769:25;;:11;:25;;;;22615:179;:238;;;;22843:10;22828:25;;:11;:25;;;;22615:238;22595:258;;22230:674;;;:::o;26492:100::-;26546:13;26579:5;;;;;;;;;;;;;;;;;26572:12;;26492:100;:::o;28157:204::-;28225:7;28250:16;28258:7;28250;:16::i;:::-;28245:64;;28275:34;;;;;;;;;;;;;;28245:64;28329:15;:24;28345:7;28329:24;;;;;;;;;;;;;;;;;;;;;28322:31;;28157:204;;;:::o;27640:451::-;27713:13;27745:27;27764:7;27745:18;:27::i;:::-;27713:61;;27795:5;27789:11;;:2;:11;;;27785:25;;27802:8;;;27785:25;27850:5;27827:28;;:19;:17;:19::i;:::-;:28;;;27823:175;;27875:44;27892:5;27899:19;:17;:19::i;:::-;27875:16;:44::i;:::-;27870:128;;27947:35;;;;;;;;;;;;;;27870:128;27823:175;28037:2;28010:15;:24;28026:7;28010:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28075:7;28071:2;28055:28;;28064:5;28055:28;;;;;;;;;;;;27702:389;27640:451;;:::o;17219:42::-;17260:1;17219:42;:::o;21473:300::-;21526:7;21739:15;:13;:15::i;:::-;21723:13;;:31;21716:38;;21473:300;:::o;29043:190::-;29197:28;29207:4;29213:2;29217:7;29197:9;:28::i;:::-;29043:190;;;:::o;20478:274::-;20577:16;20595:21;20645:6;;;;;;;;;;;20634:17;;20698:5;20691:3;20679:9;:15;;;;:::i;:::-;20678:25;;;;:::i;:::-;20662:41;;20478:274;;;;;:::o;38092:179::-;38328:10;38320:18;;:6;;;;;;;;;;;:18;;;38312:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;17208:4:::1;38179:6;38163:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;38155:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;38238:25;38244:10;38256:6;38238:5;:25::i;:::-;38092:179:::0;:::o;17171:41::-;17208:4;17171:41;:::o;38478:210::-;38328:10;38320:18;;:6;;;;;;;;;;;:18;;;38312:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;38528:15:::1;38546:21;38528:39;;38578:25;38614:10;38578:47;;38636:9;:14;;38657:7;38670:5;38636:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38517:171;;38478:210::o:0;29304:205::-;29462:39;29479:4;29485:2;29489:7;29462:39;;;;;;;;;;;;:16;:39::i;:::-;29304:205;;;:::o;20760:91::-;38328:10;38320:18;;:6;;;;;;;;;;;:18;;;38312:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;20838:5:::1;20827:8;:16;;;;;;:::i;:::-;;20760:91:::0;:::o;26281:144::-;26345:7;26388:27;26407:7;26388:18;:27::i;:::-;26365:52;;26281:144;;;:::o;22968:234::-;23032:7;23084:1;23056:24;23074:5;23056:17;:24::i;:::-;:29;23052:70;;23094:28;;;;;;;;;;;;;;23052:70;19026:13;23140:18;:25;23159:5;23140:25;;;;;;;;;;;;;;;;:54;23133:61;;22968:234;;;:::o;17047:77::-;17084:7;17110:6;;;;;;;;;;;17103:13;;17047:77;:::o;26661:104::-;26717:13;26750:7;;;;;;;;;;;;;;;;;26743:14;;26661:104;:::o;17268:47::-;17314:1;17268:47;:::o;17656:308::-;17713:15;17731:19;:17;:19::i;:::-;17713:37;;17208:4;17787:6;17771:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;17763:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;17854:9;17396:10;17839:6;:11;;;;:::i;:::-;:24;;17831:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;17934:22;17940:7;17949:6;17934:5;:22::i;:::-;17702:262;17656:308;:::o;28433:::-;28544:19;:17;:19::i;:::-;28532:31;;:8;:31;;;28528:61;;28572:17;;;;;;;;;;;;;;28528:61;28654:8;28602:18;:39;28621:19;:17;:19::i;:::-;28602:39;;;;;;;;;;;;;;;:49;28642:8;28602:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28714:8;28678:55;;28693:19;:17;:19::i;:::-;28678:55;;;28724:8;28678:55;;;;;;:::i;:::-;;;;;;;;28433:308;;:::o;29580:227::-;29771:28;29781:4;29787:2;29791:7;29771:9;:28::i;:::-;29580:227;;;;:::o;17365:41::-;17396:10;17365:41;:::o;26777:339::-;26850:13;26881:16;26889:7;26881;:16::i;:::-;26876:59;;26906:29;;;;;;;;;;;;;;26876:59;26946:21;26970:8;26946:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27021:1;27002:7;26996:21;:26;:112;;;;;;;;;;;;;;;;;27060:7;27074:18;27084:7;27074:9;:18::i;:::-;27032:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26996:112;26989:119;;;26777:339;;;:::o;28812:164::-;28909:4;28933:18;:25;28952:5;28933:25;;;;;;;;;;;;;;;:35;28959:8;28933:35;;;;;;;;;;;;;;;;;;;;;;;;;28926:42;;28812:164;;;;:::o;17322:36::-;17357:1;17322:36;:::o;18389:526::-;38426:10;38415:21;;:9;:21;;;38407:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;18442:15:::1;18460:19;:17;:19::i;:::-;18442:37;;18490:14;18507:1;18490:18;;17208:4;18545:6;18529:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;18521:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;17357:1;18613:6;18597:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;18589:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;17314:1;18683:6;18667;:15;18674:7;18667:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;:45;;18659:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17314:1;18759:6;18748;:10;18755:2;18748:10;;;;;;;;;;;;;;;;:17;;;;:::i;:::-;:40;;18740:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18837:6;18818;:15;18825:7;18818:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;18868:6;18854;:10;18861:2;18854:10;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;18885:22;18891:7;18900:6;18885:5;:22::i;:::-;18431:484;;18389:526:::0;:::o;17972:409::-;38426:10;38415:21;;:9;:21;;;38407:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;18015:15:::1;18033:19;:17;:19::i;:::-;18015:37;;18063:14;18080:1;18063:18;;17208:4;18118:6;18102:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;18094:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;17357:1;18186:6;18170:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;18162:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;17314:1;18256:6;18240;:15;18247:7;18240:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;:45;;18232:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18334:6;18315;:15;18322:7;18315:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;18351:22;18357:7;18366:6;18351:5;:22::i;:::-;18004:377;;17972:409::o:0;30062:168::-;30119:4;30175:7;30156:15;:13;:15::i;:::-;:26;;:66;;;;;30209:13;;30199:7;:23;30156:66;30136:86;;30062:168;;;:::o;23796:1129::-;23863:7;23883:12;23898:7;23883:22;;23966:4;23947:15;:13;:15::i;:::-;:23;23943:915;;24000:13;;23993:4;:20;23989:869;;;24038:14;24055:17;:23;24073:4;24055:23;;;;;;;;;;;;24038:40;;24171:1;19382:8;24144:6;:23;:28;24140:699;;24663:113;24680:1;24670:6;:11;24663:113;;24723:17;:25;24741:6;;;;;;;24723:25;;;;;;;;;;;;24714:34;;24663:113;;;24809:6;24802:13;;;;;;24140:699;24015:843;23989:869;23943:915;24886:31;;;;;;;;;;;;;;23796:1129;;;;:::o;35991:105::-;36051:7;36078:10;36071:17;;35991:105;:::o;20996:92::-;21052:7;21079:1;21072:8;;20996:92;:::o;32347:2561::-;32488:27;32518;32537:7;32518:18;:27::i;:::-;32488:57;;32603:4;32562:45;;32578:19;32562:45;;;32558:86;;32616:28;;;;;;;;;;;;;;32558:86;32657:23;32683:15;:24;32699:7;32683:24;;;;;;;;;;;;;;;;;;;;;32657:50;;32720:22;32769:4;32746:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;32794:43;32811:4;32817:19;:17;:19::i;:::-;32794:16;:43::i;:::-;32746:91;:150;;;;32877:19;:17;:19::i;:::-;32858:38;;:15;:38;;;32746:150;32720:177;;32915:17;32910:66;;32941:35;;;;;;;;;;;;;;32910:66;33086:1;33048:34;33066:15;33048:17;:34::i;:::-;:39;33044:103;;33111:15;:24;33127:7;33111:24;;;;;;;;;;;;33104:31;;;;;;;;;;;33044:103;33514:18;:24;33533:4;33514:24;;;;;;;;;;;;;;;;33512:26;;;;;;;;;;;;33583:18;:22;33602:2;33583:22;;;;;;;;;;;;;;;;33581:24;;;;;;;;;;;19510:8;19330:3;33964:15;:41;;33922:21;33940:2;33922:17;:21::i;:::-;:84;:128;33876:17;:26;33894:7;33876:26;;;;;;;;;;;:174;;;;34220:1;19510:8;34170:19;:46;:51;34166:626;;34242:19;34274:1;34264:7;:11;34242:33;;34431:1;34397:17;:30;34415:11;34397:30;;;;;;;;;;;;:35;34393:384;;34535:13;;34520:11;:28;34516:242;;34715:19;34682:17;:30;34700:11;34682:30;;;;;;;;;;;:52;;;;34516:242;34393:384;34223:569;34166:626;34839:7;34835:2;34820:27;;34829:4;34820:27;;;;;;;;;;;;34858:42;34879:4;34885:2;34889:7;34898:1;34858:20;:42::i;:::-;32471:2437;;;32347:2561;;;:::o;30495:1596::-;30560:20;30583:13;;30560:36;;30694:1;30682:8;:13;30678:44;;30704:18;;;;;;;;;;;;;;30678:44;31267:1;19094:2;31238:1;:25;;31237:31;31225:8;:44;31199:18;:22;31218:2;31199:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;19448:3;31668:29;31695:1;31683:8;:13;31668:14;:29::i;:::-;:56;;19330:3;31605:15;:41;;31563:21;31581:2;31563:17;:21::i;:::-;:84;:162;31512:17;:31;31530:12;31512:31;;;;;;;;;;;:213;;;;31742:20;31765:12;31742:35;;31792:11;31821:8;31806:12;:23;31792:37;;31846:111;31898:14;;;;;;31894:2;31873:40;;31890:1;31873:40;;;;;;;;;;;;31952:3;31937:12;:18;31846:111;;31989:12;31973:13;:28;;;;30976:1037;;32023:60;32052:1;32056:2;32060:12;32074:8;32023:20;:60::i;:::-;30549:1542;30495:1596;;:::o;27201:148::-;27265:14;27326:5;27316:15;;27201:148;;;:::o;36202:1882::-;36259:17;36680:3;36673:4;36667:11;36663:21;36656:28;;36767:3;36761:4;36754:17;36867:3;37303:5;37435:1;37430:3;37426:11;37419:18;;37574:2;37568:4;37564:13;37560:2;37556:22;37551:3;37543:36;37616:2;37610:4;37606:13;37598:21;;37200:661;37632:4;37200:661;;;37800:1;37795:3;37791:11;37784:18;;37844:2;37838:4;37834:13;37830:2;37826:22;37821:3;37813:36;37717:2;37711:4;37707:13;37699:21;;37200:661;;;37204:427;37893:3;37888;37884:13;38002:2;37997:3;37993:12;37986:19;;38059:6;38054:3;38047:19;36298:1779;;36202:1882;;;:::o;35573:213::-;;;;;:::o;27436:142::-;27494:14;27555:5;27545:15;;27436:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:474::-;5828:6;5836;5885:2;5873:9;5864:7;5860:23;5856:32;5853:119;;;5891:79;;:::i;:::-;5853:119;6011:1;6036:53;6081:7;6072:6;6061:9;6057:22;6036:53;:::i;:::-;6026:63;;5982:117;6138:2;6164:53;6209:7;6200:6;6189:9;6185:22;6164:53;:::i;:::-;6154:63;;6109:118;5760:474;;;;;:::o;6240:332::-;6361:4;6399:2;6388:9;6384:18;6376:26;;6412:71;6480:1;6469:9;6465:17;6456:6;6412:71;:::i;:::-;6493:72;6561:2;6550:9;6546:18;6537:6;6493:72;:::i;:::-;6240:332;;;;;:::o;6578:117::-;6687:1;6684;6677:12;6701:117;6810:1;6807;6800:12;6824:180;6872:77;6869:1;6862:88;6969:4;6966:1;6959:15;6993:4;6990:1;6983:15;7010:281;7093:27;7115:4;7093:27;:::i;:::-;7085:6;7081:40;7223:6;7211:10;7208:22;7187:18;7175:10;7172:34;7169:62;7166:88;;;7234:18;;:::i;:::-;7166:88;7274:10;7270:2;7263:22;7053:238;7010:281;;:::o;7297:129::-;7331:6;7358:20;;:::i;:::-;7348:30;;7387:33;7415:4;7407:6;7387:33;:::i;:::-;7297:129;;;:::o;7432:308::-;7494:4;7584:18;7576:6;7573:30;7570:56;;;7606:18;;:::i;:::-;7570:56;7644:29;7666:6;7644:29;:::i;:::-;7636:37;;7728:4;7722;7718:15;7710:23;;7432:308;;;:::o;7746:148::-;7844:6;7839:3;7834;7821:30;7885:1;7876:6;7871:3;7867:16;7860:27;7746:148;;;:::o;7900:425::-;7978:5;8003:66;8019:49;8061:6;8019:49;:::i;:::-;8003:66;:::i;:::-;7994:75;;8092:6;8085:5;8078:21;8130:4;8123:5;8119:16;8168:3;8159:6;8154:3;8150:16;8147:25;8144:112;;;8175:79;;:::i;:::-;8144:112;8265:54;8312:6;8307:3;8302;8265:54;:::i;:::-;7984:341;7900:425;;;;;:::o;8345:340::-;8401:5;8450:3;8443:4;8435:6;8431:17;8427:27;8417:122;;8458:79;;:::i;:::-;8417:122;8575:6;8562:20;8600:79;8675:3;8667:6;8660:4;8652:6;8648:17;8600:79;:::i;:::-;8591:88;;8407:278;8345:340;;;;:::o;8691:509::-;8760:6;8809:2;8797:9;8788:7;8784:23;8780:32;8777:119;;;8815:79;;:::i;:::-;8777:119;8963:1;8952:9;8948:17;8935:31;8993:18;8985:6;8982:30;8979:117;;;9015:79;;:::i;:::-;8979:117;9120:63;9175:7;9166:6;9155:9;9151:22;9120:63;:::i;:::-;9110:73;;8906:287;8691:509;;;;:::o;9206:329::-;9265:6;9314:2;9302:9;9293:7;9289:23;9285:32;9282:119;;;9320:79;;:::i;:::-;9282:119;9440:1;9465:53;9510:7;9501:6;9490:9;9486:22;9465:53;:::i;:::-;9455:63;;9411:117;9206:329;;;;:::o;9541:116::-;9611:21;9626:5;9611:21;:::i;:::-;9604:5;9601:32;9591:60;;9647:1;9644;9637:12;9591:60;9541:116;:::o;9663:133::-;9706:5;9744:6;9731:20;9722:29;;9760:30;9784:5;9760:30;:::i;:::-;9663:133;;;;:::o;9802:468::-;9867:6;9875;9924:2;9912:9;9903:7;9899:23;9895:32;9892:119;;;9930:79;;:::i;:::-;9892:119;10050:1;10075:53;10120:7;10111:6;10100:9;10096:22;10075:53;:::i;:::-;10065:63;;10021:117;10177:2;10203:50;10245:7;10236:6;10225:9;10221:22;10203:50;:::i;:::-;10193:60;;10148:115;9802:468;;;;;:::o;10276:307::-;10337:4;10427:18;10419:6;10416:30;10413:56;;;10449:18;;:::i;:::-;10413:56;10487:29;10509:6;10487:29;:::i;:::-;10479:37;;10571:4;10565;10561:15;10553:23;;10276:307;;;:::o;10589:423::-;10666:5;10691:65;10707:48;10748:6;10707:48;:::i;:::-;10691:65;:::i;:::-;10682:74;;10779:6;10772:5;10765:21;10817:4;10810:5;10806:16;10855:3;10846:6;10841:3;10837:16;10834:25;10831:112;;;10862:79;;:::i;:::-;10831:112;10952:54;10999:6;10994:3;10989;10952:54;:::i;:::-;10672:340;10589:423;;;;;:::o;11031:338::-;11086:5;11135:3;11128:4;11120:6;11116:17;11112:27;11102:122;;11143:79;;:::i;:::-;11102:122;11260:6;11247:20;11285:78;11359:3;11351:6;11344:4;11336:6;11332:17;11285:78;:::i;:::-;11276:87;;11092:277;11031:338;;;;:::o;11375:943::-;11470:6;11478;11486;11494;11543:3;11531:9;11522:7;11518:23;11514:33;11511:120;;;11550:79;;:::i;:::-;11511:120;11670:1;11695:53;11740:7;11731:6;11720:9;11716:22;11695:53;:::i;:::-;11685:63;;11641:117;11797:2;11823:53;11868:7;11859:6;11848:9;11844:22;11823:53;:::i;:::-;11813:63;;11768:118;11925:2;11951:53;11996:7;11987:6;11976:9;11972:22;11951:53;:::i;:::-;11941:63;;11896:118;12081:2;12070:9;12066:18;12053:32;12112:18;12104:6;12101:30;12098:117;;;12134:79;;:::i;:::-;12098:117;12239:62;12293:7;12284:6;12273:9;12269:22;12239:62;:::i;:::-;12229:72;;12024:287;11375:943;;;;;;;:::o;12324:474::-;12392:6;12400;12449:2;12437:9;12428:7;12424:23;12420:32;12417:119;;;12455:79;;:::i;:::-;12417:119;12575:1;12600:53;12645:7;12636:6;12625:9;12621:22;12600:53;:::i;:::-;12590:63;;12546:117;12702:2;12728:53;12773:7;12764:6;12753:9;12749:22;12728:53;:::i;:::-;12718:63;;12673:118;12324:474;;;;;:::o;12804:180::-;12852:77;12849:1;12842:88;12949:4;12946:1;12939:15;12973:4;12970:1;12963:15;12990:410;13030:7;13053:20;13071:1;13053:20;:::i;:::-;13048:25;;13087:20;13105:1;13087:20;:::i;:::-;13082:25;;13142:1;13139;13135:9;13164:30;13182:11;13164:30;:::i;:::-;13153:41;;13343:1;13334:7;13330:15;13327:1;13324:22;13304:1;13297:9;13277:83;13254:139;;13373:18;;:::i;:::-;13254:139;13038:362;12990:410;;;;:::o;13406:180::-;13454:77;13451:1;13444:88;13551:4;13548:1;13541:15;13575:4;13572:1;13565:15;13592:185;13632:1;13649:20;13667:1;13649:20;:::i;:::-;13644:25;;13683:20;13701:1;13683:20;:::i;:::-;13678:25;;13722:1;13712:35;;13727:18;;:::i;:::-;13712:35;13769:1;13766;13762:9;13757:14;;13592:185;;;;:::o;13783:159::-;13923:11;13919:1;13911:6;13907:14;13900:35;13783:159;:::o;13948:365::-;14090:3;14111:66;14175:1;14170:3;14111:66;:::i;:::-;14104:73;;14186:93;14275:3;14186:93;:::i;:::-;14304:2;14299:3;14295:12;14288:19;;13948:365;;;:::o;14319:419::-;14485:4;14523:2;14512:9;14508:18;14500:26;;14572:9;14566:4;14562:20;14558:1;14547:9;14543:17;14536:47;14600:131;14726:4;14600:131;:::i;:::-;14592:139;;14319:419;;;:::o;14744:191::-;14784:3;14803:20;14821:1;14803:20;:::i;:::-;14798:25;;14837:20;14855:1;14837:20;:::i;:::-;14832:25;;14880:1;14877;14873:9;14866:16;;14901:3;14898:1;14895:10;14892:36;;;14908:18;;:::i;:::-;14892:36;14744:191;;;;:::o;14941:174::-;15081:26;15077:1;15069:6;15065:14;15058:50;14941:174;:::o;15121:366::-;15263:3;15284:67;15348:2;15343:3;15284:67;:::i;:::-;15277:74;;15360:93;15449:3;15360:93;:::i;:::-;15478:2;15473:3;15469:12;15462:19;;15121:366;;;:::o;15493:419::-;15659:4;15697:2;15686:9;15682:18;15674:26;;15746:9;15740:4;15736:20;15732:1;15721:9;15717:17;15710:47;15774:131;15900:4;15774:131;:::i;:::-;15766:139;;15493:419;;;:::o;15918:147::-;16019:11;16056:3;16041:18;;15918:147;;;;:::o;16071:114::-;;:::o;16191:398::-;16350:3;16371:83;16452:1;16447:3;16371:83;:::i;:::-;16364:90;;16463:93;16552:3;16463:93;:::i;:::-;16581:1;16576:3;16572:11;16565:18;;16191:398;;;:::o;16595:379::-;16779:3;16801:147;16944:3;16801:147;:::i;:::-;16794:154;;16965:3;16958:10;;16595:379;;;:::o;16980:180::-;17028:77;17025:1;17018:88;17125:4;17122:1;17115:15;17149:4;17146:1;17139:15;17166:320;17210:6;17247:1;17241:4;17237:12;17227:22;;17294:1;17288:4;17284:12;17315:18;17305:81;;17371:4;17363:6;17359:17;17349:27;;17305:81;17433:2;17425:6;17422:14;17402:18;17399:38;17396:84;;17452:18;;:::i;:::-;17396:84;17217:269;17166:320;;;:::o;17492:141::-;17541:4;17564:3;17556:11;;17587:3;17584:1;17577:14;17621:4;17618:1;17608:18;17600:26;;17492:141;;;:::o;17639:93::-;17676:6;17723:2;17718;17711:5;17707:14;17703:23;17693:33;;17639:93;;;:::o;17738:107::-;17782:8;17832:5;17826:4;17822:16;17801:37;;17738:107;;;;:::o;17851:393::-;17920:6;17970:1;17958:10;17954:18;17993:97;18023:66;18012:9;17993:97;:::i;:::-;18111:39;18141:8;18130:9;18111:39;:::i;:::-;18099:51;;18183:4;18179:9;18172:5;18168:21;18159:30;;18232:4;18222:8;18218:19;18211:5;18208:30;18198:40;;17927:317;;17851:393;;;;;:::o;18250:60::-;18278:3;18299:5;18292:12;;18250:60;;;:::o;18316:142::-;18366:9;18399:53;18417:34;18426:24;18444:5;18426:24;:::i;:::-;18417:34;:::i;:::-;18399:53;:::i;:::-;18386:66;;18316:142;;;:::o;18464:75::-;18507:3;18528:5;18521:12;;18464:75;;;:::o;18545:269::-;18655:39;18686:7;18655:39;:::i;:::-;18716:91;18765:41;18789:16;18765:41;:::i;:::-;18757:6;18750:4;18744:11;18716:91;:::i;:::-;18710:4;18703:105;18621:193;18545:269;;;:::o;18820:73::-;18865:3;18886:1;18879:8;;18820:73;:::o;18899:189::-;18976:32;;:::i;:::-;19017:65;19075:6;19067;19061:4;19017:65;:::i;:::-;18952:136;18899:189;;:::o;19094:186::-;19154:120;19171:3;19164:5;19161:14;19154:120;;;19225:39;19262:1;19255:5;19225:39;:::i;:::-;19198:1;19191:5;19187:13;19178:22;;19154:120;;;19094:186;;:::o;19286:543::-;19387:2;19382:3;19379:11;19376:446;;;19421:38;19453:5;19421:38;:::i;:::-;19505:29;19523:10;19505:29;:::i;:::-;19495:8;19491:44;19688:2;19676:10;19673:18;19670:49;;;19709:8;19694:23;;19670:49;19732:80;19788:22;19806:3;19788:22;:::i;:::-;19778:8;19774:37;19761:11;19732:80;:::i;:::-;19391:431;;19376:446;19286:543;;;:::o;19835:117::-;19889:8;19939:5;19933:4;19929:16;19908:37;;19835:117;;;;:::o;19958:169::-;20002:6;20035:51;20083:1;20079:6;20071:5;20068:1;20064:13;20035:51;:::i;:::-;20031:56;20116:4;20110;20106:15;20096:25;;20009:118;19958:169;;;;:::o;20132:295::-;20208:4;20354:29;20379:3;20373:4;20354:29;:::i;:::-;20346:37;;20416:3;20413:1;20409:11;20403:4;20400:21;20392:29;;20132:295;;;;:::o;20432:1395::-;20549:37;20582:3;20549:37;:::i;:::-;20651:18;20643:6;20640:30;20637:56;;;20673:18;;:::i;:::-;20637:56;20717:38;20749:4;20743:11;20717:38;:::i;:::-;20802:67;20862:6;20854;20848:4;20802:67;:::i;:::-;20896:1;20920:4;20907:17;;20952:2;20944:6;20941:14;20969:1;20964:618;;;;21626:1;21643:6;21640:77;;;21692:9;21687:3;21683:19;21677:26;21668:35;;21640:77;21743:67;21803:6;21796:5;21743:67;:::i;:::-;21737:4;21730:81;21599:222;20934:887;;20964:618;21016:4;21012:9;21004:6;21000:22;21050:37;21082:4;21050:37;:::i;:::-;21109:1;21123:208;21137:7;21134:1;21131:14;21123:208;;;21216:9;21211:3;21207:19;21201:26;21193:6;21186:42;21267:1;21259:6;21255:14;21245:24;;21314:2;21303:9;21299:18;21286:31;;21160:4;21157:1;21153:12;21148:17;;21123:208;;;21359:6;21350:7;21347:19;21344:179;;;21417:9;21412:3;21408:19;21402:26;21460:48;21502:4;21494:6;21490:17;21479:9;21460:48;:::i;:::-;21452:6;21445:64;21367:156;21344:179;21569:1;21565;21557:6;21553:14;21549:22;21543:4;21536:36;20971:611;;;20934:887;;20524:1303;;;20432:1395;;:::o;21833:158::-;21973:10;21969:1;21961:6;21957:14;21950:34;21833:158;:::o;21997:365::-;22139:3;22160:66;22224:1;22219:3;22160:66;:::i;:::-;22153:73;;22235:93;22324:3;22235:93;:::i;:::-;22353:2;22348:3;22344:12;22337:19;;21997:365;;;:::o;22368:419::-;22534:4;22572:2;22561:9;22557:18;22549:26;;22621:9;22615:4;22611:20;22607:1;22596:9;22592:17;22585:47;22649:131;22775:4;22649:131;:::i;:::-;22641:139;;22368:419;;;:::o;22793:162::-;22933:14;22929:1;22921:6;22917:14;22910:38;22793:162;:::o;22961:366::-;23103:3;23124:67;23188:2;23183:3;23124:67;:::i;:::-;23117:74;;23200:93;23289:3;23200:93;:::i;:::-;23318:2;23313:3;23309:12;23302:19;;22961:366;;;:::o;23333:419::-;23499:4;23537:2;23526:9;23522:18;23514:26;;23586:9;23580:4;23576:20;23572:1;23561:9;23557:17;23550:47;23614:131;23740:4;23614:131;:::i;:::-;23606:139;;23333:419;;;:::o;23758:148::-;23860:11;23897:3;23882:18;;23758:148;;;;:::o;23912:161::-;24052:9;24048:1;24040:6;24036:14;24029:33;23912:161;:::o;24083:416::-;24243:3;24268:84;24350:1;24345:3;24268:84;:::i;:::-;24261:91;;24365:93;24454:3;24365:93;:::i;:::-;24487:1;24482:3;24478:11;24471:18;;24083:416;;;:::o;24509:410::-;24615:3;24647:39;24680:5;24647:39;:::i;:::-;24706:89;24788:6;24783:3;24706:89;:::i;:::-;24699:96;;24808:65;24866:6;24861:3;24854:4;24847:5;24843:16;24808:65;:::i;:::-;24902:6;24897:3;24893:16;24886:23;;24619:300;24509:410;;;;:::o;24929:159::-;25073:3;25069:1;25061:6;25057:14;25050:27;24929:159;:::o;25098:416::-;25258:3;25283:84;25365:1;25360:3;25283:84;:::i;:::-;25276:91;;25380:93;25469:3;25380:93;:::i;:::-;25502:1;25497:3;25493:11;25486:18;;25098:416;;;:::o;25524:163::-;25668:7;25664:1;25656:6;25652:14;25645:31;25524:163;:::o;25697:416::-;25857:3;25882:84;25964:1;25959:3;25882:84;:::i;:::-;25875:91;;25979:93;26068:3;25979:93;:::i;:::-;26101:1;26096:3;26092:11;26085:18;;25697:416;;;:::o;26123:1261::-;26606:3;26632:148;26776:3;26632:148;:::i;:::-;26625:155;;26801:95;26892:3;26883:6;26801:95;:::i;:::-;26794:102;;26917:148;27061:3;26917:148;:::i;:::-;26910:155;;27086:95;27177:3;27168:6;27086:95;:::i;:::-;27079:102;;27202:148;27346:3;27202:148;:::i;:::-;27195:155;;27371:3;27364:10;;26123:1261;;;;;:::o;27394:167::-;27538:11;27534:1;27526:6;27522:14;27515:35;27394:167;:::o;27571:381::-;27713:3;27738:66;27802:1;27797:3;27738:66;:::i;:::-;27731:73;;27817:93;27906:3;27817:93;:::i;:::-;27939:2;27934:3;27930:12;27923:19;;27571:381;;;:::o;27962:435::-;28128:4;28170:2;28159:9;28155:18;28147:26;;28223:9;28217:4;28213:20;28209:1;28198:9;28194:17;28187:47;28255:131;28381:4;28255:131;:::i;:::-;28247:139;;27962:435;;;:::o;28407:170::-;28551:14;28547:1;28539:6;28535:14;28528:38;28407:170;:::o;28587:382::-;28729:3;28754:67;28818:2;28813:3;28754:67;:::i;:::-;28747:74;;28834:93;28923:3;28834:93;:::i;:::-;28956:2;28951:3;28947:12;28940:19;;28587:382;;;:::o;28979:435::-;29145:4;29187:2;29176:9;29172:18;29164:26;;29240:9;29234:4;29230:20;29226:1;29215:9;29211:17;29204:47;29272:131;29398:4;29272:131;:::i;:::-;29264:139;;28979:435;;;:::o
Swarm Source
ipfs://7f6098a0e9dab06ae18bfd4dcf48f4356d878b571b0cf55f1c972cc1a827126f
[ 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.