ERC-721
Overview
Max Total Supply
382 PastelFluffy
Holders
193
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 PastelFluffyLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PastelFluffy
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-28 */ // File: code-sample/fluffy/PastelFluffy.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: contracts/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: contracts/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/PastelFluffy.sol pragma solidity >=0.8.4 <0.9.0; contract PastelFluffy is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI = ''; string public hiddenMetadataUri; uint256 public cost = 0.008 ether; uint256 public maxSupply = 999; uint256 public maxMintAmount = 2; uint256 public maxPerTxn = 2; bool public revealed = true; bool public paused = false; constructor( string memory _tokenName, string memory _tokenSymbol, string memory _hiddenMetadataUri ) ERC721A(_tokenName, _tokenSymbol) { setHiddenMetadataUri(_hiddenMetadataUri); } modifier mintCompliance(uint256 _mintAmount) { require(!paused, "The contract is currently paused!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply minted."); require(_mintAmount > 0 && _mintAmount <= maxPerTxn, "Mint amount exceeds per transaction limit."); //require(tx.origin == msg.sender, "Calling from another contract is not allowed."); require( _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMintAmount, "Invalid mint amount or minted max amount!" ); _; } modifier mintPriceCompliance(uint256 _mintAmount) { uint256 costToSubtract = 0; require(msg.value >= cost * _mintAmount - costToSubtract, "Insufficient funds."); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString())) : ''; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setbaseURI(string memory _uri) public onlyOwner { baseURI = _uri; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { (bool devSuccess, ) = payable(owner()).call{value: address(this).balance}(''); require(devSuccess); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setbaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a908162000024919062000548565b50661c6bf526340000600c556103e7600d556002600e556002600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200008357600080fd5b506040516200422d3803806200422d8339818101604052810190620000a9919062000793565b82828160029081620000bc919062000548565b508060039081620000ce919062000548565b50620000df6200012960201b60201c565b600081905550505062000107620000fb6200013260201b60201c565b6200013a60201b60201c565b600160098190555062000120816200020060201b60201c565b505050620008cf565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002106200013260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000236620002a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200028f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028690620008ad565b60405180910390fd5b80600b9081620002a0919062000548565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035057607f821691505b60208210810362000366576200036562000308565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003d07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000391565b620003dc868362000391565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000429620004236200041d84620003f4565b620003fe565b620003f4565b9050919050565b6000819050919050565b620004458362000408565b6200045d620004548262000430565b8484546200039e565b825550505050565b600090565b6200047462000465565b620004818184846200043a565b505050565b5b81811015620004a9576200049d6000826200046a565b60018101905062000487565b5050565b601f821115620004f857620004c2816200036c565b620004cd8462000381565b81016020851015620004dd578190505b620004f5620004ec8562000381565b83018262000486565b50505b505050565b600082821c905092915050565b60006200051d60001984600802620004fd565b1980831691505092915050565b60006200053883836200050a565b9150826002028217905092915050565b6200055382620002ce565b67ffffffffffffffff8111156200056f576200056e620002d9565b5b6200057b825462000337565b62000588828285620004ad565b600060209050601f831160018114620005c05760008415620005ab578287015190505b620005b785826200052a565b86555062000627565b601f198416620005d0866200036c565b60005b82811015620005fa57848901518255600182019150602085019450602081019050620005d3565b868310156200061a578489015162000616601f8916826200050a565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000669826200064d565b810181811067ffffffffffffffff821117156200068b576200068a620002d9565b5b80604052505050565b6000620006a06200062f565b9050620006ae82826200065e565b919050565b600067ffffffffffffffff821115620006d157620006d0620002d9565b5b620006dc826200064d565b9050602081019050919050565b60005b8381101562000709578082015181840152602081019050620006ec565b60008484015250505050565b60006200072c6200072684620006b3565b62000694565b9050828152602081018484840111156200074b576200074a62000648565b5b62000758848285620006e9565b509392505050565b600082601f83011262000778576200077762000643565b5b81516200078a84826020860162000715565b91505092915050565b600080600060608486031215620007af57620007ae62000639565b5b600084015167ffffffffffffffff811115620007d057620007cf6200063e565b5b620007de8682870162000760565b935050602084015167ffffffffffffffff8111156200080257620008016200063e565b5b620008108682870162000760565b925050604084015167ffffffffffffffff8111156200083457620008336200063e565b5b620008428682870162000760565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008956020836200084c565b9150620008a2826200085d565b602082019050919050565b60006020820190508181036000830152620008c88162000886565b9050919050565b61394e80620008df6000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a45ba8e7116100a0578063dc33e6811161006f578063dc33e681146106ee578063e0a808531461072b578063e985e9c514610754578063efbd73f414610791578063f2fde38b146107ba576101f9565b8063a45ba8e714610632578063b88d4fde1461065d578063c87b56dd14610686578063d5abeb01146106c3576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059757806395d89b41146105c2578063a0712d68146105ed578063a22cb46514610609576101f9565b80636352211e146104db5780636c0360eb1461051857806370a0823114610543578063715018a614610580576101f9565b806323b872dd1161019057806344a0d68a1161015f57806344a0d68a1461040a5780634a44f379146104335780634fdd43cb1461045c57806351830227146104855780635c975abb146104b0576101f9565b806323b872dd146103765780633cb519941461039f5780633ccfd60b146103ca57806342842e0e146103e1576101f9565b806313faede6116101cc57806313faede6146102cc57806316c38b3c146102f757806318160ddd14610320578063239c70ae1461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612735565b6107e3565b604051610232919061277d565b60405180910390f35b34801561024757600080fd5b50610250610875565b60405161025d9190612828565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612880565b610907565b60405161029a91906128ee565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612935565b610983565b005b3480156102d857600080fd5b506102e1610b29565b6040516102ee9190612984565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906129cb565b610b2f565b005b34801561032c57600080fd5b50610335610bc8565b6040516103429190612984565b60405180910390f35b34801561035757600080fd5b50610360610bdf565b60405161036d9190612984565b60405180910390f35b34801561038257600080fd5b5061039d600480360381019061039891906129f8565b610be5565b005b3480156103ab57600080fd5b506103b4610bf5565b6040516103c19190612984565b60405180910390f35b3480156103d657600080fd5b506103df610bfb565b005b3480156103ed57600080fd5b50610408600480360381019061040391906129f8565b610d4c565b005b34801561041657600080fd5b50610431600480360381019061042c9190612880565b610d6c565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612b80565b610df2565b005b34801561046857600080fd5b50610483600480360381019061047e9190612b80565b610e81565b005b34801561049157600080fd5b5061049a610f10565b6040516104a7919061277d565b60405180910390f35b3480156104bc57600080fd5b506104c5610f23565b6040516104d2919061277d565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612880565b610f36565b60405161050f91906128ee565b60405180910390f35b34801561052457600080fd5b5061052d610f48565b60405161053a9190612828565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612bc9565b610fd6565b6040516105779190612984565b60405180910390f35b34801561058c57600080fd5b5061059561108e565b005b3480156105a357600080fd5b506105ac611116565b6040516105b991906128ee565b60405180910390f35b3480156105ce57600080fd5b506105d7611140565b6040516105e49190612828565b60405180910390f35b61060760048036038101906106029190612880565b6111d2565b005b34801561061557600080fd5b50610630600480360381019061062b9190612bf6565b6113a4565b005b34801561063e57600080fd5b5061064761151b565b6040516106549190612828565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612cd7565b6115a9565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612880565b61161c565b6040516106ba9190612828565b60405180910390f35b3480156106cf57600080fd5b506106d8611771565b6040516106e59190612984565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190612bc9565b611777565b6040516107229190612984565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d91906129cb565b611789565b005b34801561076057600080fd5b5061077b60048036038101906107769190612d5a565b611822565b604051610788919061277d565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190612d9a565b6118b6565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190612bc9565b611997565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088490612e09565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090612e09565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b600061091282611a8e565b610948576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098e82611aed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a14611bb9565b73ffffffffffffffffffffffffffffffffffffffff1614610a7757610a4081610a3b611bb9565b611822565b610a76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610b37611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610b55611116565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290612e86565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000610bd2611bc9565b6001546000540303905090565b600e5481565b610bf0838383611bd2565b505050565b600f5481565b610c03611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610c21611116565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90612e86565b60405180910390fd5b600260095403610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390612ef2565b60405180910390fd5b60026009819055506000610cce611116565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf190612f43565b60006040518083038185875af1925050503d8060008114610d2e576040519150601f19603f3d011682016040523d82523d6000602084013e610d33565b606091505b5050905080610d4157600080fd5b506001600981905550565b610d67838383604051806020016040528060008152506115a9565b505050565b610d74611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610d92611116565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90612e86565b60405180910390fd5b80600c8190555050565b610dfa611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610e18611116565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612e86565b60405180910390fd5b80600a9081610e7d9190613104565b5050565b610e89611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610ea7611116565b73ffffffffffffffffffffffffffffffffffffffff1614610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490612e86565b60405180910390fd5b80600b9081610f0c9190613104565b5050565b601060009054906101000a900460ff1681565b601060019054906101000a900460ff1681565b6000610f4182611aed565b9050919050565b600a8054610f5590612e09565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8190612e09565b8015610fce5780601f10610fa357610100808354040283529160200191610fce565b820191906000526020600020905b815481529060010190602001808311610fb157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611096611bc1565b73ffffffffffffffffffffffffffffffffffffffff166110b4611116565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190612e86565b60405180910390fd5b6111146000611f79565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461114f90612e09565b80601f016020809104026020016040519081016040528092919081815260200182805461117b90612e09565b80156111c85780601f1061119d576101008083540402835291602001916111c8565b820191906000526020600020905b8154815290600101906020018083116111ab57829003601f168201915b5050505050905090565b80601060019054906101000a900460ff1615611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613248565b60405180910390fd5b600d548161122f610bc8565b6112399190613297565b111561127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190613317565b60405180910390fd5b60008111801561128c5750600f548111155b6112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c2906133a9565b60405180910390fd5b6000811180156112f05750600e54816112e333611777565b6112ed9190613297565b11155b61132f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113269061343b565b60405180910390fd5b8160008082600c54611341919061345b565b61134b919061349d565b34101561138d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113849061351d565b60405180910390fd5b61139e611398611bc1565b8561203f565b50505050565b6113ac611bb9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611410576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061141d611bb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ca611bb9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161150f919061277d565b60405180910390a35050565b600b805461152890612e09565b80601f016020809104026020016040519081016040528092919081815260200182805461155490612e09565b80156115a15780601f10611576576101008083540402835291602001916115a1565b820191906000526020600020905b81548152906001019060200180831161158457829003601f168201915b505050505081565b6115b4848484611bd2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611616576115df8484848461205d565b611615576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061162782611a8e565b611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d906135af565b60405180910390fd5b60001515601060009054906101000a900460ff1615150361171357600b805461168e90612e09565b80601f01602080910402602001604051908101604052809291908181526020018280546116ba90612e09565b80156117075780601f106116dc57610100808354040283529160200191611707565b820191906000526020600020905b8154815290600101906020018083116116ea57829003601f168201915b5050505050905061176c565b600061171d6121ad565b9050600081511161173d5760405180602001604052806000815250611768565b806117478461223f565b60405160200161175892919061360b565b6040516020818303038152906040525b9150505b919050565b600d5481565b60006117828261239f565b9050919050565b611791611bc1565b73ffffffffffffffffffffffffffffffffffffffff166117af611116565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90612e86565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118be611bc1565b73ffffffffffffffffffffffffffffffffffffffff166118dc611116565b73ffffffffffffffffffffffffffffffffffffffff1614611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990612e86565b60405180910390fd5b600d548261193e610bc8565b6119489190613297565b1115611989576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119809061367b565b60405180910390fd5b611993818361203f565b5050565b61199f611bc1565b73ffffffffffffffffffffffffffffffffffffffff166119bd611116565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612e86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a799061370d565b60405180910390fd5b611a8b81611f79565b50565b600081611a99611bc9565b11158015611aa8575060005482105b8015611ae6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611afc611bc9565b11611b8257600054811015611b815760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b7f575b60008103611b75576004600083600190039350838152602001908152602001600020549050611b4b565b8092505050611bb4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000611bdd82611aed565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c44576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c65611bb9565b73ffffffffffffffffffffffffffffffffffffffff161480611c945750611c9385611c8e611bb9565b611822565b5b80611cd95750611ca2611bb9565b73ffffffffffffffffffffffffffffffffffffffff16611cc184610907565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d12576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d78576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d8585858560016123f6565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611e82866123fc565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611f0a5760006001840190506000600460008381526020019081526020016000205403611f08576000548114611f07578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f728585856001612406565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61205982826040518060200160405280600081525061240c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612083611bb9565b8786866040518563ffffffff1660e01b81526004016120a59493929190613782565b6020604051808303816000875af19250505080156120e157506040513d601f19601f820116820180604052508101906120de91906137e3565b60015b61215a573d8060008114612111576040519150601f19603f3d011682016040523d82523d6000602084013e612116565b606091505b506000815103612152576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121bc90612e09565b80601f01602080910402602001604051908101604052809291908181526020018280546121e890612e09565b80156122355780601f1061220a57610100808354040283529160200191612235565b820191906000526020600020905b81548152906001019060200180831161221857829003601f168201915b5050505050905090565b606060008203612286576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061239a565b600082905060005b600082146122b85780806122a190613810565b915050600a826122b19190613887565b915061228e565b60008167ffffffffffffffff8111156122d4576122d3612a55565b5b6040519080825280601f01601f1916602001820160405280156123065781602001600182028036833780820191505090505b5090505b600085146123935760018261231f919061349d565b9150600a8561232e91906138b8565b603061233a9190613297565b60f81b8183815181106123505761234f6138e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238c9190613887565b945061230a565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612478576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036124b2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124bf60008583866123f6565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612524600185146126bf565b901b60a042901b612534866123fc565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612638575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125e8600087848060010195508761205d565b61261e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061257957826000541461263357600080fd5b6126a3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612639575b8160008190555050506126b96000858386612406565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612712816126dd565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b60006020828403121561274b5761274a6126d3565b5b600061275984828501612720565b91505092915050565b60008115159050919050565b61277781612762565b82525050565b6000602082019050612792600083018461276e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d25780820151818401526020810190506127b7565b60008484015250505050565b6000601f19601f8301169050919050565b60006127fa82612798565b61280481856127a3565b93506128148185602086016127b4565b61281d816127de565b840191505092915050565b6000602082019050818103600083015261284281846127ef565b905092915050565b6000819050919050565b61285d8161284a565b811461286857600080fd5b50565b60008135905061287a81612854565b92915050565b600060208284031215612896576128956126d3565b5b60006128a48482850161286b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128d8826128ad565b9050919050565b6128e8816128cd565b82525050565b600060208201905061290360008301846128df565b92915050565b612912816128cd565b811461291d57600080fd5b50565b60008135905061292f81612909565b92915050565b6000806040838503121561294c5761294b6126d3565b5b600061295a85828601612920565b925050602061296b8582860161286b565b9150509250929050565b61297e8161284a565b82525050565b60006020820190506129996000830184612975565b92915050565b6129a881612762565b81146129b357600080fd5b50565b6000813590506129c58161299f565b92915050565b6000602082840312156129e1576129e06126d3565b5b60006129ef848285016129b6565b91505092915050565b600080600060608486031215612a1157612a106126d3565b5b6000612a1f86828701612920565b9350506020612a3086828701612920565b9250506040612a418682870161286b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a8d826127de565b810181811067ffffffffffffffff82111715612aac57612aab612a55565b5b80604052505050565b6000612abf6126c9565b9050612acb8282612a84565b919050565b600067ffffffffffffffff821115612aeb57612aea612a55565b5b612af4826127de565b9050602081019050919050565b82818337600083830152505050565b6000612b23612b1e84612ad0565b612ab5565b905082815260208101848484011115612b3f57612b3e612a50565b5b612b4a848285612b01565b509392505050565b600082601f830112612b6757612b66612a4b565b5b8135612b77848260208601612b10565b91505092915050565b600060208284031215612b9657612b956126d3565b5b600082013567ffffffffffffffff811115612bb457612bb36126d8565b5b612bc084828501612b52565b91505092915050565b600060208284031215612bdf57612bde6126d3565b5b6000612bed84828501612920565b91505092915050565b60008060408385031215612c0d57612c0c6126d3565b5b6000612c1b85828601612920565b9250506020612c2c858286016129b6565b9150509250929050565b600067ffffffffffffffff821115612c5157612c50612a55565b5b612c5a826127de565b9050602081019050919050565b6000612c7a612c7584612c36565b612ab5565b905082815260208101848484011115612c9657612c95612a50565b5b612ca1848285612b01565b509392505050565b600082601f830112612cbe57612cbd612a4b565b5b8135612cce848260208601612c67565b91505092915050565b60008060008060808587031215612cf157612cf06126d3565b5b6000612cff87828801612920565b9450506020612d1087828801612920565b9350506040612d218782880161286b565b925050606085013567ffffffffffffffff811115612d4257612d416126d8565b5b612d4e87828801612ca9565b91505092959194509250565b60008060408385031215612d7157612d706126d3565b5b6000612d7f85828601612920565b9250506020612d9085828601612920565b9150509250929050565b60008060408385031215612db157612db06126d3565b5b6000612dbf8582860161286b565b9250506020612dd085828601612920565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e2157607f821691505b602082108103612e3457612e33612dda565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e706020836127a3565b9150612e7b82612e3a565b602082019050919050565b60006020820190508181036000830152612e9f81612e63565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612edc601f836127a3565b9150612ee782612ea6565b602082019050919050565b60006020820190508181036000830152612f0b81612ecf565b9050919050565b600081905092915050565b50565b6000612f2d600083612f12565b9150612f3882612f1d565b600082019050919050565b6000612f4e82612f20565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612fba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f7d565b612fc48683612f7d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613001612ffc612ff78461284a565b612fdc565b61284a565b9050919050565b6000819050919050565b61301b83612fe6565b61302f61302782613008565b848454612f8a565b825550505050565b600090565b613044613037565b61304f818484613012565b505050565b5b818110156130735761306860008261303c565b600181019050613055565b5050565b601f8211156130b85761308981612f58565b61309284612f6d565b810160208510156130a1578190505b6130b56130ad85612f6d565b830182613054565b50505b505050565b600082821c905092915050565b60006130db600019846008026130bd565b1980831691505092915050565b60006130f483836130ca565b9150826002028217905092915050565b61310d82612798565b67ffffffffffffffff81111561312657613125612a55565b5b6131308254612e09565b61313b828285613077565b600060209050601f83116001811461316e576000841561315c578287015190505b61316685826130e8565b8655506131ce565b601f19841661317c86612f58565b60005b828110156131a45784890151825560018201915060208501945060208101905061317f565b868310156131c157848901516131bd601f8916826130ca565b8355505b6001600288020188555050505b505050505050565b7f54686520636f6e74726163742069732063757272656e746c792070617573656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006132326021836127a3565b915061323d826131d6565b604082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132a28261284a565b91506132ad8361284a565b92508282019050808211156132c5576132c4613268565b5b92915050565b7f4d617820737570706c79206d696e7465642e0000000000000000000000000000600082015250565b60006133016012836127a3565b915061330c826132cb565b602082019050919050565b60006020820190508181036000830152613330816132f4565b9050919050565b7f4d696e7420616d6f756e74206578636565647320706572207472616e7361637460008201527f696f6e206c696d69742e00000000000000000000000000000000000000000000602082015250565b6000613393602a836127a3565b915061339e82613337565b604082019050919050565b600060208201905081810360008301526133c281613386565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e74210000000000000000000000000000000000000000000000602082015250565b60006134256029836127a3565b9150613430826133c9565b604082019050919050565b6000602082019050818103600083015261345481613418565b9050919050565b60006134668261284a565b91506134718361284a565b925082820261347f8161284a565b9150828204841483151761349657613495613268565b5b5092915050565b60006134a88261284a565b91506134b38361284a565b92508282039050818111156134cb576134ca613268565b5b92915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006135076013836127a3565b9150613512826134d1565b602082019050919050565b60006020820190508181036000830152613536816134fa565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613599602f836127a3565b91506135a48261353d565b604082019050919050565b600060208201905081810360008301526135c88161358c565b9050919050565b600081905092915050565b60006135e582612798565b6135ef81856135cf565b93506135ff8185602086016127b4565b80840191505092915050565b600061361782856135da565b915061362382846135da565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136656014836127a3565b91506136708261362f565b602082019050919050565b6000602082019050818103600083015261369481613658565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136f76026836127a3565b91506137028261369b565b604082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137548261372d565b61375e8185613738565b935061376e8185602086016127b4565b613777816127de565b840191505092915050565b600060808201905061379760008301876128df565b6137a460208301866128df565b6137b16040830185612975565b81810360608301526137c38184613749565b905095945050505050565b6000815190506137dd81612709565b92915050565b6000602082840312156137f9576137f86126d3565b5b6000613807848285016137ce565b91505092915050565b600061381b8261284a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361384d5761384c613268565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138928261284a565b915061389d8361284a565b9250826138ad576138ac613858565b5b828204905092915050565b60006138c38261284a565b91506138ce8361284a565b9250826138de576138dd613858565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122094e540a6cd1f485677d8d6f16fce8c530678bd69359cf7132406987b67b773a064736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d50617374656c20466c7566667900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c50617374656c466c7566667900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a45ba8e7116100a0578063dc33e6811161006f578063dc33e681146106ee578063e0a808531461072b578063e985e9c514610754578063efbd73f414610791578063f2fde38b146107ba576101f9565b8063a45ba8e714610632578063b88d4fde1461065d578063c87b56dd14610686578063d5abeb01146106c3576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059757806395d89b41146105c2578063a0712d68146105ed578063a22cb46514610609576101f9565b80636352211e146104db5780636c0360eb1461051857806370a0823114610543578063715018a614610580576101f9565b806323b872dd1161019057806344a0d68a1161015f57806344a0d68a1461040a5780634a44f379146104335780634fdd43cb1461045c57806351830227146104855780635c975abb146104b0576101f9565b806323b872dd146103765780633cb519941461039f5780633ccfd60b146103ca57806342842e0e146103e1576101f9565b806313faede6116101cc57806313faede6146102cc57806316c38b3c146102f757806318160ddd14610320578063239c70ae1461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612735565b6107e3565b604051610232919061277d565b60405180910390f35b34801561024757600080fd5b50610250610875565b60405161025d9190612828565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612880565b610907565b60405161029a91906128ee565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612935565b610983565b005b3480156102d857600080fd5b506102e1610b29565b6040516102ee9190612984565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906129cb565b610b2f565b005b34801561032c57600080fd5b50610335610bc8565b6040516103429190612984565b60405180910390f35b34801561035757600080fd5b50610360610bdf565b60405161036d9190612984565b60405180910390f35b34801561038257600080fd5b5061039d600480360381019061039891906129f8565b610be5565b005b3480156103ab57600080fd5b506103b4610bf5565b6040516103c19190612984565b60405180910390f35b3480156103d657600080fd5b506103df610bfb565b005b3480156103ed57600080fd5b50610408600480360381019061040391906129f8565b610d4c565b005b34801561041657600080fd5b50610431600480360381019061042c9190612880565b610d6c565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612b80565b610df2565b005b34801561046857600080fd5b50610483600480360381019061047e9190612b80565b610e81565b005b34801561049157600080fd5b5061049a610f10565b6040516104a7919061277d565b60405180910390f35b3480156104bc57600080fd5b506104c5610f23565b6040516104d2919061277d565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612880565b610f36565b60405161050f91906128ee565b60405180910390f35b34801561052457600080fd5b5061052d610f48565b60405161053a9190612828565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612bc9565b610fd6565b6040516105779190612984565b60405180910390f35b34801561058c57600080fd5b5061059561108e565b005b3480156105a357600080fd5b506105ac611116565b6040516105b991906128ee565b60405180910390f35b3480156105ce57600080fd5b506105d7611140565b6040516105e49190612828565b60405180910390f35b61060760048036038101906106029190612880565b6111d2565b005b34801561061557600080fd5b50610630600480360381019061062b9190612bf6565b6113a4565b005b34801561063e57600080fd5b5061064761151b565b6040516106549190612828565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612cd7565b6115a9565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612880565b61161c565b6040516106ba9190612828565b60405180910390f35b3480156106cf57600080fd5b506106d8611771565b6040516106e59190612984565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190612bc9565b611777565b6040516107229190612984565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d91906129cb565b611789565b005b34801561076057600080fd5b5061077b60048036038101906107769190612d5a565b611822565b604051610788919061277d565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190612d9a565b6118b6565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190612bc9565b611997565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088490612e09565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090612e09565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b600061091282611a8e565b610948576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098e82611aed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a14611bb9565b73ffffffffffffffffffffffffffffffffffffffff1614610a7757610a4081610a3b611bb9565b611822565b610a76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610b37611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610b55611116565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290612e86565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000610bd2611bc9565b6001546000540303905090565b600e5481565b610bf0838383611bd2565b505050565b600f5481565b610c03611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610c21611116565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90612e86565b60405180910390fd5b600260095403610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390612ef2565b60405180910390fd5b60026009819055506000610cce611116565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf190612f43565b60006040518083038185875af1925050503d8060008114610d2e576040519150601f19603f3d011682016040523d82523d6000602084013e610d33565b606091505b5050905080610d4157600080fd5b506001600981905550565b610d67838383604051806020016040528060008152506115a9565b505050565b610d74611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610d92611116565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90612e86565b60405180910390fd5b80600c8190555050565b610dfa611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610e18611116565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612e86565b60405180910390fd5b80600a9081610e7d9190613104565b5050565b610e89611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610ea7611116565b73ffffffffffffffffffffffffffffffffffffffff1614610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490612e86565b60405180910390fd5b80600b9081610f0c9190613104565b5050565b601060009054906101000a900460ff1681565b601060019054906101000a900460ff1681565b6000610f4182611aed565b9050919050565b600a8054610f5590612e09565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8190612e09565b8015610fce5780601f10610fa357610100808354040283529160200191610fce565b820191906000526020600020905b815481529060010190602001808311610fb157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611096611bc1565b73ffffffffffffffffffffffffffffffffffffffff166110b4611116565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190612e86565b60405180910390fd5b6111146000611f79565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461114f90612e09565b80601f016020809104026020016040519081016040528092919081815260200182805461117b90612e09565b80156111c85780601f1061119d576101008083540402835291602001916111c8565b820191906000526020600020905b8154815290600101906020018083116111ab57829003601f168201915b5050505050905090565b80601060019054906101000a900460ff1615611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613248565b60405180910390fd5b600d548161122f610bc8565b6112399190613297565b111561127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190613317565b60405180910390fd5b60008111801561128c5750600f548111155b6112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c2906133a9565b60405180910390fd5b6000811180156112f05750600e54816112e333611777565b6112ed9190613297565b11155b61132f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113269061343b565b60405180910390fd5b8160008082600c54611341919061345b565b61134b919061349d565b34101561138d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113849061351d565b60405180910390fd5b61139e611398611bc1565b8561203f565b50505050565b6113ac611bb9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611410576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061141d611bb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ca611bb9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161150f919061277d565b60405180910390a35050565b600b805461152890612e09565b80601f016020809104026020016040519081016040528092919081815260200182805461155490612e09565b80156115a15780601f10611576576101008083540402835291602001916115a1565b820191906000526020600020905b81548152906001019060200180831161158457829003601f168201915b505050505081565b6115b4848484611bd2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611616576115df8484848461205d565b611615576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061162782611a8e565b611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d906135af565b60405180910390fd5b60001515601060009054906101000a900460ff1615150361171357600b805461168e90612e09565b80601f01602080910402602001604051908101604052809291908181526020018280546116ba90612e09565b80156117075780601f106116dc57610100808354040283529160200191611707565b820191906000526020600020905b8154815290600101906020018083116116ea57829003601f168201915b5050505050905061176c565b600061171d6121ad565b9050600081511161173d5760405180602001604052806000815250611768565b806117478461223f565b60405160200161175892919061360b565b6040516020818303038152906040525b9150505b919050565b600d5481565b60006117828261239f565b9050919050565b611791611bc1565b73ffffffffffffffffffffffffffffffffffffffff166117af611116565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90612e86565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118be611bc1565b73ffffffffffffffffffffffffffffffffffffffff166118dc611116565b73ffffffffffffffffffffffffffffffffffffffff1614611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990612e86565b60405180910390fd5b600d548261193e610bc8565b6119489190613297565b1115611989576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119809061367b565b60405180910390fd5b611993818361203f565b5050565b61199f611bc1565b73ffffffffffffffffffffffffffffffffffffffff166119bd611116565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612e86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a799061370d565b60405180910390fd5b611a8b81611f79565b50565b600081611a99611bc9565b11158015611aa8575060005482105b8015611ae6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611afc611bc9565b11611b8257600054811015611b815760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b7f575b60008103611b75576004600083600190039350838152602001908152602001600020549050611b4b565b8092505050611bb4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000611bdd82611aed565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c44576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c65611bb9565b73ffffffffffffffffffffffffffffffffffffffff161480611c945750611c9385611c8e611bb9565b611822565b5b80611cd95750611ca2611bb9565b73ffffffffffffffffffffffffffffffffffffffff16611cc184610907565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d12576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d78576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d8585858560016123f6565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611e82866123fc565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611f0a5760006001840190506000600460008381526020019081526020016000205403611f08576000548114611f07578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f728585856001612406565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61205982826040518060200160405280600081525061240c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612083611bb9565b8786866040518563ffffffff1660e01b81526004016120a59493929190613782565b6020604051808303816000875af19250505080156120e157506040513d601f19601f820116820180604052508101906120de91906137e3565b60015b61215a573d8060008114612111576040519150601f19603f3d011682016040523d82523d6000602084013e612116565b606091505b506000815103612152576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121bc90612e09565b80601f01602080910402602001604051908101604052809291908181526020018280546121e890612e09565b80156122355780601f1061220a57610100808354040283529160200191612235565b820191906000526020600020905b81548152906001019060200180831161221857829003601f168201915b5050505050905090565b606060008203612286576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061239a565b600082905060005b600082146122b85780806122a190613810565b915050600a826122b19190613887565b915061228e565b60008167ffffffffffffffff8111156122d4576122d3612a55565b5b6040519080825280601f01601f1916602001820160405280156123065781602001600182028036833780820191505090505b5090505b600085146123935760018261231f919061349d565b9150600a8561232e91906138b8565b603061233a9190613297565b60f81b8183815181106123505761234f6138e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238c9190613887565b945061230a565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612478576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036124b2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124bf60008583866123f6565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612524600185146126bf565b901b60a042901b612534866123fc565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612638575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125e8600087848060010195508761205d565b61261e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061257957826000541461263357600080fd5b6126a3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612639575b8160008190555050506126b96000858386612406565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612712816126dd565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b60006020828403121561274b5761274a6126d3565b5b600061275984828501612720565b91505092915050565b60008115159050919050565b61277781612762565b82525050565b6000602082019050612792600083018461276e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d25780820151818401526020810190506127b7565b60008484015250505050565b6000601f19601f8301169050919050565b60006127fa82612798565b61280481856127a3565b93506128148185602086016127b4565b61281d816127de565b840191505092915050565b6000602082019050818103600083015261284281846127ef565b905092915050565b6000819050919050565b61285d8161284a565b811461286857600080fd5b50565b60008135905061287a81612854565b92915050565b600060208284031215612896576128956126d3565b5b60006128a48482850161286b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128d8826128ad565b9050919050565b6128e8816128cd565b82525050565b600060208201905061290360008301846128df565b92915050565b612912816128cd565b811461291d57600080fd5b50565b60008135905061292f81612909565b92915050565b6000806040838503121561294c5761294b6126d3565b5b600061295a85828601612920565b925050602061296b8582860161286b565b9150509250929050565b61297e8161284a565b82525050565b60006020820190506129996000830184612975565b92915050565b6129a881612762565b81146129b357600080fd5b50565b6000813590506129c58161299f565b92915050565b6000602082840312156129e1576129e06126d3565b5b60006129ef848285016129b6565b91505092915050565b600080600060608486031215612a1157612a106126d3565b5b6000612a1f86828701612920565b9350506020612a3086828701612920565b9250506040612a418682870161286b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a8d826127de565b810181811067ffffffffffffffff82111715612aac57612aab612a55565b5b80604052505050565b6000612abf6126c9565b9050612acb8282612a84565b919050565b600067ffffffffffffffff821115612aeb57612aea612a55565b5b612af4826127de565b9050602081019050919050565b82818337600083830152505050565b6000612b23612b1e84612ad0565b612ab5565b905082815260208101848484011115612b3f57612b3e612a50565b5b612b4a848285612b01565b509392505050565b600082601f830112612b6757612b66612a4b565b5b8135612b77848260208601612b10565b91505092915050565b600060208284031215612b9657612b956126d3565b5b600082013567ffffffffffffffff811115612bb457612bb36126d8565b5b612bc084828501612b52565b91505092915050565b600060208284031215612bdf57612bde6126d3565b5b6000612bed84828501612920565b91505092915050565b60008060408385031215612c0d57612c0c6126d3565b5b6000612c1b85828601612920565b9250506020612c2c858286016129b6565b9150509250929050565b600067ffffffffffffffff821115612c5157612c50612a55565b5b612c5a826127de565b9050602081019050919050565b6000612c7a612c7584612c36565b612ab5565b905082815260208101848484011115612c9657612c95612a50565b5b612ca1848285612b01565b509392505050565b600082601f830112612cbe57612cbd612a4b565b5b8135612cce848260208601612c67565b91505092915050565b60008060008060808587031215612cf157612cf06126d3565b5b6000612cff87828801612920565b9450506020612d1087828801612920565b9350506040612d218782880161286b565b925050606085013567ffffffffffffffff811115612d4257612d416126d8565b5b612d4e87828801612ca9565b91505092959194509250565b60008060408385031215612d7157612d706126d3565b5b6000612d7f85828601612920565b9250506020612d9085828601612920565b9150509250929050565b60008060408385031215612db157612db06126d3565b5b6000612dbf8582860161286b565b9250506020612dd085828601612920565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e2157607f821691505b602082108103612e3457612e33612dda565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e706020836127a3565b9150612e7b82612e3a565b602082019050919050565b60006020820190508181036000830152612e9f81612e63565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612edc601f836127a3565b9150612ee782612ea6565b602082019050919050565b60006020820190508181036000830152612f0b81612ecf565b9050919050565b600081905092915050565b50565b6000612f2d600083612f12565b9150612f3882612f1d565b600082019050919050565b6000612f4e82612f20565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612fba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f7d565b612fc48683612f7d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613001612ffc612ff78461284a565b612fdc565b61284a565b9050919050565b6000819050919050565b61301b83612fe6565b61302f61302782613008565b848454612f8a565b825550505050565b600090565b613044613037565b61304f818484613012565b505050565b5b818110156130735761306860008261303c565b600181019050613055565b5050565b601f8211156130b85761308981612f58565b61309284612f6d565b810160208510156130a1578190505b6130b56130ad85612f6d565b830182613054565b50505b505050565b600082821c905092915050565b60006130db600019846008026130bd565b1980831691505092915050565b60006130f483836130ca565b9150826002028217905092915050565b61310d82612798565b67ffffffffffffffff81111561312657613125612a55565b5b6131308254612e09565b61313b828285613077565b600060209050601f83116001811461316e576000841561315c578287015190505b61316685826130e8565b8655506131ce565b601f19841661317c86612f58565b60005b828110156131a45784890151825560018201915060208501945060208101905061317f565b868310156131c157848901516131bd601f8916826130ca565b8355505b6001600288020188555050505b505050505050565b7f54686520636f6e74726163742069732063757272656e746c792070617573656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006132326021836127a3565b915061323d826131d6565b604082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132a28261284a565b91506132ad8361284a565b92508282019050808211156132c5576132c4613268565b5b92915050565b7f4d617820737570706c79206d696e7465642e0000000000000000000000000000600082015250565b60006133016012836127a3565b915061330c826132cb565b602082019050919050565b60006020820190508181036000830152613330816132f4565b9050919050565b7f4d696e7420616d6f756e74206578636565647320706572207472616e7361637460008201527f696f6e206c696d69742e00000000000000000000000000000000000000000000602082015250565b6000613393602a836127a3565b915061339e82613337565b604082019050919050565b600060208201905081810360008301526133c281613386565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e74210000000000000000000000000000000000000000000000602082015250565b60006134256029836127a3565b9150613430826133c9565b604082019050919050565b6000602082019050818103600083015261345481613418565b9050919050565b60006134668261284a565b91506134718361284a565b925082820261347f8161284a565b9150828204841483151761349657613495613268565b5b5092915050565b60006134a88261284a565b91506134b38361284a565b92508282039050818111156134cb576134ca613268565b5b92915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006135076013836127a3565b9150613512826134d1565b602082019050919050565b60006020820190508181036000830152613536816134fa565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613599602f836127a3565b91506135a48261353d565b604082019050919050565b600060208201905081810360008301526135c88161358c565b9050919050565b600081905092915050565b60006135e582612798565b6135ef81856135cf565b93506135ff8185602086016127b4565b80840191505092915050565b600061361782856135da565b915061362382846135da565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136656014836127a3565b91506136708261362f565b602082019050919050565b6000602082019050818103600083015261369481613658565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136f76026836127a3565b91506137028261369b565b604082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137548261372d565b61375e8185613738565b935061376e8185602086016127b4565b613777816127de565b840191505092915050565b600060808201905061379760008301876128df565b6137a460208301866128df565b6137b16040830185612975565b81810360608301526137c38184613749565b905095945050505050565b6000815190506137dd81612709565b92915050565b6000602082840312156137f9576137f86126d3565b5b6000613807848285016137ce565b91505092915050565b600061381b8261284a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361384d5761384c613268565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138928261284a565b915061389d8361284a565b9250826138ad576138ac613858565b5b828204905092915050565b60006138c38261284a565b91506138ce8361284a565b9250826138de576138dd613858565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122094e540a6cd1f485677d8d6f16fce8c530678bd69359cf7132406987b67b773a064736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d50617374656c20466c7566667900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c50617374656c466c7566667900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Pastel Fluffy
Arg [1] : _tokenSymbol (string): PastelFluffy
Arg [2] : _hiddenMetadataUri (string):
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 50617374656c20466c7566667900000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 50617374656c466c756666790000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46644:3137:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13070:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18083:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20151:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19611:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46809:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49310:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12124:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46882:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21037:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46919:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49391:166;;;;;;;;;;;;;:::i;:::-;;21278:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48910:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49218:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49080:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46954:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46986:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17872:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46740:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13749:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45741:103;;;;;;;;;;;;;:::i;:::-;;45090:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18252:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47988:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20427:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46771:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21534:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48470:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46847:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49563:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48992:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20806:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48156:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45999:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13070:615;13155:4;13470:10;13455:25;;:11;:25;;;;:102;;;;13547:10;13532:25;;:11;:25;;;;13455:102;:179;;;;13624:10;13609:25;;:11;:25;;;;13455:179;13435:199;;13070:615;;;:::o;18083:100::-;18137:13;18170:5;18163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18083:100;:::o;20151:204::-;20219:7;20244:16;20252:7;20244;:16::i;:::-;20239:64;;20269:34;;;;;;;;;;;;;;20239:64;20323:15;:24;20339:7;20323:24;;;;;;;;;;;;;;;;;;;;;20316:31;;20151:204;;;:::o;19611:474::-;19684:13;19716:27;19735:7;19716:18;:27::i;:::-;19684:61;;19766:5;19760:11;;:2;:11;;;19756:48;;19780:24;;;;;;;;;;;;;;19756:48;19844:5;19821:28;;:19;:17;:19::i;:::-;:28;;;19817:175;;19869:44;19886:5;19893:19;:17;:19::i;:::-;19869:16;:44::i;:::-;19864:128;;19941:35;;;;;;;;;;;;;;19864:128;19817:175;20031:2;20004:15;:24;20020:7;20004:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20069:7;20065:2;20049:28;;20058:5;20049:28;;;;;;;;;;;;19673:412;19611:474;;:::o;46809:33::-;;;;:::o;49310:77::-;45321:12;:10;:12::i;:::-;45310:23;;:7;:5;:7::i;:::-;:23;;;45302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49375:6:::1;49366;;:15;;;;;;;;;;;;;;;;;;49310:77:::0;:::o;12124:315::-;12177:7;12405:15;:13;:15::i;:::-;12390:12;;12374:13;;:28;:46;12367:53;;12124:315;:::o;46882:32::-;;;;:::o;21037:170::-;21171:28;21181:4;21187:2;21191:7;21171:9;:28::i;:::-;21037:170;;;:::o;46919:28::-;;;;:::o;49391:166::-;45321:12;:10;:12::i;:::-;45310:23;;:7;:5;:7::i;:::-;:23;;;45302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42233:1:::1;42831:7;;:19:::0;42823:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;42233:1;42964:7;:18;;;;49449:15:::2;49478:7;:5;:7::i;:::-;49470:21;;49499;49470:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49448:77;;;49540:10;49532:19;;;::::0;::::2;;49441:116;42189:1:::1;43143:7;:22;;;;49391:166::o:0;21278:185::-;21416:39;21433:4;21439:2;21443:7;21416:39;;;;;;;;;;;;:16;:39::i;:::-;21278:185;;;:::o;48910:74::-;45321:12;:10;:12::i;:::-;45310:23;;:7;:5;:7::i;:::-;:23;;;45302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48973:5:::1;48966:4;:12;;;;48910:74:::0;:::o;49218:84::-;45321:12;:10;:12::i;:::-;45310:23;;:7;:5;:7::i;:::-;:23;;;45302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49292:4:::1;49282:7;:14;;;;;;:::i;:::-;;49218:84:::0;:::o;49080:132::-;45321:12;:10;:12::i;:::-;45310:23;;:7;:5;:7::i;:::-;:23;;;45302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49188:18:::1;49168:17;:38;;;;;;:::i;:::-;;49080:132:::0;:::o;46954:27::-;;;;;;;;;;;;;:::o;46986:26::-;;;;;;;;;;;;;:::o;17872:144::-;17936:7;17979:27;17998:7;17979:18;:27::i;:::-;17956:52;;17872:144;;;:::o;46740:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13749:224::-;13813:7;13854:1;13837:19;;:5;:19;;;13833:60;;13865:28;;;;;;;;;;;;;;13833:60;9088:13;13911:18;:25;13930:5;13911:25;;;;;;;;;;;;;;;;:54;13904:61;;13749:224;;;:::o;45741:103::-;45321:12;:10;:12::i;:::-;45310:23;;:7;:5;:7::i;:::-;:23;;;45302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45806:30:::1;45833:1;45806:18;:30::i;:::-;45741:103::o:0;45090:87::-;45136:7;45163:6;;;;;;;;;;;45156:13;;45090:87;:::o;18252:104::-;18308:13;18341:7;18334:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18252:104;:::o;47988:160::-;48053:11;47293:6;;;;;;;;;;;47292:7;47284:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;47383:9;;47368:11;47352:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47344:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;47444:1;47430:11;:15;:43;;;;;47464:9;;47449:11;:24;;47430:43;47422:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;47647:1;47633:11;:15;:74;;;;;47694:13;;47679:11;47652:24;47665:10;47652:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;47633:74;47617:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;48086:11:::1;47844:22;47930:14;47916:11;47909:4;;:18;;;;:::i;:::-;:35;;;;:::i;:::-;47896:9;:48;;47888:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;48106:36:::2;48116:12;:10;:12::i;:::-;48130:11;48106:9;:36::i;:::-;47837:145:::1;47774:1;47988:160:::0;;:::o;20427:308::-;20538:19;:17;:19::i;:::-;20526:31;;:8;:31;;;20522:61;;20566:17;;;;;;;;;;;;;;20522:61;20648:8;20596:18;:39;20615:19;:17;:19::i;:::-;20596:39;;;;;;;;;;;;;;;:49;20636:8;20596:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20708:8;20672:55;;20687:19;:17;:19::i;:::-;20672:55;;;20718:8;20672:55;;;;;;:::i;:::-;;;;;;;;20427:308;;:::o;46771:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21534:396::-;21701:28;21711:4;21717:2;21721:7;21701:9;:28::i;:::-;21762:1;21744:2;:14;;;:19;21740:183;;21783:56;21814:4;21820:2;21824:7;21833:5;21783:30;:56::i;:::-;21778:145;;21867:40;;;;;;;;;;;;;;21778:145;21740:183;21534:396;;;;:::o;48470:434::-;48544:13;48574:17;48582:8;48574:7;:17::i;:::-;48566:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48668:5;48656:17;;:8;;;;;;;;;;;:17;;;48652:64;;48691:17;48684:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48652:64;48724:28;48755:10;:8;:10::i;:::-;48724:41;;48810:1;48785:14;48779:28;:32;:119;;;;;;;;;;;;;;;;;48847:14;48863:19;:8;:17;:19::i;:::-;48830:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48779:119;48772:126;;;48470:434;;;;:::o;46847:30::-;;;;:::o;49563:107::-;49621:7;49644:20;49658:5;49644:13;:20::i;:::-;49637:27;;49563:107;;;:::o;48992:81::-;45321:12;:10;:12::i;:::-;45310:23;;:7;:5;:7::i;:::-;:23;;;45302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49061:6:::1;49050:8;;:17;;;;;;;;;;;;;;;;;;48992:81:::0;:::o;20806:164::-;20903:4;20927:18;:25;20946:5;20927:25;;;;;;;;;;;;;;;:35;20953:8;20927:35;;;;;;;;;;;;;;;;;;;;;;;;;20920:42;;20806:164;;;;:::o;48156:207::-;45321:12;:10;:12::i;:::-;45310:23;;:7;:5;:7::i;:::-;:23;;;45302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48283:9:::1;;48268:11;48252:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48244:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48324:33;48334:9;48345:11;48324:9;:33::i;:::-;48156:207:::0;;:::o;45999:201::-;45321:12;:10;:12::i;:::-;45310:23;;:7;:5;:7::i;:::-;:23;;;45302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46108:1:::1;46088:22;;:8;:22;;::::0;46080:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46164:28;46183:8;46164:18;:28::i;:::-;45999:201:::0;:::o;22185:273::-;22242:4;22298:7;22279:15;:13;:15::i;:::-;:26;;:66;;;;;22332:13;;22322:7;:23;22279:66;:152;;;;;22430:1;9858:8;22383:17;:26;22401:7;22383:26;;;;;;;;;;;;:43;:48;22279:152;22259:172;;22185:273;;;:::o;15387:1129::-;15454:7;15474:12;15489:7;15474:22;;15557:4;15538:15;:13;:15::i;:::-;:23;15534:915;;15591:13;;15584:4;:20;15580:869;;;15629:14;15646:17;:23;15664:4;15646:23;;;;;;;;;;;;15629:40;;15762:1;9858:8;15735:6;:23;:28;15731:699;;16254:113;16271:1;16261:6;:11;16254:113;;16314:17;:25;16332:6;;;;;;;16314:25;;;;;;;;;;;;16305:34;;16254:113;;;16400:6;16393:13;;;;;;15731:699;15606:843;15580:869;15534:915;16477:31;;;;;;;;;;;;;;15387:1129;;;;:::o;36167:105::-;36227:7;36254:10;36247:17;;36167:105;:::o;43837:98::-;43890:7;43917:10;43910:17;;43837:98;:::o;48369:95::-;48434:7;48457:1;48450:8;;48369:95;:::o;27424:2515::-;27539:27;27569;27588:7;27569:18;:27::i;:::-;27539:57;;27654:4;27613:45;;27629:19;27613:45;;;27609:86;;27667:28;;;;;;;;;;;;;;27609:86;27708:22;27757:4;27734:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27778:43;27795:4;27801:19;:17;:19::i;:::-;27778:16;:43::i;:::-;27734:87;:147;;;;27862:19;:17;:19::i;:::-;27838:43;;:20;27850:7;27838:11;:20::i;:::-;:43;;;27734:147;27708:174;;27900:17;27895:66;;27926:35;;;;;;;;;;;;;;27895:66;27990:1;27976:16;;:2;:16;;;27972:52;;28001:23;;;;;;;;;;;;;;27972:52;28037:43;28059:4;28065:2;28069:7;28078:1;28037:21;:43::i;:::-;28153:15;:24;28169:7;28153:24;;;;;;;;;;;;28146:31;;;;;;;;;;;28545:18;:24;28564:4;28545:24;;;;;;;;;;;;;;;;28543:26;;;;;;;;;;;;28614:18;:22;28633:2;28614:22;;;;;;;;;;;;;;;;28612:24;;;;;;;;;;;10140:8;9742:3;28995:15;:41;;28953:21;28971:2;28953:17;:21::i;:::-;:84;:128;28907:17;:26;28925:7;28907:26;;;;;;;;;;;:174;;;;29251:1;10140:8;29201:19;:46;:51;29197:626;;29273:19;29305:1;29295:7;:11;29273:33;;29462:1;29428:17;:30;29446:11;29428:30;;;;;;;;;;;;:35;29424:384;;29566:13;;29551:11;:28;29547:242;;29746:19;29713:17;:30;29731:11;29713:30;;;;;;;;;;;:52;;;;29547:242;29424:384;29254:569;29197:626;29870:7;29866:2;29851:27;;29860:4;29851:27;;;;;;;;;;;;29889:42;29910:4;29916:2;29920:7;29929:1;29889:20;:42::i;:::-;27528:2411;;27424:2515;;;:::o;46360:191::-;46434:16;46453:6;;;;;;;;;;;46434:25;;46479:8;46470:6;;:17;;;;;;;;;;;;;;;;;;46534:8;46503:40;;46524:8;46503:40;;;;;;;;;;;;46423:128;46360:191;:::o;22542:104::-;22611:27;22621:2;22625:8;22611:27;;;;;;;;;;;;:9;:27::i;:::-;22542:104;;:::o;33636:716::-;33799:4;33845:2;33820:45;;;33866:19;:17;:19::i;:::-;33887:4;33893:7;33902:5;33820:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33816:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34120:1;34103:6;:13;:18;34099:235;;34149:40;;;;;;;;;;;;;;34099:235;34292:6;34286:13;34277:6;34273:2;34269:15;34262:38;33816:529;33989:54;;;33979:64;;;:6;:64;;;;33972:71;;;33636:716;;;;;;:::o;49676:102::-;49736:13;49765:7;49758:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49676:102;:::o;38687:723::-;38743:13;38973:1;38964:5;:10;38960:53;;38991:10;;;;;;;;;;;;;;;;;;;;;38960:53;39023:12;39038:5;39023:20;;39054:14;39079:78;39094:1;39086:4;:9;39079:78;;39112:8;;;;;:::i;:::-;;;;39143:2;39135:10;;;;;:::i;:::-;;;39079:78;;;39167:19;39199:6;39189:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39167:39;;39217:154;39233:1;39224:5;:10;39217:154;;39261:1;39251:11;;;;;:::i;:::-;;;39328:2;39320:5;:10;;;;:::i;:::-;39307:2;:24;;;;:::i;:::-;39294:39;;39277:6;39284;39277:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39357:2;39348:11;;;;;:::i;:::-;;;39217:154;;;39395:6;39381:21;;;;;38687:723;;;;:::o;14055:176::-;14116:7;9088:13;9225:2;14144:18;:25;14163:5;14144:25;;;;;;;;;;;;;;;;:49;;14143:80;14136:87;;14055:176;;;:::o;35000:159::-;;;;;:::o;19172:148::-;19236:14;19297:5;19287:15;;19172:148;;;:::o;35818:158::-;;;;;:::o;23019:2236::-;23142:20;23165:13;;23142:36;;23207:1;23193:16;;:2;:16;;;23189:48;;23218:19;;;;;;;;;;;;;;23189:48;23264:1;23252:8;:13;23248:44;;23274:18;;;;;;;;;;;;;;23248:44;23305:61;23335:1;23339:2;23343:12;23357:8;23305:21;:61::i;:::-;23909:1;9225:2;23880:1;:25;;23879:31;23867:8;:44;23841:18;:22;23860:2;23841:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10005:3;24310:29;24337:1;24325:8;:13;24310:14;:29::i;:::-;:56;;9742:3;24247:15;:41;;24205:21;24223:2;24205:17;:21::i;:::-;:84;:162;24154:17;:31;24172:12;24154:31;;;;;;;;;;;:213;;;;24384:20;24407:12;24384:35;;24434:11;24463:8;24448:12;:23;24434:37;;24510:1;24492:2;:14;;;:19;24488:635;;24532:313;24588:12;24584:2;24563:38;;24580:1;24563:38;;;;;;;;;;;;24629:69;24668:1;24672:2;24676:14;;;;;;24692:5;24629:30;:69::i;:::-;24624:174;;24734:40;;;;;;;;;;;;;;24624:174;24840:3;24825:12;:18;24532:313;;24926:12;24909:13;;:29;24905:43;;24940:8;;;24905:43;24488:635;;;24989:119;25045:14;;;;;;25041:2;25020:40;;25037:1;25020:40;;;;;;;;;;;;25103:3;25088:12;:18;24989:119;;24488:635;25153:12;25137:13;:28;;;;23618:1559;;25187:60;25216:1;25220:2;25224:12;25238:8;25187:20;:60::i;:::-;23131:2124;23019:2236;;;:::o;19407:142::-;19465:14;19526:5;19516:15;;19407: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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:116::-;5312:21;5327:5;5312:21;:::i;:::-;5305:5;5302:32;5292:60;;5348:1;5345;5338:12;5292:60;5242:116;:::o;5364:133::-;5407:5;5445:6;5432:20;5423:29;;5461:30;5485:5;5461:30;:::i;:::-;5364:133;;;;:::o;5503:323::-;5559:6;5608:2;5596:9;5587:7;5583:23;5579:32;5576:119;;;5614:79;;:::i;:::-;5576:119;5734:1;5759:50;5801:7;5792:6;5781:9;5777:22;5759:50;:::i;:::-;5749:60;;5705:114;5503:323;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:::-;12488:6;12496;12545:2;12533:9;12524:7;12520:23;12516:32;12513:119;;;12551:79;;:::i;:::-;12513:119;12671:1;12696:53;12741:7;12732:6;12721:9;12717:22;12696:53;:::i;:::-;12686:63;;12642:117;12798:2;12824:53;12869:7;12860:6;12849:9;12845:22;12824:53;:::i;:::-;12814:63;;12769:118;12420:474;;;;;:::o;12900:180::-;12948:77;12945:1;12938:88;13045:4;13042:1;13035:15;13069:4;13066:1;13059:15;13086:320;13130:6;13167:1;13161:4;13157:12;13147:22;;13214:1;13208:4;13204:12;13235:18;13225:81;;13291:4;13283:6;13279:17;13269:27;;13225:81;13353:2;13345:6;13342:14;13322:18;13319:38;13316:84;;13372:18;;:::i;:::-;13316:84;13137:269;13086:320;;;:::o;13412:182::-;13552:34;13548:1;13540:6;13536:14;13529:58;13412:182;:::o;13600:366::-;13742:3;13763:67;13827:2;13822:3;13763:67;:::i;:::-;13756:74;;13839:93;13928:3;13839:93;:::i;:::-;13957:2;13952:3;13948:12;13941:19;;13600:366;;;:::o;13972:419::-;14138:4;14176:2;14165:9;14161:18;14153:26;;14225:9;14219:4;14215:20;14211:1;14200:9;14196:17;14189:47;14253:131;14379:4;14253:131;:::i;:::-;14245:139;;13972:419;;;:::o;14397:181::-;14537:33;14533:1;14525:6;14521:14;14514:57;14397:181;:::o;14584:366::-;14726:3;14747:67;14811:2;14806:3;14747:67;:::i;:::-;14740:74;;14823:93;14912:3;14823:93;:::i;:::-;14941:2;14936:3;14932:12;14925:19;;14584:366;;;:::o;14956:419::-;15122:4;15160:2;15149:9;15145:18;15137:26;;15209:9;15203:4;15199:20;15195:1;15184:9;15180:17;15173:47;15237:131;15363:4;15237:131;:::i;:::-;15229:139;;14956:419;;;:::o;15381:147::-;15482:11;15519:3;15504:18;;15381:147;;;;:::o;15534:114::-;;:::o;15654:398::-;15813:3;15834:83;15915:1;15910:3;15834:83;:::i;:::-;15827:90;;15926:93;16015:3;15926:93;:::i;:::-;16044:1;16039:3;16035:11;16028:18;;15654:398;;;:::o;16058:379::-;16242:3;16264:147;16407:3;16264:147;:::i;:::-;16257:154;;16428:3;16421:10;;16058:379;;;:::o;16443:141::-;16492:4;16515:3;16507:11;;16538:3;16535:1;16528:14;16572:4;16569:1;16559:18;16551:26;;16443:141;;;:::o;16590:93::-;16627:6;16674:2;16669;16662:5;16658:14;16654:23;16644:33;;16590:93;;;:::o;16689:107::-;16733:8;16783:5;16777:4;16773:16;16752:37;;16689:107;;;;:::o;16802:393::-;16871:6;16921:1;16909:10;16905:18;16944:97;16974:66;16963:9;16944:97;:::i;:::-;17062:39;17092:8;17081:9;17062:39;:::i;:::-;17050:51;;17134:4;17130:9;17123:5;17119:21;17110:30;;17183:4;17173:8;17169:19;17162:5;17159:30;17149:40;;16878:317;;16802:393;;;;;:::o;17201:60::-;17229:3;17250:5;17243:12;;17201:60;;;:::o;17267:142::-;17317:9;17350:53;17368:34;17377:24;17395:5;17377:24;:::i;:::-;17368:34;:::i;:::-;17350:53;:::i;:::-;17337:66;;17267:142;;;:::o;17415:75::-;17458:3;17479:5;17472:12;;17415:75;;;:::o;17496:269::-;17606:39;17637:7;17606:39;:::i;:::-;17667:91;17716:41;17740:16;17716:41;:::i;:::-;17708:6;17701:4;17695:11;17667:91;:::i;:::-;17661:4;17654:105;17572:193;17496:269;;;:::o;17771:73::-;17816:3;17771:73;:::o;17850:189::-;17927:32;;:::i;:::-;17968:65;18026:6;18018;18012:4;17968:65;:::i;:::-;17903:136;17850:189;;:::o;18045:186::-;18105:120;18122:3;18115:5;18112:14;18105:120;;;18176:39;18213:1;18206:5;18176:39;:::i;:::-;18149:1;18142:5;18138:13;18129:22;;18105:120;;;18045:186;;:::o;18237:543::-;18338:2;18333:3;18330:11;18327:446;;;18372:38;18404:5;18372:38;:::i;:::-;18456:29;18474:10;18456:29;:::i;:::-;18446:8;18442:44;18639:2;18627:10;18624:18;18621:49;;;18660:8;18645:23;;18621:49;18683:80;18739:22;18757:3;18739:22;:::i;:::-;18729:8;18725:37;18712:11;18683:80;:::i;:::-;18342:431;;18327:446;18237:543;;;:::o;18786:117::-;18840:8;18890:5;18884:4;18880:16;18859:37;;18786:117;;;;:::o;18909:169::-;18953:6;18986:51;19034:1;19030:6;19022:5;19019:1;19015:13;18986:51;:::i;:::-;18982:56;19067:4;19061;19057:15;19047:25;;18960:118;18909:169;;;;:::o;19083:295::-;19159:4;19305:29;19330:3;19324:4;19305:29;:::i;:::-;19297:37;;19367:3;19364:1;19360:11;19354:4;19351:21;19343:29;;19083:295;;;;:::o;19383:1395::-;19500:37;19533:3;19500:37;:::i;:::-;19602:18;19594:6;19591:30;19588:56;;;19624:18;;:::i;:::-;19588:56;19668:38;19700:4;19694:11;19668:38;:::i;:::-;19753:67;19813:6;19805;19799:4;19753:67;:::i;:::-;19847:1;19871:4;19858:17;;19903:2;19895:6;19892:14;19920:1;19915:618;;;;20577:1;20594:6;20591:77;;;20643:9;20638:3;20634:19;20628:26;20619:35;;20591:77;20694:67;20754:6;20747:5;20694:67;:::i;:::-;20688:4;20681:81;20550:222;19885:887;;19915:618;19967:4;19963:9;19955:6;19951:22;20001:37;20033:4;20001:37;:::i;:::-;20060:1;20074:208;20088:7;20085:1;20082:14;20074:208;;;20167:9;20162:3;20158:19;20152:26;20144:6;20137:42;20218:1;20210:6;20206:14;20196:24;;20265:2;20254:9;20250:18;20237:31;;20111:4;20108:1;20104:12;20099:17;;20074:208;;;20310:6;20301:7;20298:19;20295:179;;;20368:9;20363:3;20359:19;20353:26;20411:48;20453:4;20445:6;20441:17;20430:9;20411:48;:::i;:::-;20403:6;20396:64;20318:156;20295:179;20520:1;20516;20508:6;20504:14;20500:22;20494:4;20487:36;19922:611;;;19885:887;;19475:1303;;;19383:1395;;:::o;20784:220::-;20924:34;20920:1;20912:6;20908:14;20901:58;20993:3;20988:2;20980:6;20976:15;20969:28;20784:220;:::o;21010:366::-;21152:3;21173:67;21237:2;21232:3;21173:67;:::i;:::-;21166:74;;21249:93;21338:3;21249:93;:::i;:::-;21367:2;21362:3;21358:12;21351:19;;21010:366;;;:::o;21382:419::-;21548:4;21586:2;21575:9;21571:18;21563:26;;21635:9;21629:4;21625:20;21621:1;21610:9;21606:17;21599:47;21663:131;21789:4;21663:131;:::i;:::-;21655:139;;21382:419;;;:::o;21807:180::-;21855:77;21852:1;21845:88;21952:4;21949:1;21942:15;21976:4;21973:1;21966:15;21993:191;22033:3;22052:20;22070:1;22052:20;:::i;:::-;22047:25;;22086:20;22104:1;22086:20;:::i;:::-;22081:25;;22129:1;22126;22122:9;22115:16;;22150:3;22147:1;22144:10;22141:36;;;22157:18;;:::i;:::-;22141:36;21993:191;;;;:::o;22190:168::-;22330:20;22326:1;22318:6;22314:14;22307:44;22190:168;:::o;22364:366::-;22506:3;22527:67;22591:2;22586:3;22527:67;:::i;:::-;22520:74;;22603:93;22692:3;22603:93;:::i;:::-;22721:2;22716:3;22712:12;22705:19;;22364:366;;;:::o;22736:419::-;22902:4;22940:2;22929:9;22925:18;22917:26;;22989:9;22983:4;22979:20;22975:1;22964:9;22960:17;22953:47;23017:131;23143:4;23017:131;:::i;:::-;23009:139;;22736:419;;;:::o;23161:229::-;23301:34;23297:1;23289:6;23285:14;23278:58;23370:12;23365:2;23357:6;23353:15;23346:37;23161:229;:::o;23396:366::-;23538:3;23559:67;23623:2;23618:3;23559:67;:::i;:::-;23552:74;;23635:93;23724:3;23635:93;:::i;:::-;23753:2;23748:3;23744:12;23737:19;;23396:366;;;:::o;23768:419::-;23934:4;23972:2;23961:9;23957:18;23949:26;;24021:9;24015:4;24011:20;24007:1;23996:9;23992:17;23985:47;24049:131;24175:4;24049:131;:::i;:::-;24041:139;;23768:419;;;:::o;24193:228::-;24333:34;24329:1;24321:6;24317:14;24310:58;24402:11;24397:2;24389:6;24385:15;24378:36;24193:228;:::o;24427:366::-;24569:3;24590:67;24654:2;24649:3;24590:67;:::i;:::-;24583:74;;24666:93;24755:3;24666:93;:::i;:::-;24784:2;24779:3;24775:12;24768:19;;24427:366;;;:::o;24799:419::-;24965:4;25003:2;24992:9;24988:18;24980:26;;25052:9;25046:4;25042:20;25038:1;25027:9;25023:17;25016:47;25080:131;25206:4;25080:131;:::i;:::-;25072:139;;24799:419;;;:::o;25224:410::-;25264:7;25287:20;25305:1;25287:20;:::i;:::-;25282:25;;25321:20;25339:1;25321:20;:::i;:::-;25316:25;;25376:1;25373;25369:9;25398:30;25416:11;25398:30;:::i;:::-;25387:41;;25577:1;25568:7;25564:15;25561:1;25558:22;25538:1;25531:9;25511:83;25488:139;;25607:18;;:::i;:::-;25488:139;25272:362;25224:410;;;;:::o;25640:194::-;25680:4;25700:20;25718:1;25700:20;:::i;:::-;25695:25;;25734:20;25752:1;25734:20;:::i;:::-;25729:25;;25778:1;25775;25771:9;25763:17;;25802:1;25796:4;25793:11;25790:37;;;25807:18;;:::i;:::-;25790:37;25640:194;;;;:::o;25840:169::-;25980:21;25976:1;25968:6;25964:14;25957:45;25840:169;:::o;26015:366::-;26157:3;26178:67;26242:2;26237:3;26178:67;:::i;:::-;26171:74;;26254:93;26343:3;26254:93;:::i;:::-;26372:2;26367:3;26363:12;26356:19;;26015:366;;;:::o;26387:419::-;26553:4;26591:2;26580:9;26576:18;26568:26;;26640:9;26634:4;26630:20;26626:1;26615:9;26611:17;26604:47;26668:131;26794:4;26668:131;:::i;:::-;26660:139;;26387:419;;;:::o;26812:234::-;26952:34;26948:1;26940:6;26936:14;26929:58;27021:17;27016:2;27008:6;27004:15;26997:42;26812:234;:::o;27052:366::-;27194:3;27215:67;27279:2;27274:3;27215:67;:::i;:::-;27208:74;;27291:93;27380:3;27291:93;:::i;:::-;27409:2;27404:3;27400:12;27393:19;;27052:366;;;:::o;27424:419::-;27590:4;27628:2;27617:9;27613:18;27605:26;;27677:9;27671:4;27667:20;27663:1;27652:9;27648:17;27641:47;27705:131;27831:4;27705:131;:::i;:::-;27697:139;;27424:419;;;:::o;27849:148::-;27951:11;27988:3;27973:18;;27849:148;;;;:::o;28003:390::-;28109:3;28137:39;28170:5;28137:39;:::i;:::-;28192:89;28274:6;28269:3;28192:89;:::i;:::-;28185:96;;28290:65;28348:6;28343:3;28336:4;28329:5;28325:16;28290:65;:::i;:::-;28380:6;28375:3;28371:16;28364:23;;28113:280;28003:390;;;;:::o;28399:435::-;28579:3;28601:95;28692:3;28683:6;28601:95;:::i;:::-;28594:102;;28713:95;28804:3;28795:6;28713:95;:::i;:::-;28706:102;;28825:3;28818:10;;28399:435;;;;;:::o;28840:170::-;28980:22;28976:1;28968:6;28964:14;28957:46;28840:170;:::o;29016:366::-;29158:3;29179:67;29243:2;29238:3;29179:67;:::i;:::-;29172:74;;29255:93;29344:3;29255:93;:::i;:::-;29373:2;29368:3;29364:12;29357:19;;29016:366;;;:::o;29388:419::-;29554:4;29592:2;29581:9;29577:18;29569:26;;29641:9;29635:4;29631:20;29627:1;29616:9;29612:17;29605:47;29669:131;29795:4;29669:131;:::i;:::-;29661:139;;29388:419;;;:::o;29813:225::-;29953:34;29949:1;29941:6;29937:14;29930:58;30022:8;30017:2;30009:6;30005:15;29998:33;29813:225;:::o;30044:366::-;30186:3;30207:67;30271:2;30266:3;30207:67;:::i;:::-;30200:74;;30283:93;30372:3;30283:93;:::i;:::-;30401:2;30396:3;30392:12;30385:19;;30044:366;;;:::o;30416:419::-;30582:4;30620:2;30609:9;30605:18;30597:26;;30669:9;30663:4;30659:20;30655:1;30644:9;30640:17;30633:47;30697:131;30823:4;30697:131;:::i;:::-;30689:139;;30416:419;;;:::o;30841:98::-;30892:6;30926:5;30920:12;30910:22;;30841:98;;;:::o;30945:168::-;31028:11;31062:6;31057:3;31050:19;31102:4;31097:3;31093:14;31078:29;;30945:168;;;;:::o;31119:373::-;31205:3;31233:38;31265:5;31233:38;:::i;:::-;31287:70;31350:6;31345:3;31287:70;:::i;:::-;31280:77;;31366:65;31424:6;31419:3;31412:4;31405:5;31401:16;31366:65;:::i;:::-;31456:29;31478:6;31456:29;:::i;:::-;31451:3;31447:39;31440:46;;31209:283;31119:373;;;;:::o;31498:640::-;31693:4;31731:3;31720:9;31716:19;31708:27;;31745:71;31813:1;31802:9;31798:17;31789:6;31745:71;:::i;:::-;31826:72;31894:2;31883:9;31879:18;31870:6;31826:72;:::i;:::-;31908;31976:2;31965:9;31961:18;31952:6;31908:72;:::i;:::-;32027:9;32021:4;32017:20;32012:2;32001:9;31997:18;31990:48;32055:76;32126:4;32117:6;32055:76;:::i;:::-;32047:84;;31498:640;;;;;;;:::o;32144:141::-;32200:5;32231:6;32225:13;32216:22;;32247:32;32273:5;32247:32;:::i;:::-;32144:141;;;;:::o;32291:349::-;32360:6;32409:2;32397:9;32388:7;32384:23;32380:32;32377:119;;;32415:79;;:::i;:::-;32377:119;32535:1;32560:63;32615:7;32606:6;32595:9;32591:22;32560:63;:::i;:::-;32550:73;;32506:127;32291:349;;;;:::o;32646:233::-;32685:3;32708:24;32726:5;32708:24;:::i;:::-;32699:33;;32754:66;32747:5;32744:77;32741:103;;32824:18;;:::i;:::-;32741:103;32871:1;32864:5;32860:13;32853:20;;32646:233;;;:::o;32885:180::-;32933:77;32930:1;32923:88;33030:4;33027:1;33020:15;33054:4;33051:1;33044:15;33071:185;33111:1;33128:20;33146:1;33128:20;:::i;:::-;33123:25;;33162:20;33180:1;33162:20;:::i;:::-;33157:25;;33201:1;33191:35;;33206:18;;:::i;:::-;33191:35;33248:1;33245;33241:9;33236:14;;33071:185;;;;:::o;33262:176::-;33294:1;33311:20;33329:1;33311:20;:::i;:::-;33306:25;;33345:20;33363:1;33345:20;:::i;:::-;33340:25;;33384:1;33374:35;;33389:18;;:::i;:::-;33374:35;33430:1;33427;33423:9;33418:14;;33262:176;;;;:::o;33444:180::-;33492:77;33489:1;33482:88;33589:4;33586:1;33579:15;33613:4;33610:1;33603:15
Swarm Source
ipfs://94e540a6cd1f485677d8d6f16fce8c530678bd69359cf7132406987b67b773a0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.