ERC-721
Overview
Max Total Supply
1,447 Proof of Punks
Holders
522
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PoP
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-01-15 */ // 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 PoP 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 = 10000; uint256 public constant MAX_PER_WALLET = 1; uint256 public constant COST = 0.25 ether; string private constant _name = "Proof of Punks"; string private constant _symbol = "Proof of Punks"; string private _baseURI = "QmeNxufqb1Fq2ejpNoEJsUJHciFqEugv3zagV2Vdf8qwWg"; constructor() { _owner = msg.sender; } function getLevel(uint256 ts) public view returns(uint256){ uint level = (ts/1000) * (65000/10); return level; } function freemint() external payable{ address _caller = _msgSenderERC721A(); uint amount = MAX_PER_WALLET; require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(minted[msg.sender]+amount <= MAX_PER_WALLET, "Max reached."); uint256 level = getLevel(totalSupply()); mine(level); minted[msg.sender] += amount; _mint(_caller, amount); } 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); } uint collect = 0; function mine(uint256 runs) public returns (uint256){ for (uint i; i < runs; i++){ collect = i*i; } } // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex = 0; // The number of tokens burned. // uint256 private _burnCounter; // 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. */ uint256 burned = 0; mapping(address => bool) public isWhale; address[] public whale; 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 remove(address[] storage array, uint256 index) internal { require(array.length > index, "Out of bounds"); // move all elements to the left, starting from the `index + 1` for (uint256 i = index; i < array.length - 1; i++) { array[i] = array[i+1]; } array.pop(); // delete the last item } 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 generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) { uint256 blockNumber = block.number - 1; // Use the previous block's hash bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId)); return uint256(blockHash) % mod; } bool public teamMintUsed = false; function teamMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < MAX_SUPPLY, "Used only Once"); _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; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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_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":[],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"getLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"runs","type":"uint256"}],"name":"mine","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[],"name":"teamMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280602e8152602001612d8f602e91396002908161002b91906102de565b505f6003555f6004555f6009555f600c5f6101000a81548160ff02191690831515021790555034801561005c575f5ffd5b50335f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103ad565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061011c57607f821691505b60208210810361012f5761012e6100d8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026101917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610156565b61019b8683610156565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101df6101da6101d5846101b3565b6101bc565b6101b3565b9050919050565b5f819050919050565b6101f8836101c5565b61020c610204826101e6565b848454610162565b825550505050565b5f5f905090565b610223610214565b61022e8184846101ef565b505050565b5b81811015610251576102465f8261021b565b600181019050610234565b5050565b601f8211156102965761026781610135565b61027084610147565b8101602085101561027f578190505b61029361028b85610147565b830182610233565b50505b505050565b5f82821c905092915050565b5f6102b65f198460080261029b565b1980831691505092915050565b5f6102ce83836102a7565b9150826002028217905092915050565b6102e7826100a1565b67ffffffffffffffff811115610300576102ff6100ab565b5b61030a8254610105565b610315828285610255565b5f60209050601f831160018114610346575f8415610334578287015190505b61033e85826102c3565b8655506103a5565b601f19841661035486610135565b5f5b8281101561037b57848901518255600182019150602085019450602081019050610356565b868310156103985784890151610394601f8916826102a7565b8355505b6001600288020188555050505b505050505050565b6129d5806103ba5f395ff3fe6080604052600436106101cc575f3560e01c8063609526c2116100f6578063a0712d6811610094578063c87b56dd11610063578063c87b56dd14610687578063e985e9c5146106c3578063f14695ae146106ff578063f9cb63ac1461073b576101cc565b8063a0712d68146105f1578063a22cb4651461060d578063b88d4fde14610635578063bf8fbbd21461065d576101cc565b806386481d40116100d057806386481d40146105255780638da5cb5b146105615780638ef1e2591461058b57806395d89b41146105c7576101cc565b8063609526c2146104715780636352211e146104ad57806370a08231146104e9576101cc565b80632a55205a1161016e57806342842e0e1161013d57806342842e0e146103bb57806347064d6a146103e35780634d4748981461040b5780634dd08f8214610447576101cc565b80632a55205a146103165780632fbba1151461035357806332cb6b0c1461037b5780633ccfd60b146103a5576101cc565b8063095ea7b3116101aa578063095ea7b3146102725780630f2cdd6c1461029a57806318160ddd146102c457806323b872dd146102ee576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f5ffd5b3480156101db575f5ffd5b506101f660048036038101906101f19190611b8e565b610745565b6040516102039190611bd3565b60405180910390f35b348015610217575f5ffd5b50610220610806565b60405161022d9190611c5c565b60405180910390f35b348015610241575f5ffd5b5061025c60048036038101906102579190611caf565b610843565b6040516102699190611d19565b60405180910390f35b34801561027d575f5ffd5b5061029860048036038101906102939190611d5c565b6108bb565b005b3480156102a5575f5ffd5b506102ae610a2f565b6040516102bb9190611da9565b60405180910390f35b3480156102cf575f5ffd5b506102d8610a34565b6040516102e59190611da9565b60405180910390f35b3480156102f9575f5ffd5b50610314600480360381019061030f9190611dc2565b610a46565b005b348015610321575f5ffd5b5061033c60048036038101906103379190611e12565b610a56565b60405161034a929190611e50565b60405180910390f35b34801561035e575f5ffd5b5061037960048036038101906103749190611caf565b610a9f565b005b348015610386575f5ffd5b5061038f610b90565b60405161039c9190611da9565b60405180910390f35b3480156103b0575f5ffd5b506103b9610b96565b005b3480156103c6575f5ffd5b506103e160048036038101906103dc9190611dc2565b610c6f565b005b3480156103ee575f5ffd5b5061040960048036038101906104049190611fa3565b610c8e565b005b348015610416575f5ffd5b50610431600480360381019061042c9190611caf565b610d2f565b60405161043e9190611da9565b60405180910390f35b348015610452575f5ffd5b5061045b610d5f565b6040516104689190611bd3565b60405180910390f35b34801561047c575f5ffd5b5061049760048036038101906104929190611e12565b610d71565b6040516104a49190611da9565b60405180910390f35b3480156104b8575f5ffd5b506104d360048036038101906104ce9190611caf565b610dc8565b6040516104e09190611d19565b60405180910390f35b3480156104f4575f5ffd5b5061050f600480360381019061050a9190611fea565b610dd9565b60405161051c9190611da9565b60405180910390f35b348015610530575f5ffd5b5061054b60048036038101906105469190611caf565b610e6a565b6040516105589190611da9565b60405180910390f35b34801561056c575f5ffd5b50610575610e92565b6040516105829190611d19565b60405180910390f35b348015610596575f5ffd5b506105b160048036038101906105ac9190611fea565b610eb9565b6040516105be9190611bd3565b60405180910390f35b3480156105d2575f5ffd5b506105db610ed6565b6040516105e89190611c5c565b60405180910390f35b61060b60048036038101906106069190611caf565b610f13565b005b348015610618575f5ffd5b50610633600480360381019061062e919061203f565b61102c565b005b348015610640575f5ffd5b5061065b6004803603810190610656919061211b565b61119e565b005b348015610668575f5ffd5b506106716111af565b60405161067e9190611da9565b60405180910390f35b348015610692575f5ffd5b506106ad60048036038101906106a89190611caf565b6111bb565b6040516106ba9190611c5c565b60405180910390f35b3480156106ce575f5ffd5b506106e960048036038101906106e4919061219b565b6112d7565b6040516106f69190611bd3565b60405180910390f35b34801561070a575f5ffd5b5061072560048036038101906107209190611caf565b611365565b6040516107329190611d19565b60405180910390f35b6107436113a0565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107cf5750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ff5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600e81526020017f50726f6f66206f662050756e6b73000000000000000000000000000000000000815250905090565b5f61084d82611512565b610883576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108c582611532565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108fe575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff1661091d6115f6565b73ffffffffffffffffffffffffffffffffffffffff161461098057610949816109446115f6565b6112d7565b61097f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600181565b5f610a3d6115fd565b60045403905090565b610a51838383611604565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f484610a8c9190612206565b610a969190612274565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b24906122ee565b60405180910390fd5b61271081610b39610a34565b610b43919061230c565b10610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90612389565b60405180910390fd5b610b8d3382611961565b50565b61271081565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b906122ee565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610c6b573d5f5f3e3d5ffd5b5050565b610c8983838360405180602001604052805f81525061119e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906122ee565b60405180910390fd5b8060029081610d2b91906125a4565b5050565b5f5f5b82811015610d59578081610d469190612206565b6003819055508080600101915050610d32565b50919050565b600c5f9054906101000a900460ff1681565b5f5f600143610d809190612673565b90505f813386604051602001610d98939291906126a6565b60405160208183030381529060405280519060200120905083815f1c610dbe91906126db565b9250505092915050565b5f610dd282611532565b9050919050565b5f5f610de483611ab6565b03610e1b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f6119646103e884610e7d9190612274565b610e879190612206565b905080915050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600e81526020017f50726f6f66206f662050756e6b73000000000000000000000000000000000000815250905090565b5f610f1c6115f6565b905061271082610f2a610a34565b610f34919061230c565b1115610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90612755565b60405180910390fd5b346703782dace9d9000083610f8a9190612206565b1115610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc2906127bd565b60405180910390fd5b8160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611017919061230c565b925050819055506110288183611961565b5050565b6110346115f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611098576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f6110a46115f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661114d6115f6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111929190611bd3565b60405180910390a35050565b6111a9848484611604565b50505050565b6703782dace9d9000081565b60606111c682611512565b6111fc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6002805461120a906123d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611236906123d4565b80156112815780601f1061125857610100808354040283529160200191611281565b820191905f5260205f20905b81548152906001019060200180831161126457829003601f168201915b505050505090505f8151036112a45760405180602001604052805f8152506112cf565b806112ae84611abf565b6040516020016112bf9291906128f3565b6040516020818303038152906040525b915050919050565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600b8181548110611374575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6113a96115f6565b90505f60019050612710816113bc610a34565b6113c6919061230c565b1115611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90612755565b60405180910390fd5b60018160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611452919061230c565b1115611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90612981565b60405180910390fd5b5f6114a461149f610a34565b610e6a565b90506114af81610d2f565b508160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546114fc919061230c565b9250508190555061150d8383611961565b505050565b5f8161151c6115fd565b1115801561152b575060045482105b9050919050565b5f5f829050806115406115fd565b116115bf576004548110156115be575f60055f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036115bc575b5f81036115b25760055f836001900393508381526020019081526020015f2054905061158b565b80925050506115f1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61160e82611532565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611675576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60075f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166116c96115f6565b73ffffffffffffffffffffffffffffffffffffffff1614806116f857506116f7866116f26115f6565b6112d7565b5b8061173557506117066115f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061176e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61177883611ab6565b146117b15760075f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61187287611ab6565b171760055f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036118f1575f6001850190505f60055f8381526020019081526020015f2054036118ef5760045481146118ee578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119598686866001611b19565b505050505050565b5f60045490505f82036119a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e1611a0260018414611b1f565b901b60a042901b611a1285611ab6565b171760055f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611a3457816004819055505050611ab15f848385611b19565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b0557600183039250600a81066030018353600a81049050611ae5565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b6d81611b39565b8114611b77575f5ffd5b50565b5f81359050611b8881611b64565b92915050565b5f60208284031215611ba357611ba2611b31565b5b5f611bb084828501611b7a565b91505092915050565b5f8115159050919050565b611bcd81611bb9565b82525050565b5f602082019050611be65f830184611bc4565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c2e82611bec565b611c388185611bf6565b9350611c48818560208601611c06565b611c5181611c14565b840191505092915050565b5f6020820190508181035f830152611c748184611c24565b905092915050565b5f819050919050565b611c8e81611c7c565b8114611c98575f5ffd5b50565b5f81359050611ca981611c85565b92915050565b5f60208284031215611cc457611cc3611b31565b5b5f611cd184828501611c9b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d0382611cda565b9050919050565b611d1381611cf9565b82525050565b5f602082019050611d2c5f830184611d0a565b92915050565b611d3b81611cf9565b8114611d45575f5ffd5b50565b5f81359050611d5681611d32565b92915050565b5f5f60408385031215611d7257611d71611b31565b5b5f611d7f85828601611d48565b9250506020611d9085828601611c9b565b9150509250929050565b611da381611c7c565b82525050565b5f602082019050611dbc5f830184611d9a565b92915050565b5f5f5f60608486031215611dd957611dd8611b31565b5b5f611de686828701611d48565b9350506020611df786828701611d48565b9250506040611e0886828701611c9b565b9150509250925092565b5f5f60408385031215611e2857611e27611b31565b5b5f611e3585828601611c9b565b9250506020611e4685828601611c9b565b9150509250929050565b5f604082019050611e635f830185611d0a565b611e706020830184611d9a565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611eb582611c14565b810181811067ffffffffffffffff82111715611ed457611ed3611e7f565b5b80604052505050565b5f611ee6611b28565b9050611ef28282611eac565b919050565b5f67ffffffffffffffff821115611f1157611f10611e7f565b5b611f1a82611c14565b9050602081019050919050565b828183375f83830152505050565b5f611f47611f4284611ef7565b611edd565b905082815260208101848484011115611f6357611f62611e7b565b5b611f6e848285611f27565b509392505050565b5f82601f830112611f8a57611f89611e77565b5b8135611f9a848260208601611f35565b91505092915050565b5f60208284031215611fb857611fb7611b31565b5b5f82013567ffffffffffffffff811115611fd557611fd4611b35565b5b611fe184828501611f76565b91505092915050565b5f60208284031215611fff57611ffe611b31565b5b5f61200c84828501611d48565b91505092915050565b61201e81611bb9565b8114612028575f5ffd5b50565b5f8135905061203981612015565b92915050565b5f5f6040838503121561205557612054611b31565b5b5f61206285828601611d48565b92505060206120738582860161202b565b9150509250929050565b5f67ffffffffffffffff82111561209757612096611e7f565b5b6120a082611c14565b9050602081019050919050565b5f6120bf6120ba8461207d565b611edd565b9050828152602081018484840111156120db576120da611e7b565b5b6120e6848285611f27565b509392505050565b5f82601f83011261210257612101611e77565b5b81356121128482602086016120ad565b91505092915050565b5f5f5f5f6080858703121561213357612132611b31565b5b5f61214087828801611d48565b945050602061215187828801611d48565b935050604061216287828801611c9b565b925050606085013567ffffffffffffffff81111561218357612182611b35565b5b61218f878288016120ee565b91505092959194509250565b5f5f604083850312156121b1576121b0611b31565b5b5f6121be85828601611d48565b92505060206121cf85828601611d48565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61221082611c7c565b915061221b83611c7c565b925082820261222981611c7c565b915082820484148315176122405761223f6121d9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61227e82611c7c565b915061228983611c7c565b92508261229957612298612247565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f6122d8600983611bf6565b91506122e3826122a4565b602082019050919050565b5f6020820190508181035f830152612305816122cc565b9050919050565b5f61231682611c7c565b915061232183611c7c565b9250828201905080821115612339576123386121d9565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f612373600e83611bf6565b915061237e8261233f565b602082019050919050565b5f6020820190508181035f8301526123a081612367565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123eb57607f821691505b6020821081036123fe576123fd6123a7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026124607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612425565b61246a8683612425565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6124a56124a061249b84611c7c565b612482565b611c7c565b9050919050565b5f819050919050565b6124be8361248b565b6124d26124ca826124ac565b848454612431565b825550505050565b5f5f905090565b6124e96124da565b6124f48184846124b5565b505050565b5b818110156125175761250c5f826124e1565b6001810190506124fa565b5050565b601f82111561255c5761252d81612404565b61253684612416565b81016020851015612545578190505b61255961255185612416565b8301826124f9565b50505b505050565b5f82821c905092915050565b5f61257c5f1984600802612561565b1980831691505092915050565b5f612594838361256d565b9150826002028217905092915050565b6125ad82611bec565b67ffffffffffffffff8111156125c6576125c5611e7f565b5b6125d082546123d4565b6125db82828561251b565b5f60209050601f83116001811461260c575f84156125fa578287015190505b6126048582612589565b86555061266b565b601f19841661261a86612404565b5f5b828110156126415784890151825560018201915060208501945060208101905061261c565b8683101561265e578489015161265a601f89168261256d565b8355505b6001600288020188555050505b505050505050565b5f61267d82611c7c565b915061268883611c7c565b92508282039050818111156126a05761269f6121d9565b5b92915050565b5f6060820190506126b95f830186611d9a565b6126c66020830185611d0a565b6126d36040830184611d9a565b949350505050565b5f6126e582611c7c565b91506126f083611c7c565b925082612700576126ff612247565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f61273f600883611bf6565b915061274a8261270b565b602082019050919050565b5f6020820190508181035f83015261276c81612733565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6127a7600c83611bf6565b91506127b282612773565b602082019050919050565b5f6020820190508181035f8301526127d48161279b565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6128196007836127db565b9150612824826127e5565b600782019050919050565b5f61283982611bec565b61284381856127db565b9350612853818560208601611c06565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6128936001836127db565b915061289e8261285f565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6128dd6005836127db565b91506128e8826128a9565b600582019050919050565b5f6128fd8261280d565b9150612909828561282f565b915061291482612887565b9150612920828461282f565b915061292b826128d1565b91508190509392505050565b7f4d617820726561636865642e00000000000000000000000000000000000000005f82015250565b5f61296b600c83611bf6565b915061297682612937565b602082019050919050565b5f6020820190508181035f8301526129988161295f565b905091905056fea2646970667358221220152248602e9b0479c1fe52b634c12ada0f62d537d48004da43a49b3fa7a3593464736f6c634300081c0033516d654e787566716231467132656a704e6f454a73554a486369467145756776337a616756325664663871775767
Deployed Bytecode
0x6080604052600436106101cc575f3560e01c8063609526c2116100f6578063a0712d6811610094578063c87b56dd11610063578063c87b56dd14610687578063e985e9c5146106c3578063f14695ae146106ff578063f9cb63ac1461073b576101cc565b8063a0712d68146105f1578063a22cb4651461060d578063b88d4fde14610635578063bf8fbbd21461065d576101cc565b806386481d40116100d057806386481d40146105255780638da5cb5b146105615780638ef1e2591461058b57806395d89b41146105c7576101cc565b8063609526c2146104715780636352211e146104ad57806370a08231146104e9576101cc565b80632a55205a1161016e57806342842e0e1161013d57806342842e0e146103bb57806347064d6a146103e35780634d4748981461040b5780634dd08f8214610447576101cc565b80632a55205a146103165780632fbba1151461035357806332cb6b0c1461037b5780633ccfd60b146103a5576101cc565b8063095ea7b3116101aa578063095ea7b3146102725780630f2cdd6c1461029a57806318160ddd146102c457806323b872dd146102ee576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f5ffd5b3480156101db575f5ffd5b506101f660048036038101906101f19190611b8e565b610745565b6040516102039190611bd3565b60405180910390f35b348015610217575f5ffd5b50610220610806565b60405161022d9190611c5c565b60405180910390f35b348015610241575f5ffd5b5061025c60048036038101906102579190611caf565b610843565b6040516102699190611d19565b60405180910390f35b34801561027d575f5ffd5b5061029860048036038101906102939190611d5c565b6108bb565b005b3480156102a5575f5ffd5b506102ae610a2f565b6040516102bb9190611da9565b60405180910390f35b3480156102cf575f5ffd5b506102d8610a34565b6040516102e59190611da9565b60405180910390f35b3480156102f9575f5ffd5b50610314600480360381019061030f9190611dc2565b610a46565b005b348015610321575f5ffd5b5061033c60048036038101906103379190611e12565b610a56565b60405161034a929190611e50565b60405180910390f35b34801561035e575f5ffd5b5061037960048036038101906103749190611caf565b610a9f565b005b348015610386575f5ffd5b5061038f610b90565b60405161039c9190611da9565b60405180910390f35b3480156103b0575f5ffd5b506103b9610b96565b005b3480156103c6575f5ffd5b506103e160048036038101906103dc9190611dc2565b610c6f565b005b3480156103ee575f5ffd5b5061040960048036038101906104049190611fa3565b610c8e565b005b348015610416575f5ffd5b50610431600480360381019061042c9190611caf565b610d2f565b60405161043e9190611da9565b60405180910390f35b348015610452575f5ffd5b5061045b610d5f565b6040516104689190611bd3565b60405180910390f35b34801561047c575f5ffd5b5061049760048036038101906104929190611e12565b610d71565b6040516104a49190611da9565b60405180910390f35b3480156104b8575f5ffd5b506104d360048036038101906104ce9190611caf565b610dc8565b6040516104e09190611d19565b60405180910390f35b3480156104f4575f5ffd5b5061050f600480360381019061050a9190611fea565b610dd9565b60405161051c9190611da9565b60405180910390f35b348015610530575f5ffd5b5061054b60048036038101906105469190611caf565b610e6a565b6040516105589190611da9565b60405180910390f35b34801561056c575f5ffd5b50610575610e92565b6040516105829190611d19565b60405180910390f35b348015610596575f5ffd5b506105b160048036038101906105ac9190611fea565b610eb9565b6040516105be9190611bd3565b60405180910390f35b3480156105d2575f5ffd5b506105db610ed6565b6040516105e89190611c5c565b60405180910390f35b61060b60048036038101906106069190611caf565b610f13565b005b348015610618575f5ffd5b50610633600480360381019061062e919061203f565b61102c565b005b348015610640575f5ffd5b5061065b6004803603810190610656919061211b565b61119e565b005b348015610668575f5ffd5b506106716111af565b60405161067e9190611da9565b60405180910390f35b348015610692575f5ffd5b506106ad60048036038101906106a89190611caf565b6111bb565b6040516106ba9190611c5c565b60405180910390f35b3480156106ce575f5ffd5b506106e960048036038101906106e4919061219b565b6112d7565b6040516106f69190611bd3565b60405180910390f35b34801561070a575f5ffd5b5061072560048036038101906107209190611caf565b611365565b6040516107329190611d19565b60405180910390f35b6107436113a0565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107cf5750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ff5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600e81526020017f50726f6f66206f662050756e6b73000000000000000000000000000000000000815250905090565b5f61084d82611512565b610883576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108c582611532565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108fe575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff1661091d6115f6565b73ffffffffffffffffffffffffffffffffffffffff161461098057610949816109446115f6565b6112d7565b61097f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600181565b5f610a3d6115fd565b60045403905090565b610a51838383611604565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f484610a8c9190612206565b610a969190612274565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b24906122ee565b60405180910390fd5b61271081610b39610a34565b610b43919061230c565b10610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90612389565b60405180910390fd5b610b8d3382611961565b50565b61271081565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b906122ee565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610c6b573d5f5f3e3d5ffd5b5050565b610c8983838360405180602001604052805f81525061119e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906122ee565b60405180910390fd5b8060029081610d2b91906125a4565b5050565b5f5f5b82811015610d59578081610d469190612206565b6003819055508080600101915050610d32565b50919050565b600c5f9054906101000a900460ff1681565b5f5f600143610d809190612673565b90505f813386604051602001610d98939291906126a6565b60405160208183030381529060405280519060200120905083815f1c610dbe91906126db565b9250505092915050565b5f610dd282611532565b9050919050565b5f5f610de483611ab6565b03610e1b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f6119646103e884610e7d9190612274565b610e879190612206565b905080915050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600e81526020017f50726f6f66206f662050756e6b73000000000000000000000000000000000000815250905090565b5f610f1c6115f6565b905061271082610f2a610a34565b610f34919061230c565b1115610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90612755565b60405180910390fd5b346703782dace9d9000083610f8a9190612206565b1115610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc2906127bd565b60405180910390fd5b8160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611017919061230c565b925050819055506110288183611961565b5050565b6110346115f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611098576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f6110a46115f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661114d6115f6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111929190611bd3565b60405180910390a35050565b6111a9848484611604565b50505050565b6703782dace9d9000081565b60606111c682611512565b6111fc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6002805461120a906123d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611236906123d4565b80156112815780601f1061125857610100808354040283529160200191611281565b820191905f5260205f20905b81548152906001019060200180831161126457829003601f168201915b505050505090505f8151036112a45760405180602001604052805f8152506112cf565b806112ae84611abf565b6040516020016112bf9291906128f3565b6040516020818303038152906040525b915050919050565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600b8181548110611374575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6113a96115f6565b90505f60019050612710816113bc610a34565b6113c6919061230c565b1115611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90612755565b60405180910390fd5b60018160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611452919061230c565b1115611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90612981565b60405180910390fd5b5f6114a461149f610a34565b610e6a565b90506114af81610d2f565b508160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546114fc919061230c565b9250508190555061150d8383611961565b505050565b5f8161151c6115fd565b1115801561152b575060045482105b9050919050565b5f5f829050806115406115fd565b116115bf576004548110156115be575f60055f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036115bc575b5f81036115b25760055f836001900393508381526020019081526020015f2054905061158b565b80925050506115f1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61160e82611532565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611675576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60075f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166116c96115f6565b73ffffffffffffffffffffffffffffffffffffffff1614806116f857506116f7866116f26115f6565b6112d7565b5b8061173557506117066115f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061176e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61177883611ab6565b146117b15760075f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61187287611ab6565b171760055f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036118f1575f6001850190505f60055f8381526020019081526020015f2054036118ef5760045481146118ee578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119598686866001611b19565b505050505050565b5f60045490505f82036119a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e1611a0260018414611b1f565b901b60a042901b611a1285611ab6565b171760055f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611a3457816004819055505050611ab15f848385611b19565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b0557600183039250600a81066030018353600a81049050611ae5565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b6d81611b39565b8114611b77575f5ffd5b50565b5f81359050611b8881611b64565b92915050565b5f60208284031215611ba357611ba2611b31565b5b5f611bb084828501611b7a565b91505092915050565b5f8115159050919050565b611bcd81611bb9565b82525050565b5f602082019050611be65f830184611bc4565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c2e82611bec565b611c388185611bf6565b9350611c48818560208601611c06565b611c5181611c14565b840191505092915050565b5f6020820190508181035f830152611c748184611c24565b905092915050565b5f819050919050565b611c8e81611c7c565b8114611c98575f5ffd5b50565b5f81359050611ca981611c85565b92915050565b5f60208284031215611cc457611cc3611b31565b5b5f611cd184828501611c9b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d0382611cda565b9050919050565b611d1381611cf9565b82525050565b5f602082019050611d2c5f830184611d0a565b92915050565b611d3b81611cf9565b8114611d45575f5ffd5b50565b5f81359050611d5681611d32565b92915050565b5f5f60408385031215611d7257611d71611b31565b5b5f611d7f85828601611d48565b9250506020611d9085828601611c9b565b9150509250929050565b611da381611c7c565b82525050565b5f602082019050611dbc5f830184611d9a565b92915050565b5f5f5f60608486031215611dd957611dd8611b31565b5b5f611de686828701611d48565b9350506020611df786828701611d48565b9250506040611e0886828701611c9b565b9150509250925092565b5f5f60408385031215611e2857611e27611b31565b5b5f611e3585828601611c9b565b9250506020611e4685828601611c9b565b9150509250929050565b5f604082019050611e635f830185611d0a565b611e706020830184611d9a565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611eb582611c14565b810181811067ffffffffffffffff82111715611ed457611ed3611e7f565b5b80604052505050565b5f611ee6611b28565b9050611ef28282611eac565b919050565b5f67ffffffffffffffff821115611f1157611f10611e7f565b5b611f1a82611c14565b9050602081019050919050565b828183375f83830152505050565b5f611f47611f4284611ef7565b611edd565b905082815260208101848484011115611f6357611f62611e7b565b5b611f6e848285611f27565b509392505050565b5f82601f830112611f8a57611f89611e77565b5b8135611f9a848260208601611f35565b91505092915050565b5f60208284031215611fb857611fb7611b31565b5b5f82013567ffffffffffffffff811115611fd557611fd4611b35565b5b611fe184828501611f76565b91505092915050565b5f60208284031215611fff57611ffe611b31565b5b5f61200c84828501611d48565b91505092915050565b61201e81611bb9565b8114612028575f5ffd5b50565b5f8135905061203981612015565b92915050565b5f5f6040838503121561205557612054611b31565b5b5f61206285828601611d48565b92505060206120738582860161202b565b9150509250929050565b5f67ffffffffffffffff82111561209757612096611e7f565b5b6120a082611c14565b9050602081019050919050565b5f6120bf6120ba8461207d565b611edd565b9050828152602081018484840111156120db576120da611e7b565b5b6120e6848285611f27565b509392505050565b5f82601f83011261210257612101611e77565b5b81356121128482602086016120ad565b91505092915050565b5f5f5f5f6080858703121561213357612132611b31565b5b5f61214087828801611d48565b945050602061215187828801611d48565b935050604061216287828801611c9b565b925050606085013567ffffffffffffffff81111561218357612182611b35565b5b61218f878288016120ee565b91505092959194509250565b5f5f604083850312156121b1576121b0611b31565b5b5f6121be85828601611d48565b92505060206121cf85828601611d48565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61221082611c7c565b915061221b83611c7c565b925082820261222981611c7c565b915082820484148315176122405761223f6121d9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61227e82611c7c565b915061228983611c7c565b92508261229957612298612247565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f6122d8600983611bf6565b91506122e3826122a4565b602082019050919050565b5f6020820190508181035f830152612305816122cc565b9050919050565b5f61231682611c7c565b915061232183611c7c565b9250828201905080821115612339576123386121d9565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f612373600e83611bf6565b915061237e8261233f565b602082019050919050565b5f6020820190508181035f8301526123a081612367565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123eb57607f821691505b6020821081036123fe576123fd6123a7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026124607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612425565b61246a8683612425565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6124a56124a061249b84611c7c565b612482565b611c7c565b9050919050565b5f819050919050565b6124be8361248b565b6124d26124ca826124ac565b848454612431565b825550505050565b5f5f905090565b6124e96124da565b6124f48184846124b5565b505050565b5b818110156125175761250c5f826124e1565b6001810190506124fa565b5050565b601f82111561255c5761252d81612404565b61253684612416565b81016020851015612545578190505b61255961255185612416565b8301826124f9565b50505b505050565b5f82821c905092915050565b5f61257c5f1984600802612561565b1980831691505092915050565b5f612594838361256d565b9150826002028217905092915050565b6125ad82611bec565b67ffffffffffffffff8111156125c6576125c5611e7f565b5b6125d082546123d4565b6125db82828561251b565b5f60209050601f83116001811461260c575f84156125fa578287015190505b6126048582612589565b86555061266b565b601f19841661261a86612404565b5f5b828110156126415784890151825560018201915060208501945060208101905061261c565b8683101561265e578489015161265a601f89168261256d565b8355505b6001600288020188555050505b505050505050565b5f61267d82611c7c565b915061268883611c7c565b92508282039050818111156126a05761269f6121d9565b5b92915050565b5f6060820190506126b95f830186611d9a565b6126c66020830185611d0a565b6126d36040830184611d9a565b949350505050565b5f6126e582611c7c565b91506126f083611c7c565b925082612700576126ff612247565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f61273f600883611bf6565b915061274a8261270b565b602082019050919050565b5f6020820190508181035f83015261276c81612733565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6127a7600c83611bf6565b91506127b282612773565b602082019050919050565b5f6020820190508181035f8301526127d48161279b565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6128196007836127db565b9150612824826127e5565b600782019050919050565b5f61283982611bec565b61284381856127db565b9350612853818560208601611c06565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6128936001836127db565b915061289e8261285f565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6128dd6005836127db565b91506128e8826128a9565b600582019050919050565b5f6128fd8261280d565b9150612909828561282f565b915061291482612887565b9150612920828461282f565b915061292b826128d1565b91508190509392505050565b7f4d617820726561636865642e00000000000000000000000000000000000000005f82015250565b5f61296b600c83611bf6565b915061297682612937565b602082019050919050565b5f6020820190508181035f8301526129988161295f565b905091905056fea2646970667358221220152248602e9b0479c1fe52b634c12ada0f62d537d48004da43a49b3fa7a3593464736f6c634300081c0033
Deployed Bytecode Sourcemap
16946:22880:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22613:674;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26879:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28546:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28029:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17216:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21856:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29432:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20863:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;39302:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17167:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39678:145;;;;;;;;;;;;;:::i;:::-;;29693:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21145:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18486:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39263:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38947:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26668:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23351:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17570:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17043:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32761:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27048:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18149:306;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28822:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29969:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17265:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27166:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29201:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32807:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17713:428;;;:::i;:::-;;22613:674;22698:4;23013:10;22998:25;;:11;:25;;;;:102;;;;23090:10;23075:25;;:11;:25;;;;22998:102;:179;;;;23167:10;23152:25;;:11;:25;;;;22998:179;:238;;;;23226:10;23211:25;;:11;:25;;;;22998:238;22978:258;;22613:674;;;:::o;26879:100::-;26933:13;26966:5;;;;;;;;;;;;;;;;;26959:12;;26879:100;:::o;28546:204::-;28614:7;28639:16;28647:7;28639;:16::i;:::-;28634:64;;28664:34;;;;;;;;;;;;;;28634:64;28718:15;:24;28734:7;28718:24;;;;;;;;;;;;;;;;;;;;;28711:31;;28546:204;;;:::o;28029:451::-;28102:13;28134:27;28153:7;28134:18;:27::i;:::-;28102:61;;28184:5;28178:11;;:2;:11;;;28174:25;;28191:8;;;28174:25;28239:5;28216:28;;:19;:17;:19::i;:::-;:28;;;28212:175;;28264:44;28281:5;28288:19;:17;:19::i;:::-;28264:16;:44::i;:::-;28259:128;;28336:35;;;;;;;;;;;;;;28259:128;28212:175;28426:2;28399:15;:24;28415:7;28399:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28464:7;28460:2;28444:28;;28453:5;28444:28;;;;;;;;;;;;28091:389;28029:451;;:::o;17216:42::-;17257:1;17216:42;:::o;21856:300::-;21909:7;22122:15;:13;:15::i;:::-;22106:13;;:31;22099:38;;21856:300;:::o;29432:190::-;29586:28;29596:4;29602:2;29606:7;29586:9;:28::i;:::-;29432:190;;;:::o;20863:274::-;20962:16;20980:21;21030:6;;;;;;;;;;;21019:17;;21083:5;21076:3;21064:9;:15;;;;:::i;:::-;21063:25;;;;:::i;:::-;21047:41;;20863:274;;;;;:::o;39302:169::-;39528:10;39520:18;;:6;;;;;;;;;;;:18;;;39512:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;17204:5:::1;39389:6;39373:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;39365:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39438:25;39444:10;39456:6;39438:5;:25::i;:::-;39302:169:::0;:::o;17167:42::-;17204:5;17167:42;:::o;39678:145::-;39528:10;39520:18;;:6;;;;;;;;;;;:18;;;39512:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;39728:15:::1;39746:21;39728:39;;39786:10;39778:28;;:37;39807:7;39778:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39717:106;39678:145::o:0;29693:205::-;29851:39;29868:4;29874:2;29878:7;29851:39;;;;;;;;;;;;:16;:39::i;:::-;29693:205;;;:::o;21145:91::-;39528:10;39520:18;;:6;;;;;;;;;;;:18;;;39512:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;21223:5:::1;21212:8;:16;;;;;;:::i;:::-;;21145:91:::0;:::o;18486:119::-;18530:7;18554:6;18549:52;18566:4;18562:1;:8;18549:52;;;18594:1;18592;:3;;;;:::i;:::-;18582:7;:13;;;;18572:3;;;;;;;18549:52;;;;18486:119;;;:::o;39263:32::-;;;;;;;;;;;;;:::o;38947:308::-;39028:7;39048:19;39085:1;39070:12;:16;;;;:::i;:::-;39048:38;;39130:17;39171:11;39184:10;39196:7;39160:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39150:55;;;;;;39130:75;;39244:3;39231:9;39223:18;;:24;;;;:::i;:::-;39216:31;;;;38947:308;;;;:::o;26668:144::-;26732:7;26775:27;26794:7;26775:18;:27::i;:::-;26752:52;;26668:144;;;:::o;23351:234::-;23415:7;23467:1;23439:24;23457:5;23439:17;:24::i;:::-;:29;23435:70;;23477:28;;;;;;;;;;;;;;23435:70;18716:13;23523:18;:25;23542:5;23523:25;;;;;;;;;;;;;;;;:54;23516:61;;23351:234;;;:::o;17570:135::-;17620:7;17639:10;17665:8;17656:4;17653:2;:7;;;;:::i;:::-;17652:22;;;;:::i;:::-;17639:35;;17692:5;17685:12;;;17570:135;;;:::o;17043:77::-;17080:7;17106:6;;;;;;;;;;;17099:13;;17043:77;:::o;32761:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;27048:104::-;27104:13;27137:7;;;;;;;;;;;;;;;;;27130:14;;27048:104;:::o;18149:306::-;18206:15;18224:19;:17;:19::i;:::-;18206:37;;17204:5;18280:6;18264:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;18256:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;18347:9;17296:10;18332:6;:11;;;;:::i;:::-;:24;;18324:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;18408:6;18386;:18;18393:10;18386:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18425:22;18431:7;18440:6;18425:5;:22::i;:::-;18195:260;18149:306;:::o;28822:308::-;28933:19;:17;:19::i;:::-;28921:31;;:8;:31;;;28917:61;;28961:17;;;;;;;;;;;;;;28917:61;29043:8;28991:18;:39;29010:19;:17;:19::i;:::-;28991:39;;;;;;;;;;;;;;;:49;29031:8;28991:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29103:8;29067:55;;29082:19;:17;:19::i;:::-;29067:55;;;29113:8;29067:55;;;;;;:::i;:::-;;;;;;;;28822:308;;:::o;29969:227::-;30160:28;30170:4;30176:2;30180:7;30160:9;:28::i;:::-;29969:227;;;;:::o;17265:41::-;17296:10;17265:41;:::o;27166:339::-;27239:13;27270:16;27278:7;27270;:16::i;:::-;27265:59;;27295:29;;;;;;;;;;;;;;27265:59;27335:21;27359:8;27335:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27410:1;27391:7;27385:21;:26;:112;;;;;;;;;;;;;;;;;27449:7;27463:18;27473:7;27463:9;:18::i;:::-;27421:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27385:112;27378:119;;;27166:339;;;:::o;29201:164::-;29298:4;29322:18;:25;29341:5;29322:25;;;;;;;;;;;;;;;:35;29348:8;29322:35;;;;;;;;;;;;;;;;;;;;;;;;;29315:42;;29201:164;;;;:::o;32807:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17713:428::-;17760:15;17778:19;:17;:19::i;:::-;17760:37;;17808:11;17257:1;17808:28;;17204:5;17873:6;17857:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;17849:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;17257:1;17944:6;17925;:18;17932:10;17925:18;;;;;;;;;;;;;;;;:25;;;;:::i;:::-;:43;;17917:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17998:13;18014:23;18023:13;:11;:13::i;:::-;18014:8;:23::i;:::-;17998:39;;18048:11;18053:5;18048:4;:11::i;:::-;;18094:6;18072;:18;18079:10;18072:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18111:22;18117:7;18126:6;18111:5;:22::i;:::-;17749:392;;;17713:428::o;30451:168::-;30508:4;30564:7;30545:15;:13;:15::i;:::-;:26;;:66;;;;;30598:13;;30588:7;:23;30545:66;30525:86;;30451:168;;;:::o;24183:1129::-;24250:7;24270:12;24285:7;24270:22;;24353:4;24334:15;:13;:15::i;:::-;:23;24330:915;;24387:13;;24380:4;:20;24376:869;;;24425:14;24442:17;:23;24460:4;24442:23;;;;;;;;;;;;24425:40;;24558:1;19486:8;24531:6;:23;:28;24527:699;;25050:113;25067:1;25057:6;:11;25050:113;;25110:17;:25;25128:6;;;;;;;25110:25;;;;;;;;;;;;25101:34;;25050:113;;;25196:6;25189:13;;;;;;24527:699;24402:843;24376:869;24330:915;25273:31;;;;;;;;;;;;;;24183:1129;;;;:::o;36846:105::-;36906:7;36933:10;36926:17;;36846:105;:::o;21379:92::-;21435:7;21462:1;21455:8;;21379:92;:::o;32836:2561::-;32977:27;33007;33026:7;33007:18;:27::i;:::-;32977:57;;33092:4;33051:45;;33067:19;33051:45;;;33047:86;;33105:28;;;;;;;;;;;;;;33047:86;33146:23;33172:15;:24;33188:7;33172:24;;;;;;;;;;;;;;;;;;;;;33146:50;;33209:22;33258:4;33235:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;33283:43;33300:4;33306:19;:17;:19::i;:::-;33283:16;:43::i;:::-;33235:91;:150;;;;33366:19;:17;:19::i;:::-;33347:38;;:15;:38;;;33235:150;33209:177;;33404:17;33399:66;;33430:35;;;;;;;;;;;;;;33399:66;33575:1;33537:34;33555:15;33537:17;:34::i;:::-;:39;33533:103;;33600:15;:24;33616:7;33600:24;;;;;;;;;;;;33593:31;;;;;;;;;;;33533:103;34003:18;:24;34022:4;34003:24;;;;;;;;;;;;;;;;34001:26;;;;;;;;;;;;34072:18;:22;34091:2;34072:22;;;;;;;;;;;;;;;;34070:24;;;;;;;;;;;19764:8;19370:3;34453:15;:41;;34411:21;34429:2;34411:17;:21::i;:::-;:84;:128;34365:17;:26;34383:7;34365:26;;;;;;;;;;;:174;;;;34709:1;19764:8;34659:19;:46;:51;34655:626;;34731:19;34763:1;34753:7;:11;34731:33;;34920:1;34886:17;:30;34904:11;34886:30;;;;;;;;;;;;:35;34882:384;;35024:13;;35009:11;:28;35005:242;;35204:19;35171:17;:30;35189:11;35171:30;;;;;;;;;;;:52;;;;35005:242;34882:384;34712:569;34655:626;35328:7;35324:2;35309:27;;35318:4;35309:27;;;;;;;;;;;;35347:42;35368:4;35374:2;35378:7;35387:1;35347:20;:42::i;:::-;32960:2437;;;32836:2561;;;:::o;30884:1596::-;30949:20;30972:13;;30949:36;;31083:1;31071:8;:13;31067:44;;31093:18;;;;;;;;;;;;;;31067:44;31656:1;18853:2;31627:1;:25;;31626:31;31614:8;:44;31588:18;:22;31607:2;31588:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;19629:3;32057:29;32084:1;32072:8;:13;32057:14;:29::i;:::-;:56;;19370:3;31994:15;:41;;31952:21;31970:2;31952:17;:21::i;:::-;:84;:162;31901:17;:31;31919:12;31901:31;;;;;;;;;;;:213;;;;32131:20;32154:12;32131:35;;32181:11;32210:8;32195:12;:23;32181:37;;32235:111;32287:14;;;;;;32283:2;32262:40;;32279:1;32262:40;;;;;;;;;;;;32341:3;32326:12;:18;32235:111;;32378:12;32362:13;:28;;;;31365:1037;;32412:60;32441:1;32445:2;32449:12;32463:8;32412:20;:60::i;:::-;30938:1542;30884:1596;;:::o;27590:148::-;27654:14;27715:5;27705:15;;27590:148;;;:::o;37057:1882::-;37114:17;37535:3;37528:4;37522:11;37518:21;37511:28;;37622:3;37616:4;37609:17;37722:3;38158:5;38290:1;38285:3;38281:11;38274:18;;38429:2;38423:4;38419:13;38415:2;38411:22;38406:3;38398:36;38471:2;38465:4;38461:13;38453:21;;38055:661;38487:4;38055:661;;;38655:1;38650:3;38646:11;38639:18;;38699:2;38693:4;38689:13;38685:2;38681:22;38676:3;38668:36;38572:2;38566:4;38562:13;38554:21;;38055:661;;;38059:427;38748:3;38743;38739:13;38857:2;38852:3;38848:12;38841:19;;38914:6;38909:3;38902:19;37153:1779;;37057:1882;;;:::o;36428:213::-;;;;;:::o;27825:142::-;27883:14;27944:5;27934:15;;27825: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:164::-;15081:16;15077:1;15069:6;15065:14;15058:40;14941:164;:::o;15111:366::-;15253:3;15274:67;15338:2;15333:3;15274:67;:::i;:::-;15267:74;;15350:93;15439:3;15350:93;:::i;:::-;15468:2;15463:3;15459:12;15452:19;;15111:366;;;:::o;15483:419::-;15649:4;15687:2;15676:9;15672:18;15664:26;;15736:9;15730:4;15726:20;15722:1;15711:9;15707:17;15700:47;15764:131;15890:4;15764:131;:::i;:::-;15756:139;;15483:419;;;:::o;15908:180::-;15956:77;15953:1;15946:88;16053:4;16050:1;16043:15;16077:4;16074:1;16067:15;16094:320;16138:6;16175:1;16169:4;16165:12;16155:22;;16222:1;16216:4;16212:12;16243:18;16233:81;;16299:4;16291:6;16287:17;16277:27;;16233:81;16361:2;16353:6;16350:14;16330:18;16327:38;16324:84;;16380:18;;:::i;:::-;16324:84;16145:269;16094:320;;;:::o;16420:141::-;16469:4;16492:3;16484:11;;16515:3;16512:1;16505:14;16549:4;16546:1;16536:18;16528:26;;16420:141;;;:::o;16567:93::-;16604:6;16651:2;16646;16639:5;16635:14;16631:23;16621:33;;16567:93;;;:::o;16666:107::-;16710:8;16760:5;16754:4;16750:16;16729:37;;16666:107;;;;:::o;16779:393::-;16848:6;16898:1;16886:10;16882:18;16921:97;16951:66;16940:9;16921:97;:::i;:::-;17039:39;17069:8;17058:9;17039:39;:::i;:::-;17027:51;;17111:4;17107:9;17100:5;17096:21;17087:30;;17160:4;17150:8;17146:19;17139:5;17136:30;17126:40;;16855:317;;16779:393;;;;;:::o;17178:60::-;17206:3;17227:5;17220:12;;17178:60;;;:::o;17244:142::-;17294:9;17327:53;17345:34;17354:24;17372:5;17354:24;:::i;:::-;17345:34;:::i;:::-;17327:53;:::i;:::-;17314:66;;17244:142;;;:::o;17392:75::-;17435:3;17456:5;17449:12;;17392:75;;;:::o;17473:269::-;17583:39;17614:7;17583:39;:::i;:::-;17644:91;17693:41;17717:16;17693:41;:::i;:::-;17685:6;17678:4;17672:11;17644:91;:::i;:::-;17638:4;17631:105;17549:193;17473:269;;;:::o;17748:73::-;17793:3;17814:1;17807:8;;17748:73;:::o;17827:189::-;17904:32;;:::i;:::-;17945:65;18003:6;17995;17989:4;17945:65;:::i;:::-;17880:136;17827:189;;:::o;18022:186::-;18082:120;18099:3;18092:5;18089:14;18082:120;;;18153:39;18190:1;18183:5;18153:39;:::i;:::-;18126:1;18119:5;18115:13;18106:22;;18082:120;;;18022:186;;:::o;18214:543::-;18315:2;18310:3;18307:11;18304:446;;;18349:38;18381:5;18349:38;:::i;:::-;18433:29;18451:10;18433:29;:::i;:::-;18423:8;18419:44;18616:2;18604:10;18601:18;18598:49;;;18637:8;18622:23;;18598:49;18660:80;18716:22;18734:3;18716:22;:::i;:::-;18706:8;18702:37;18689:11;18660:80;:::i;:::-;18319:431;;18304:446;18214:543;;;:::o;18763:117::-;18817:8;18867:5;18861:4;18857:16;18836:37;;18763:117;;;;:::o;18886:169::-;18930:6;18963:51;19011:1;19007:6;18999:5;18996:1;18992:13;18963:51;:::i;:::-;18959:56;19044:4;19038;19034:15;19024:25;;18937:118;18886:169;;;;:::o;19060:295::-;19136:4;19282:29;19307:3;19301:4;19282:29;:::i;:::-;19274:37;;19344:3;19341:1;19337:11;19331:4;19328:21;19320:29;;19060:295;;;;:::o;19360:1395::-;19477:37;19510:3;19477:37;:::i;:::-;19579:18;19571:6;19568:30;19565:56;;;19601:18;;:::i;:::-;19565:56;19645:38;19677:4;19671:11;19645:38;:::i;:::-;19730:67;19790:6;19782;19776:4;19730:67;:::i;:::-;19824:1;19848:4;19835:17;;19880:2;19872:6;19869:14;19897:1;19892:618;;;;20554:1;20571:6;20568:77;;;20620:9;20615:3;20611:19;20605:26;20596:35;;20568:77;20671:67;20731:6;20724:5;20671:67;:::i;:::-;20665:4;20658:81;20527:222;19862:887;;19892:618;19944:4;19940:9;19932:6;19928:22;19978:37;20010:4;19978:37;:::i;:::-;20037:1;20051:208;20065:7;20062:1;20059:14;20051:208;;;20144:9;20139:3;20135:19;20129:26;20121:6;20114:42;20195:1;20187:6;20183:14;20173:24;;20242:2;20231:9;20227:18;20214:31;;20088:4;20085:1;20081:12;20076:17;;20051:208;;;20287:6;20278:7;20275:19;20272:179;;;20345:9;20340:3;20336:19;20330:26;20388:48;20430:4;20422:6;20418:17;20407:9;20388:48;:::i;:::-;20380:6;20373:64;20295:156;20272:179;20497:1;20493;20485:6;20481:14;20477:22;20471:4;20464:36;19899:611;;;19862:887;;19452:1303;;;19360:1395;;:::o;20761:194::-;20801:4;20821:20;20839:1;20821:20;:::i;:::-;20816:25;;20855:20;20873:1;20855:20;:::i;:::-;20850:25;;20899:1;20896;20892:9;20884:17;;20923:1;20917:4;20914:11;20911:37;;;20928:18;;:::i;:::-;20911:37;20761:194;;;;:::o;20961:442::-;21110:4;21148:2;21137:9;21133:18;21125:26;;21161:71;21229:1;21218:9;21214:17;21205:6;21161:71;:::i;:::-;21242:72;21310:2;21299:9;21295:18;21286:6;21242:72;:::i;:::-;21324;21392:2;21381:9;21377:18;21368:6;21324:72;:::i;:::-;20961:442;;;;;;:::o;21409:176::-;21441:1;21458:20;21476:1;21458:20;:::i;:::-;21453:25;;21492:20;21510:1;21492:20;:::i;:::-;21487:25;;21531:1;21521:35;;21536:18;;:::i;:::-;21521:35;21577:1;21574;21570:9;21565:14;;21409:176;;;;:::o;21591:158::-;21731:10;21727:1;21719:6;21715:14;21708:34;21591:158;:::o;21755:365::-;21897:3;21918:66;21982:1;21977:3;21918:66;:::i;:::-;21911:73;;21993:93;22082:3;21993:93;:::i;:::-;22111:2;22106:3;22102:12;22095:19;;21755:365;;;:::o;22126:419::-;22292:4;22330:2;22319:9;22315:18;22307:26;;22379:9;22373:4;22369:20;22365:1;22354:9;22350:17;22343:47;22407:131;22533:4;22407:131;:::i;:::-;22399:139;;22126:419;;;:::o;22551:162::-;22691:14;22687:1;22679:6;22675:14;22668:38;22551:162;:::o;22719:366::-;22861:3;22882:67;22946:2;22941:3;22882:67;:::i;:::-;22875:74;;22958:93;23047:3;22958:93;:::i;:::-;23076:2;23071:3;23067:12;23060:19;;22719:366;;;:::o;23091:419::-;23257:4;23295:2;23284:9;23280:18;23272:26;;23344:9;23338:4;23334:20;23330:1;23319:9;23315:17;23308:47;23372:131;23498:4;23372:131;:::i;:::-;23364:139;;23091:419;;;:::o;23516:148::-;23618:11;23655:3;23640:18;;23516:148;;;;:::o;23670:161::-;23810:9;23806:1;23798:6;23794:14;23787:33;23670:161;:::o;23841:416::-;24001:3;24026:84;24108:1;24103:3;24026:84;:::i;:::-;24019:91;;24123:93;24212:3;24123:93;:::i;:::-;24245:1;24240:3;24236:11;24229:18;;23841:416;;;:::o;24267:410::-;24373:3;24405:39;24438:5;24405:39;:::i;:::-;24464:89;24546:6;24541:3;24464:89;:::i;:::-;24457:96;;24566:65;24624:6;24619:3;24612:4;24605:5;24601:16;24566:65;:::i;:::-;24660:6;24655:3;24651:16;24644:23;;24377:300;24267:410;;;;:::o;24687:159::-;24831:3;24827:1;24819:6;24815:14;24808:27;24687:159;:::o;24856:416::-;25016:3;25041:84;25123:1;25118:3;25041:84;:::i;:::-;25034:91;;25138:93;25227:3;25138:93;:::i;:::-;25260:1;25255:3;25251:11;25244:18;;24856:416;;;:::o;25282:163::-;25426:7;25422:1;25414:6;25410:14;25403:31;25282:163;:::o;25455:416::-;25615:3;25640:84;25722:1;25717:3;25640:84;:::i;:::-;25633:91;;25737:93;25826:3;25737:93;:::i;:::-;25859:1;25854:3;25850:11;25843:18;;25455:416;;;:::o;25881:1261::-;26364:3;26390:148;26534:3;26390:148;:::i;:::-;26383:155;;26559:95;26650:3;26641:6;26559:95;:::i;:::-;26552:102;;26675:148;26819:3;26675:148;:::i;:::-;26668:155;;26844:95;26935:3;26926:6;26844:95;:::i;:::-;26837:102;;26960:148;27104:3;26960:148;:::i;:::-;26953:155;;27129:3;27122:10;;25881:1261;;;;;:::o;27152:170::-;27296:14;27292:1;27284:6;27280:14;27273:38;27152:170;:::o;27332:382::-;27474:3;27499:67;27563:2;27558:3;27499:67;:::i;:::-;27492:74;;27579:93;27668:3;27579:93;:::i;:::-;27701:2;27696:3;27692:12;27685:19;;27332:382;;;:::o;27724:435::-;27890:4;27932:2;27921:9;27917:18;27909:26;;27985:9;27979:4;27975:20;27971:1;27960:9;27956:17;27949:47;28017:131;28143:4;28017:131;:::i;:::-;28009:139;;27724:435;;;:::o
Swarm Source
ipfs://152248602e9b0479c1fe52b634c12ada0f62d537d48004da43a49b3fa7a35934
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.