ERC-721
Overview
Max Total Supply
10,000 PIXELFOXES
Holders
3,260
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PIXELFOXESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PixelFoxes
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-01 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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 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); } } /** * @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; } } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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 See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), 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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } //........................................................................ //........................................................................ //...|| || || || || |||||| || || ||||||||||||| ||||||| //...|||| |||| |||| || || || ||| || || || |||| //...|| || || || || |||| ||||| || || || ||||| || ||||| //...|| || |||||||| || || || || |||| || || ||| //...|| || || || || || |||||| || || || || ||||||| //... //...|| || |||| |||||||| || || || |||||| //...||| || || || || || || || |||| || || //...|| || || || || || || ||| ||| || || |||||| //...|| |||| || || || ||| ||| |||||||| || || //...|| || |||| || || || || || || || //........................................................................ //..................................................made with <3 --refugee //........................................................................ contract PixelFoxes is ERC721Enumerable, Ownable { using Strings for uint256; string _baseTokenURI; // stay foxy my friends uint256 private _price = 0.01 ether; bool public _paused = true; // withdraw addresses address f1 = 0xcD7F3Af38CbE1c71091C91b44860FA797Db54813; address f2 = 0xbFF819faB7811373f0d18bd6677b7f44dF06eEa6; // PixelFoxes // Operation StayFoxy = 10000 PixelFoxes constructor( string memory name, string memory symbol, string memory baseURI ) ERC721(name,symbol) { setBaseURI(baseURI); } function FoxMint(uint256 num) public payable { uint256 supply = totalSupply(); require( !_paused, "Minting paused" ); require( num < 31, "You can mint a maximum of 30 Foxes" ); require( supply + num < 10001, "Exceeds maximum PixelFox supply" ); require( msg.value >= _price * num, "Eth sent is not correct" ); for(uint256 i; i < num; i++){ _safeMint( msg.sender, supply + i ); } } function giveAway(address _to, uint256 _amount) external onlyOwner() { uint256 supply = totalSupply(); require( supply + _amount < 10001, "Exceeds maximum PixelFox supply" ); for(uint256 i; i < _amount; i++){ _safeMint( _to, supply + i ); } } function walletOfOwner(address _owner) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function setPrice(uint256 _newPrice) public onlyOwner() { _price = _newPrice; } function getPrice() public view returns (uint256){ return _price; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function pause(bool val) public onlyOwner { _paused = val; } function withdrawAll() public payable onlyOwner { uint256 _each = address(this).balance / 2; require(payable(f1).send(_each)); require(payable(f2).send(_each)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"uint256","name":"num","type":"uint256"}],"name":"FoxMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052662386f26fc10000600c556001600d60006101000a81548160ff02191690831515021790555073cd7f3af38cbe1c71091c91b44860fa797db54813600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bff819fab7811373f0d18bd6677b7f44df06eea6600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000e157600080fd5b50604051620046da380380620046da83398181016040528101906200010791906200043c565b82828160009080519060200190620001219291906200031a565b5080600190805190602001906200013a9291906200031a565b5050506200015d620001516200017760201b60201c565b6200017f60201b60201c565b6200016e816200024560201b60201c565b50505062000683565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002556200017760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027b620002f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cb906200051f565b60405180910390fd5b80600b9080519060200190620002ec9291906200031a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200032890620005ef565b90600052602060002090601f0160209004810192826200034c576000855562000398565b82601f106200036757805160ff191683800117855562000398565b8280016001018555821562000398579182015b82811115620003975782518255916020019190600101906200037a565b5b509050620003a79190620003ab565b5090565b5b80821115620003c6576000816000905550600101620003ac565b5090565b6000620003e1620003db8462000575565b62000541565b905082815260208101848484011115620003fa57600080fd5b62000407848285620005b9565b509392505050565b600082601f8301126200042157600080fd5b815162000433848260208601620003ca565b91505092915050565b6000806000606084860312156200045257600080fd5b600084015167ffffffffffffffff8111156200046d57600080fd5b6200047b868287016200040f565b935050602084015167ffffffffffffffff8111156200049957600080fd5b620004a7868287016200040f565b925050604084015167ffffffffffffffff811115620004c557600080fd5b620004d3868287016200040f565b9150509250925092565b6000620004ec602083620005a8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200053a81620004dd565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200056b576200056a62000654565b5b8060405250919050565b600067ffffffffffffffff82111562000593576200059262000654565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620005d9578082015181840152602081019050620005bc565b83811115620005e9576000848401525b50505050565b600060028204905060018216806200060857607f821691505b602082108114156200061f576200061e62000625565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61404780620006936000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146105ee578063ca8001441461062b578063e985e9c514610654578063f2fde38b14610691576101b7565b806398d5fdca14610571578063a22cb4651461059c578063b88d4fde146105c5576101b7565b8063853828b6116100c6578063853828b6146104e85780638da5cb5b146104f257806391b7f5ed1461051d57806395d89b4114610546576101b7565b80636352211e1461045757806370a0823114610494578063715018a6146104d1576101b7565b806318160ddd1161015957806342842e0e1161013357806342842e0e1461038b578063438b6300146103b45780634f6ccce7146103f157806355f804b31461042e576101b7565b806318160ddd146102fa57806323b872dd146103255780632f745c591461034e576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a5780631370516e146102b357806316c61ccc146102cf576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612dd4565b6106ba565b6040516101f0919061384c565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612dab565b610734565b005b34801561022e57600080fd5b506102376107cd565b6040516102449190613867565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612e67565b61085f565b60405161028191906137c3565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612d6f565b6108e4565b005b6102cd60048036038101906102c89190612e67565b6109fc565b005b3480156102db57600080fd5b506102e4610b72565b6040516102f1919061384c565b60405180910390f35b34801561030657600080fd5b5061030f610b85565b60405161031c9190613b49565b60405180910390f35b34801561033157600080fd5b5061034c60048036038101906103479190612c69565b610b92565b005b34801561035a57600080fd5b5061037560048036038101906103709190612d6f565b610bf2565b6040516103829190613b49565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612c69565b610c97565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612c04565b610cb7565b6040516103e8919061382a565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612e67565b610db1565b6040516104259190613b49565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612e26565b610e48565b005b34801561046357600080fd5b5061047e60048036038101906104799190612e67565b610ede565b60405161048b91906137c3565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612c04565b610f90565b6040516104c89190613b49565b60405180910390f35b3480156104dd57600080fd5b506104e6611048565b005b6104f06110d0565b005b3480156104fe57600080fd5b50610507611220565b60405161051491906137c3565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612e67565b61124a565b005b34801561055257600080fd5b5061055b6112d0565b6040516105689190613867565b60405180910390f35b34801561057d57600080fd5b50610586611362565b6040516105939190613b49565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612d33565b61136c565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612cb8565b6114ed565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612e67565b61154f565b6040516106229190613867565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612d6f565b6115f6565b005b34801561066057600080fd5b5061067b60048036038101906106769190612c2d565b611706565b604051610688919061384c565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612c04565b61179a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072d575061072c82611892565b5b9050919050565b61073c611974565b73ffffffffffffffffffffffffffffffffffffffff1661075a611220565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790613a49565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600080546107dc90613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461080890613e3c565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a8261197c565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613a29565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610ede565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613aa9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611974565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611974565b611706565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e4906139a9565b60405180910390fd5b6109f783836119e8565b505050565b6000610a06610b85565b9050600d60009054906101000a900460ff1615610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f906138c9565b60405180910390fd5b601f8210610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290613929565b60405180910390fd5b6127118282610aaa9190613c71565b10610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190613b09565b60405180910390fd5b81600c54610af89190613cf8565b341015610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190613ac9565b60405180910390fd5b60005b82811015610b6d57610b5a338284610b559190613c71565b611aa1565b8080610b6590613e6e565b915050610b3d565b505050565b600d60009054906101000a900460ff1681565b6000600880549050905090565b610ba3610b9d611974565b82611abf565b610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990613ae9565b60405180910390fd5b610bed838383611b9d565b505050565b6000610bfd83610f90565b8210610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613889565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cb2838383604051806020016040528060008152506114ed565b505050565b60606000610cc483610f90565b905060008167ffffffffffffffff811115610d08577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d365781602001602082028036833780820191505090505b50905060005b82811015610da657610d4e8582610bf2565b828281518110610d87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d9e90613e6e565b915050610d3c565b508092505050919050565b6000610dbb610b85565b8210610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390613b29565b60405180910390fd5b60088281548110610e36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e50611974565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611220565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613a49565b60405180910390fd5b80600b9080519060200190610eda929190612a28565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e906139e9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906139c9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611050611974565b73ffffffffffffffffffffffffffffffffffffffff1661106e611220565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb90613a49565b60405180910390fd5b6110ce6000611df9565b565b6110d8611974565b73ffffffffffffffffffffffffffffffffffffffff166110f6611220565b73ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390613a49565b60405180910390fd5b600060024761115b9190613cc7565b9050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111bd57600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061121d57600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611252611974565b73ffffffffffffffffffffffffffffffffffffffff16611270611220565b73ffffffffffffffffffffffffffffffffffffffff16146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613a49565b60405180910390fd5b80600c8190555050565b6060600180546112df90613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461130b90613e3c565b80156113585780601f1061132d57610100808354040283529160200191611358565b820191906000526020600020905b81548152906001019060200180831161133b57829003601f168201915b5050505050905090565b6000600c54905090565b611374611974565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990613969565b60405180910390fd5b80600560006113ef611974565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149c611974565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e1919061384c565b60405180910390a35050565b6114fe6114f8611974565b83611abf565b61153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613ae9565b60405180910390fd5b61154984848484611ebf565b50505050565b606061155a8261197c565b611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613a89565b60405180910390fd5b60006115a3611f1b565b905060008151116115c357604051806020016040528060008152506115ee565b806115cd84611fad565b6040516020016115de92919061379f565b6040516020818303038152906040525b915050919050565b6115fe611974565b73ffffffffffffffffffffffffffffffffffffffff1661161c611220565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613a49565b60405180910390fd5b600061167c610b85565b9050612711828261168d9190613c71565b106116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613b09565b60405180910390fd5b60005b82811015611700576116ed8482846116e89190613c71565b611aa1565b80806116f890613e6e565b9150506116d0565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117a2611974565b73ffffffffffffffffffffffffffffffffffffffff166117c0611220565b73ffffffffffffffffffffffffffffffffffffffff1614611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613a49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d906138e9565b60405180910390fd5b61188f81611df9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061195d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061196d575061196c8261215a565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a5b83610ede565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611abb8282604051806020016040528060008152506121c4565b5050565b6000611aca8261197c565b611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090613989565b60405180910390fd5b6000611b1483610ede565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8357508373ffffffffffffffffffffffffffffffffffffffff16611b6b8461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b945750611b938185611706565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bbd82610ede565b73ffffffffffffffffffffffffffffffffffffffff1614611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90613a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90613949565b60405180910390fd5b611c8e83838361221f565b611c996000826119e8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce99190613d52565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d409190613c71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611eca848484611b9d565b611ed684848484612333565b611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906138a9565b60405180910390fd5b50505050565b6060600b8054611f2a90613e3c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5690613e3c565b8015611fa35780601f10611f7857610100808354040283529160200191611fa3565b820191906000526020600020905b815481529060010190602001808311611f8657829003601f168201915b5050505050905090565b60606000821415611ff5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612155565b600082905060005b6000821461202757808061201090613e6e565b915050600a826120209190613cc7565b9150611ffd565b60008167ffffffffffffffff811115612069577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561209b5781602001600182028036833780820191505090505b5090505b6000851461214e576001826120b49190613d52565b9150600a856120c39190613eb7565b60306120cf9190613c71565b60f81b81838151811061210b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121479190613cc7565b945061209f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121ce83836124ca565b6121db6000848484612333565b61221a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612211906138a9565b60405180910390fd5b505050565b61222a838383612698565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561226d576122688161269d565b6122ac565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122ab576122aa83826126e6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ef576122ea81612853565b61232e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461232d5761232c8282612996565b5b5b505050565b60006123548473ffffffffffffffffffffffffffffffffffffffff16612a15565b156124bd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261237d611974565b8786866040518563ffffffff1660e01b815260040161239f94939291906137de565b602060405180830381600087803b1580156123b957600080fd5b505af19250505080156123ea57506040513d601f19601f820116820180604052508101906123e79190612dfd565b60015b61246d573d806000811461241a576040519150601f19603f3d011682016040523d82523d6000602084013e61241f565b606091505b50600081511415612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c906138a9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124c2565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190613a09565b60405180910390fd5b6125438161197c565b15612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a90613909565b60405180910390fd5b61258f6000838361221f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125df9190613c71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126f384610f90565b6126fd9190613d52565b90506000600760008481526020019081526020016000205490508181146127e2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128679190613d52565b90506000600960008481526020019081526020016000205490506000600883815481106128bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612905577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061297a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129a183610f90565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612a3490613e3c565b90600052602060002090601f016020900481019282612a565760008555612a9d565b82601f10612a6f57805160ff1916838001178555612a9d565b82800160010185558215612a9d579182015b82811115612a9c578251825591602001919060010190612a81565b5b509050612aaa9190612aae565b5090565b5b80821115612ac7576000816000905550600101612aaf565b5090565b6000612ade612ad984613b95565b613b64565b905082815260208101848484011115612af657600080fd5b612b01848285613dfa565b509392505050565b6000612b1c612b1784613bc5565b613b64565b905082815260208101848484011115612b3457600080fd5b612b3f848285613dfa565b509392505050565b600081359050612b5681613fb5565b92915050565b600081359050612b6b81613fcc565b92915050565b600081359050612b8081613fe3565b92915050565b600081519050612b9581613fe3565b92915050565b600082601f830112612bac57600080fd5b8135612bbc848260208601612acb565b91505092915050565b600082601f830112612bd657600080fd5b8135612be6848260208601612b09565b91505092915050565b600081359050612bfe81613ffa565b92915050565b600060208284031215612c1657600080fd5b6000612c2484828501612b47565b91505092915050565b60008060408385031215612c4057600080fd5b6000612c4e85828601612b47565b9250506020612c5f85828601612b47565b9150509250929050565b600080600060608486031215612c7e57600080fd5b6000612c8c86828701612b47565b9350506020612c9d86828701612b47565b9250506040612cae86828701612bef565b9150509250925092565b60008060008060808587031215612cce57600080fd5b6000612cdc87828801612b47565b9450506020612ced87828801612b47565b9350506040612cfe87828801612bef565b925050606085013567ffffffffffffffff811115612d1b57600080fd5b612d2787828801612b9b565b91505092959194509250565b60008060408385031215612d4657600080fd5b6000612d5485828601612b47565b9250506020612d6585828601612b5c565b9150509250929050565b60008060408385031215612d8257600080fd5b6000612d9085828601612b47565b9250506020612da185828601612bef565b9150509250929050565b600060208284031215612dbd57600080fd5b6000612dcb84828501612b5c565b91505092915050565b600060208284031215612de657600080fd5b6000612df484828501612b71565b91505092915050565b600060208284031215612e0f57600080fd5b6000612e1d84828501612b86565b91505092915050565b600060208284031215612e3857600080fd5b600082013567ffffffffffffffff811115612e5257600080fd5b612e5e84828501612bc5565b91505092915050565b600060208284031215612e7957600080fd5b6000612e8784828501612bef565b91505092915050565b6000612e9c8383613781565b60208301905092915050565b612eb181613d86565b82525050565b6000612ec282613c05565b612ecc8185613c33565b9350612ed783613bf5565b8060005b83811015612f08578151612eef8882612e90565b9750612efa83613c26565b925050600181019050612edb565b5085935050505092915050565b612f1e81613d98565b82525050565b6000612f2f82613c10565b612f398185613c44565b9350612f49818560208601613e09565b612f5281613fa4565b840191505092915050565b6000612f6882613c1b565b612f728185613c55565b9350612f82818560208601613e09565b612f8b81613fa4565b840191505092915050565b6000612fa182613c1b565b612fab8185613c66565b9350612fbb818560208601613e09565b80840191505092915050565b6000612fd4602b83613c55565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061303a603283613c55565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006130a0600e83613c55565b91507f4d696e74696e67207061757365640000000000000000000000000000000000006000830152602082019050919050565b60006130e0602683613c55565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613146601c83613c55565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613186602283613c55565b91507f596f752063616e206d696e742061206d6178696d756d206f6620333020466f7860008301527f65730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131ec602483613c55565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613252601983613c55565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613292602c83613c55565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132f8603883613c55565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061335e602a83613c55565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133c4602983613c55565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061342a602083613c55565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061346a602c83613c55565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134d0602083613c55565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613510602983613c55565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613576602f83613c55565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006135dc602183613c55565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613642601783613c55565b91507f4574682073656e74206973206e6f7420636f72726563740000000000000000006000830152602082019050919050565b6000613682603183613c55565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006136e8601f83613c55565b91507f45786365656473206d6178696d756d20506978656c466f7820737570706c79006000830152602082019050919050565b6000613728602c83613c55565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61378a81613df0565b82525050565b61379981613df0565b82525050565b60006137ab8285612f96565b91506137b78284612f96565b91508190509392505050565b60006020820190506137d86000830184612ea8565b92915050565b60006080820190506137f36000830187612ea8565b6138006020830186612ea8565b61380d6040830185613790565b818103606083015261381f8184612f24565b905095945050505050565b600060208201905081810360008301526138448184612eb7565b905092915050565b60006020820190506138616000830184612f15565b92915050565b600060208201905081810360008301526138818184612f5d565b905092915050565b600060208201905081810360008301526138a281612fc7565b9050919050565b600060208201905081810360008301526138c28161302d565b9050919050565b600060208201905081810360008301526138e281613093565b9050919050565b60006020820190508181036000830152613902816130d3565b9050919050565b6000602082019050818103600083015261392281613139565b9050919050565b6000602082019050818103600083015261394281613179565b9050919050565b60006020820190508181036000830152613962816131df565b9050919050565b6000602082019050818103600083015261398281613245565b9050919050565b600060208201905081810360008301526139a281613285565b9050919050565b600060208201905081810360008301526139c2816132eb565b9050919050565b600060208201905081810360008301526139e281613351565b9050919050565b60006020820190508181036000830152613a02816133b7565b9050919050565b60006020820190508181036000830152613a228161341d565b9050919050565b60006020820190508181036000830152613a428161345d565b9050919050565b60006020820190508181036000830152613a62816134c3565b9050919050565b60006020820190508181036000830152613a8281613503565b9050919050565b60006020820190508181036000830152613aa281613569565b9050919050565b60006020820190508181036000830152613ac2816135cf565b9050919050565b60006020820190508181036000830152613ae281613635565b9050919050565b60006020820190508181036000830152613b0281613675565b9050919050565b60006020820190508181036000830152613b22816136db565b9050919050565b60006020820190508181036000830152613b428161371b565b9050919050565b6000602082019050613b5e6000830184613790565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613b8b57613b8a613f75565b5b8060405250919050565b600067ffffffffffffffff821115613bb057613baf613f75565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613be057613bdf613f75565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c7c82613df0565b9150613c8783613df0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cbc57613cbb613ee8565b5b828201905092915050565b6000613cd282613df0565b9150613cdd83613df0565b925082613ced57613cec613f17565b5b828204905092915050565b6000613d0382613df0565b9150613d0e83613df0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4757613d46613ee8565b5b828202905092915050565b6000613d5d82613df0565b9150613d6883613df0565b925082821015613d7b57613d7a613ee8565b5b828203905092915050565b6000613d9182613dd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e27578082015181840152602081019050613e0c565b83811115613e36576000848401525b50505050565b60006002820490506001821680613e5457607f821691505b60208210811415613e6857613e67613f46565b5b50919050565b6000613e7982613df0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eac57613eab613ee8565b5b600182019050919050565b6000613ec282613df0565b9150613ecd83613df0565b925082613edd57613edc613f17565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613fbe81613d86565b8114613fc957600080fd5b50565b613fd581613d98565b8114613fe057600080fd5b50565b613fec81613da4565b8114613ff757600080fd5b50565b61400381613df0565b811461400e57600080fd5b5056fea264697066735822122074d7060097aae1954716901abc54a396f1d71b4d56b2f6886bf78b5a3deba74864736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b506978656c20466f786573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a504958454c464f58455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f746f6b656e746f7563616e2e636f6d2f70666e6674732f00
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636352211e116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146105ee578063ca8001441461062b578063e985e9c514610654578063f2fde38b14610691576101b7565b806398d5fdca14610571578063a22cb4651461059c578063b88d4fde146105c5576101b7565b8063853828b6116100c6578063853828b6146104e85780638da5cb5b146104f257806391b7f5ed1461051d57806395d89b4114610546576101b7565b80636352211e1461045757806370a0823114610494578063715018a6146104d1576101b7565b806318160ddd1161015957806342842e0e1161013357806342842e0e1461038b578063438b6300146103b45780634f6ccce7146103f157806355f804b31461042e576101b7565b806318160ddd146102fa57806323b872dd146103255780632f745c591461034e576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a5780631370516e146102b357806316c61ccc146102cf576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612dd4565b6106ba565b6040516101f0919061384c565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612dab565b610734565b005b34801561022e57600080fd5b506102376107cd565b6040516102449190613867565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612e67565b61085f565b60405161028191906137c3565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612d6f565b6108e4565b005b6102cd60048036038101906102c89190612e67565b6109fc565b005b3480156102db57600080fd5b506102e4610b72565b6040516102f1919061384c565b60405180910390f35b34801561030657600080fd5b5061030f610b85565b60405161031c9190613b49565b60405180910390f35b34801561033157600080fd5b5061034c60048036038101906103479190612c69565b610b92565b005b34801561035a57600080fd5b5061037560048036038101906103709190612d6f565b610bf2565b6040516103829190613b49565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612c69565b610c97565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612c04565b610cb7565b6040516103e8919061382a565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612e67565b610db1565b6040516104259190613b49565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612e26565b610e48565b005b34801561046357600080fd5b5061047e60048036038101906104799190612e67565b610ede565b60405161048b91906137c3565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612c04565b610f90565b6040516104c89190613b49565b60405180910390f35b3480156104dd57600080fd5b506104e6611048565b005b6104f06110d0565b005b3480156104fe57600080fd5b50610507611220565b60405161051491906137c3565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612e67565b61124a565b005b34801561055257600080fd5b5061055b6112d0565b6040516105689190613867565b60405180910390f35b34801561057d57600080fd5b50610586611362565b6040516105939190613b49565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612d33565b61136c565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612cb8565b6114ed565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612e67565b61154f565b6040516106229190613867565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612d6f565b6115f6565b005b34801561066057600080fd5b5061067b60048036038101906106769190612c2d565b611706565b604051610688919061384c565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612c04565b61179a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072d575061072c82611892565b5b9050919050565b61073c611974565b73ffffffffffffffffffffffffffffffffffffffff1661075a611220565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790613a49565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600080546107dc90613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461080890613e3c565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a8261197c565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613a29565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610ede565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613aa9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611974565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611974565b611706565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e4906139a9565b60405180910390fd5b6109f783836119e8565b505050565b6000610a06610b85565b9050600d60009054906101000a900460ff1615610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f906138c9565b60405180910390fd5b601f8210610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290613929565b60405180910390fd5b6127118282610aaa9190613c71565b10610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190613b09565b60405180910390fd5b81600c54610af89190613cf8565b341015610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190613ac9565b60405180910390fd5b60005b82811015610b6d57610b5a338284610b559190613c71565b611aa1565b8080610b6590613e6e565b915050610b3d565b505050565b600d60009054906101000a900460ff1681565b6000600880549050905090565b610ba3610b9d611974565b82611abf565b610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990613ae9565b60405180910390fd5b610bed838383611b9d565b505050565b6000610bfd83610f90565b8210610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613889565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cb2838383604051806020016040528060008152506114ed565b505050565b60606000610cc483610f90565b905060008167ffffffffffffffff811115610d08577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d365781602001602082028036833780820191505090505b50905060005b82811015610da657610d4e8582610bf2565b828281518110610d87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d9e90613e6e565b915050610d3c565b508092505050919050565b6000610dbb610b85565b8210610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390613b29565b60405180910390fd5b60088281548110610e36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e50611974565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611220565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613a49565b60405180910390fd5b80600b9080519060200190610eda929190612a28565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e906139e9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906139c9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611050611974565b73ffffffffffffffffffffffffffffffffffffffff1661106e611220565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb90613a49565b60405180910390fd5b6110ce6000611df9565b565b6110d8611974565b73ffffffffffffffffffffffffffffffffffffffff166110f6611220565b73ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390613a49565b60405180910390fd5b600060024761115b9190613cc7565b9050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111bd57600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061121d57600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611252611974565b73ffffffffffffffffffffffffffffffffffffffff16611270611220565b73ffffffffffffffffffffffffffffffffffffffff16146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613a49565b60405180910390fd5b80600c8190555050565b6060600180546112df90613e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461130b90613e3c565b80156113585780601f1061132d57610100808354040283529160200191611358565b820191906000526020600020905b81548152906001019060200180831161133b57829003601f168201915b5050505050905090565b6000600c54905090565b611374611974565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990613969565b60405180910390fd5b80600560006113ef611974565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149c611974565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e1919061384c565b60405180910390a35050565b6114fe6114f8611974565b83611abf565b61153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613ae9565b60405180910390fd5b61154984848484611ebf565b50505050565b606061155a8261197c565b611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613a89565b60405180910390fd5b60006115a3611f1b565b905060008151116115c357604051806020016040528060008152506115ee565b806115cd84611fad565b6040516020016115de92919061379f565b6040516020818303038152906040525b915050919050565b6115fe611974565b73ffffffffffffffffffffffffffffffffffffffff1661161c611220565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613a49565b60405180910390fd5b600061167c610b85565b9050612711828261168d9190613c71565b106116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613b09565b60405180910390fd5b60005b82811015611700576116ed8482846116e89190613c71565b611aa1565b80806116f890613e6e565b9150506116d0565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117a2611974565b73ffffffffffffffffffffffffffffffffffffffff166117c0611220565b73ffffffffffffffffffffffffffffffffffffffff1614611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613a49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d906138e9565b60405180910390fd5b61188f81611df9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061195d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061196d575061196c8261215a565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a5b83610ede565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611abb8282604051806020016040528060008152506121c4565b5050565b6000611aca8261197c565b611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090613989565b60405180910390fd5b6000611b1483610ede565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8357508373ffffffffffffffffffffffffffffffffffffffff16611b6b8461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b945750611b938185611706565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bbd82610ede565b73ffffffffffffffffffffffffffffffffffffffff1614611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90613a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90613949565b60405180910390fd5b611c8e83838361221f565b611c996000826119e8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce99190613d52565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d409190613c71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611eca848484611b9d565b611ed684848484612333565b611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906138a9565b60405180910390fd5b50505050565b6060600b8054611f2a90613e3c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5690613e3c565b8015611fa35780601f10611f7857610100808354040283529160200191611fa3565b820191906000526020600020905b815481529060010190602001808311611f8657829003601f168201915b5050505050905090565b60606000821415611ff5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612155565b600082905060005b6000821461202757808061201090613e6e565b915050600a826120209190613cc7565b9150611ffd565b60008167ffffffffffffffff811115612069577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561209b5781602001600182028036833780820191505090505b5090505b6000851461214e576001826120b49190613d52565b9150600a856120c39190613eb7565b60306120cf9190613c71565b60f81b81838151811061210b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121479190613cc7565b945061209f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121ce83836124ca565b6121db6000848484612333565b61221a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612211906138a9565b60405180910390fd5b505050565b61222a838383612698565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561226d576122688161269d565b6122ac565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122ab576122aa83826126e6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ef576122ea81612853565b61232e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461232d5761232c8282612996565b5b5b505050565b60006123548473ffffffffffffffffffffffffffffffffffffffff16612a15565b156124bd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261237d611974565b8786866040518563ffffffff1660e01b815260040161239f94939291906137de565b602060405180830381600087803b1580156123b957600080fd5b505af19250505080156123ea57506040513d601f19601f820116820180604052508101906123e79190612dfd565b60015b61246d573d806000811461241a576040519150601f19603f3d011682016040523d82523d6000602084013e61241f565b606091505b50600081511415612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c906138a9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124c2565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190613a09565b60405180910390fd5b6125438161197c565b15612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a90613909565b60405180910390fd5b61258f6000838361221f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125df9190613c71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126f384610f90565b6126fd9190613d52565b90506000600760008481526020019081526020016000205490508181146127e2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128679190613d52565b90506000600960008481526020019081526020016000205490506000600883815481106128bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612905577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061297a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129a183610f90565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612a3490613e3c565b90600052602060002090601f016020900481019282612a565760008555612a9d565b82601f10612a6f57805160ff1916838001178555612a9d565b82800160010185558215612a9d579182015b82811115612a9c578251825591602001919060010190612a81565b5b509050612aaa9190612aae565b5090565b5b80821115612ac7576000816000905550600101612aaf565b5090565b6000612ade612ad984613b95565b613b64565b905082815260208101848484011115612af657600080fd5b612b01848285613dfa565b509392505050565b6000612b1c612b1784613bc5565b613b64565b905082815260208101848484011115612b3457600080fd5b612b3f848285613dfa565b509392505050565b600081359050612b5681613fb5565b92915050565b600081359050612b6b81613fcc565b92915050565b600081359050612b8081613fe3565b92915050565b600081519050612b9581613fe3565b92915050565b600082601f830112612bac57600080fd5b8135612bbc848260208601612acb565b91505092915050565b600082601f830112612bd657600080fd5b8135612be6848260208601612b09565b91505092915050565b600081359050612bfe81613ffa565b92915050565b600060208284031215612c1657600080fd5b6000612c2484828501612b47565b91505092915050565b60008060408385031215612c4057600080fd5b6000612c4e85828601612b47565b9250506020612c5f85828601612b47565b9150509250929050565b600080600060608486031215612c7e57600080fd5b6000612c8c86828701612b47565b9350506020612c9d86828701612b47565b9250506040612cae86828701612bef565b9150509250925092565b60008060008060808587031215612cce57600080fd5b6000612cdc87828801612b47565b9450506020612ced87828801612b47565b9350506040612cfe87828801612bef565b925050606085013567ffffffffffffffff811115612d1b57600080fd5b612d2787828801612b9b565b91505092959194509250565b60008060408385031215612d4657600080fd5b6000612d5485828601612b47565b9250506020612d6585828601612b5c565b9150509250929050565b60008060408385031215612d8257600080fd5b6000612d9085828601612b47565b9250506020612da185828601612bef565b9150509250929050565b600060208284031215612dbd57600080fd5b6000612dcb84828501612b5c565b91505092915050565b600060208284031215612de657600080fd5b6000612df484828501612b71565b91505092915050565b600060208284031215612e0f57600080fd5b6000612e1d84828501612b86565b91505092915050565b600060208284031215612e3857600080fd5b600082013567ffffffffffffffff811115612e5257600080fd5b612e5e84828501612bc5565b91505092915050565b600060208284031215612e7957600080fd5b6000612e8784828501612bef565b91505092915050565b6000612e9c8383613781565b60208301905092915050565b612eb181613d86565b82525050565b6000612ec282613c05565b612ecc8185613c33565b9350612ed783613bf5565b8060005b83811015612f08578151612eef8882612e90565b9750612efa83613c26565b925050600181019050612edb565b5085935050505092915050565b612f1e81613d98565b82525050565b6000612f2f82613c10565b612f398185613c44565b9350612f49818560208601613e09565b612f5281613fa4565b840191505092915050565b6000612f6882613c1b565b612f728185613c55565b9350612f82818560208601613e09565b612f8b81613fa4565b840191505092915050565b6000612fa182613c1b565b612fab8185613c66565b9350612fbb818560208601613e09565b80840191505092915050565b6000612fd4602b83613c55565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061303a603283613c55565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006130a0600e83613c55565b91507f4d696e74696e67207061757365640000000000000000000000000000000000006000830152602082019050919050565b60006130e0602683613c55565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613146601c83613c55565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613186602283613c55565b91507f596f752063616e206d696e742061206d6178696d756d206f6620333020466f7860008301527f65730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131ec602483613c55565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613252601983613c55565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613292602c83613c55565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132f8603883613c55565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061335e602a83613c55565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133c4602983613c55565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061342a602083613c55565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061346a602c83613c55565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134d0602083613c55565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613510602983613c55565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613576602f83613c55565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006135dc602183613c55565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613642601783613c55565b91507f4574682073656e74206973206e6f7420636f72726563740000000000000000006000830152602082019050919050565b6000613682603183613c55565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006136e8601f83613c55565b91507f45786365656473206d6178696d756d20506978656c466f7820737570706c79006000830152602082019050919050565b6000613728602c83613c55565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61378a81613df0565b82525050565b61379981613df0565b82525050565b60006137ab8285612f96565b91506137b78284612f96565b91508190509392505050565b60006020820190506137d86000830184612ea8565b92915050565b60006080820190506137f36000830187612ea8565b6138006020830186612ea8565b61380d6040830185613790565b818103606083015261381f8184612f24565b905095945050505050565b600060208201905081810360008301526138448184612eb7565b905092915050565b60006020820190506138616000830184612f15565b92915050565b600060208201905081810360008301526138818184612f5d565b905092915050565b600060208201905081810360008301526138a281612fc7565b9050919050565b600060208201905081810360008301526138c28161302d565b9050919050565b600060208201905081810360008301526138e281613093565b9050919050565b60006020820190508181036000830152613902816130d3565b9050919050565b6000602082019050818103600083015261392281613139565b9050919050565b6000602082019050818103600083015261394281613179565b9050919050565b60006020820190508181036000830152613962816131df565b9050919050565b6000602082019050818103600083015261398281613245565b9050919050565b600060208201905081810360008301526139a281613285565b9050919050565b600060208201905081810360008301526139c2816132eb565b9050919050565b600060208201905081810360008301526139e281613351565b9050919050565b60006020820190508181036000830152613a02816133b7565b9050919050565b60006020820190508181036000830152613a228161341d565b9050919050565b60006020820190508181036000830152613a428161345d565b9050919050565b60006020820190508181036000830152613a62816134c3565b9050919050565b60006020820190508181036000830152613a8281613503565b9050919050565b60006020820190508181036000830152613aa281613569565b9050919050565b60006020820190508181036000830152613ac2816135cf565b9050919050565b60006020820190508181036000830152613ae281613635565b9050919050565b60006020820190508181036000830152613b0281613675565b9050919050565b60006020820190508181036000830152613b22816136db565b9050919050565b60006020820190508181036000830152613b428161371b565b9050919050565b6000602082019050613b5e6000830184613790565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613b8b57613b8a613f75565b5b8060405250919050565b600067ffffffffffffffff821115613bb057613baf613f75565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613be057613bdf613f75565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c7c82613df0565b9150613c8783613df0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cbc57613cbb613ee8565b5b828201905092915050565b6000613cd282613df0565b9150613cdd83613df0565b925082613ced57613cec613f17565b5b828204905092915050565b6000613d0382613df0565b9150613d0e83613df0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4757613d46613ee8565b5b828202905092915050565b6000613d5d82613df0565b9150613d6883613df0565b925082821015613d7b57613d7a613ee8565b5b828203905092915050565b6000613d9182613dd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e27578082015181840152602081019050613e0c565b83811115613e36576000848401525b50505050565b60006002820490506001821680613e5457607f821691505b60208210811415613e6857613e67613f46565b5b50919050565b6000613e7982613df0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eac57613eab613ee8565b5b600182019050919050565b6000613ec282613df0565b9150613ecd83613df0565b925082613edd57613edc613f17565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613fbe81613d86565b8114613fc957600080fd5b50565b613fd581613d98565b8114613fe057600080fd5b50565b613fec81613da4565b8114613ff757600080fd5b50565b61400381613df0565b811461400e57600080fd5b5056fea264697066735822122074d7060097aae1954716901abc54a396f1d71b4d56b2f6886bf78b5a3deba74864736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b506978656c20466f786573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a504958454c464f58455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f746f6b656e746f7563616e2e636f6d2f70666e6674732f00
-----Decoded View---------------
Arg [0] : name (string): Pixel Foxes
Arg [1] : symbol (string): PIXELFOXES
Arg [2] : baseURI (string): https://tokentoucan.com/pfnfts/
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 506978656c20466f786573000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 504958454c464f58455300000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [8] : 68747470733a2f2f746f6b656e746f7563616e2e636f6d2f70666e6674732f00
Deployed Bytecode Sourcemap
43222:2530:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33758:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45468:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20876:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22435:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21958:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43854:518;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43413:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34398:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23325:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34066:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23735:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44687:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34588:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45357:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20570:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20300:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41479:94;;;;;;;;;;;;;:::i;:::-;;45551:194;;;:::i;:::-;;40828:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45040:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21045:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45141:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22728:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23991:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21220:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44380:299;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23094:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41728:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33758:224;33860:4;33899:35;33884:50;;;:11;:50;;;;:90;;;;33938:36;33962:11;33938:23;:36::i;:::-;33884:90;33877:97;;33758:224;;;:::o;45468:74::-;41059:12;:10;:12::i;:::-;41048:23;;:7;:5;:7::i;:::-;:23;;;41040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45531:3:::1;45521:7;;:13;;;;;;;;;;;;;;;;;;45468:74:::0;:::o;20876:100::-;20930:13;20963:5;20956:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20876:100;:::o;22435:221::-;22511:7;22539:16;22547:7;22539;:16::i;:::-;22531:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22624:15;:24;22640:7;22624:24;;;;;;;;;;;;;;;;;;;;;22617:31;;22435:221;;;:::o;21958:411::-;22039:13;22055:23;22070:7;22055:14;:23::i;:::-;22039:39;;22103:5;22097:11;;:2;:11;;;;22089:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22197:5;22181:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22206:37;22223:5;22230:12;:10;:12::i;:::-;22206:16;:37::i;:::-;22181:62;22159:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22340:21;22349:2;22353:7;22340:8;:21::i;:::-;21958:411;;;:::o;43854:518::-;43910:14;43927:13;:11;:13::i;:::-;43910:30;;43962:7;;;;;;;;;;;43961:8;43952:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44036:2;44030:3;:8;44021:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;44134:5;44128:3;44119:6;:12;;;;:::i;:::-;:20;44110:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;44227:3;44218:6;;:12;;;;:::i;:::-;44205:9;:25;;44196:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44279:9;44275:90;44294:3;44290:1;:7;44275:90;;;44318:35;44329:10;44350:1;44341:6;:10;;;;:::i;:::-;44318:9;:35::i;:::-;44299:3;;;;;:::i;:::-;;;;44275:90;;;;43854:518;;:::o;43413:26::-;;;;;;;;;;;;;:::o;34398:113::-;34459:7;34486:10;:17;;;;34479:24;;34398:113;:::o;23325:339::-;23520:41;23539:12;:10;:12::i;:::-;23553:7;23520:18;:41::i;:::-;23512:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23628:28;23638:4;23644:2;23648:7;23628:9;:28::i;:::-;23325:339;;;:::o;34066:256::-;34163:7;34199:23;34216:5;34199:16;:23::i;:::-;34191:5;:31;34183:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34288:12;:19;34301:5;34288:19;;;;;;;;;;;;;;;:26;34308:5;34288:26;;;;;;;;;;;;34281:33;;34066:256;;;;:::o;23735:185::-;23873:39;23890:4;23896:2;23900:7;23873:39;;;;;;;;;;;;:16;:39::i;:::-;23735:185;;;:::o;44687:341::-;44746:16;44775:18;44796:17;44806:6;44796:9;:17::i;:::-;44775:38;;44825:25;44867:10;44853:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44825:53;;44893:9;44889:106;44908:10;44904:1;:14;44889:106;;;44953:30;44973:6;44981:1;44953:19;:30::i;:::-;44939:8;44948:1;44939:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;44920:3;;;;;:::i;:::-;;;;44889:106;;;;45012:8;45005:15;;;;44687:341;;;:::o;34588:233::-;34663:7;34699:30;:28;:30::i;:::-;34691:5;:38;34683:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;34796:10;34807:5;34796:17;;;;;;;;;;;;;;;;;;;;;;;;34789:24;;34588:233;;;:::o;45357:102::-;41059:12;:10;:12::i;:::-;41048:23;;:7;:5;:7::i;:::-;:23;;;41040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45444:7:::1;45428:13;:23;;;;;;;;;;;;:::i;:::-;;45357:102:::0;:::o;20570:239::-;20642:7;20662:13;20678:7;:16;20686:7;20678:16;;;;;;;;;;;;;;;;;;;;;20662:32;;20730:1;20713:19;;:5;:19;;;;20705:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20796:5;20789:12;;;20570:239;;;:::o;20300:208::-;20372:7;20417:1;20400:19;;:5;:19;;;;20392:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20484:9;:16;20494:5;20484:16;;;;;;;;;;;;;;;;20477:23;;20300:208;;;:::o;41479:94::-;41059:12;:10;:12::i;:::-;41048:23;;:7;:5;:7::i;:::-;:23;;;41040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41544:21:::1;41562:1;41544:9;:21::i;:::-;41479:94::o:0;45551:194::-;41059:12;:10;:12::i;:::-;41048:23;;:7;:5;:7::i;:::-;:23;;;41040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45610:13:::1;45650:1;45626:21;:25;;;;:::i;:::-;45610:41;;45678:2;;;;;;;;;;;45670:16;;:23;45687:5;45670:23;;;;;;;;;;;;;;;;;;;;;;;45662:32;;;::::0;::::1;;45721:2;;;;;;;;;;;45713:16;;:23;45730:5;45713:23;;;;;;;;;;;;;;;;;;;;;;;45705:32;;;::::0;::::1;;41119:1;45551:194::o:0;40828:87::-;40874:7;40901:6;;;;;;;;;;;40894:13;;40828:87;:::o;45040:93::-;41059:12;:10;:12::i;:::-;41048:23;;:7;:5;:7::i;:::-;:23;;;41040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45116:9:::1;45107:6;:18;;;;45040:93:::0;:::o;21045:104::-;21101:13;21134:7;21127:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21045:104;:::o;45141:81::-;45182:7;45208:6;;45201:13;;45141:81;:::o;22728:295::-;22843:12;:10;:12::i;:::-;22831:24;;:8;:24;;;;22823:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22943:8;22898:18;:32;22917:12;:10;:12::i;:::-;22898:32;;;;;;;;;;;;;;;:42;22931:8;22898:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22996:8;22967:48;;22982:12;:10;:12::i;:::-;22967:48;;;23006:8;22967:48;;;;;;:::i;:::-;;;;;;;;22728:295;;:::o;23991:328::-;24166:41;24185:12;:10;:12::i;:::-;24199:7;24166:18;:41::i;:::-;24158:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24272:39;24286:4;24292:2;24296:7;24305:5;24272:13;:39::i;:::-;23991:328;;;;:::o;21220:334::-;21293:13;21327:16;21335:7;21327;:16::i;:::-;21319:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21408:21;21432:10;:8;:10::i;:::-;21408:34;;21484:1;21466:7;21460:21;:25;:86;;;;;;;;;;;;;;;;;21512:7;21521:18;:7;:16;:18::i;:::-;21495:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21460:86;21453:93;;;21220:334;;;:::o;44380:299::-;41059:12;:10;:12::i;:::-;41048:23;;:7;:5;:7::i;:::-;:23;;;41040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44460:14:::1;44477:13;:11;:13::i;:::-;44460:30;;44530:5;44520:7;44511:6;:16;;;;:::i;:::-;:24;44502:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44588:9;44584:87;44603:7;44599:1;:11;44584:87;;;44631:28;44642:3;44656:1;44647:6;:10;;;;:::i;:::-;44631:9;:28::i;:::-;44612:3;;;;;:::i;:::-;;;;44584:87;;;;41119:1;44380:299:::0;;:::o;23094:164::-;23191:4;23215:18;:25;23234:5;23215:25;;;;;;;;;;;;;;;:35;23241:8;23215:35;;;;;;;;;;;;;;;;;;;;;;;;;23208:42;;23094:164;;;;:::o;41728:192::-;41059:12;:10;:12::i;:::-;41048:23;;:7;:5;:7::i;:::-;:23;;;41040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41837:1:::1;41817:22;;:8;:22;;;;41809:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41893:19;41903:8;41893:9;:19::i;:::-;41728:192:::0;:::o;19931:305::-;20033:4;20085:25;20070:40;;;:11;:40;;;;:105;;;;20142:33;20127:48;;;:11;:48;;;;20070:105;:158;;;;20192:36;20216:11;20192:23;:36::i;:::-;20070:158;20050:178;;19931:305;;;:::o;8066:98::-;8119:7;8146:10;8139:17;;8066:98;:::o;25829:127::-;25894:4;25946:1;25918:30;;:7;:16;25926:7;25918:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25911:37;;25829:127;;;:::o;29811:174::-;29913:2;29886:15;:24;29902:7;29886:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29969:7;29965:2;29931:46;;29940:23;29955:7;29940:14;:23::i;:::-;29931:46;;;;;;;;;;;;29811:174;;:::o;26813:110::-;26889:26;26899:2;26903:7;26889:26;;;;;;;;;;;;:9;:26::i;:::-;26813:110;;:::o;26123:348::-;26216:4;26241:16;26249:7;26241;:16::i;:::-;26233:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26317:13;26333:23;26348:7;26333:14;:23::i;:::-;26317:39;;26386:5;26375:16;;:7;:16;;;:51;;;;26419:7;26395:31;;:20;26407:7;26395:11;:20::i;:::-;:31;;;26375:51;:87;;;;26430:32;26447:5;26454:7;26430:16;:32::i;:::-;26375:87;26367:96;;;26123:348;;;;:::o;29115:578::-;29274:4;29247:31;;:23;29262:7;29247:14;:23::i;:::-;:31;;;29239:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29357:1;29343:16;;:2;:16;;;;29335:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29413:39;29434:4;29440:2;29444:7;29413:20;:39::i;:::-;29517:29;29534:1;29538:7;29517:8;:29::i;:::-;29578:1;29559:9;:15;29569:4;29559:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29607:1;29590:9;:13;29600:2;29590:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29638:2;29619:7;:16;29627:7;29619:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29677:7;29673:2;29658:27;;29667:4;29658:27;;;;;;;;;;;;29115:578;;;:::o;41928:173::-;41984:16;42003:6;;;;;;;;;;;41984:25;;42029:8;42020:6;;:17;;;;;;;;;;;;;;;;;;42084:8;42053:40;;42074:8;42053:40;;;;;;;;;;;;41928:173;;:::o;25201:315::-;25358:28;25368:4;25374:2;25378:7;25358:9;:28::i;:::-;25405:48;25428:4;25434:2;25438:7;25447:5;25405:22;:48::i;:::-;25397:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25201:315;;;;:::o;45231:114::-;45291:13;45324;45317:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45231:114;:::o;5761:723::-;5817:13;6047:1;6038:5;:10;6034:53;;;6065:10;;;;;;;;;;;;;;;;;;;;;6034:53;6097:12;6112:5;6097:20;;6128:14;6153:78;6168:1;6160:4;:9;6153:78;;6186:8;;;;;:::i;:::-;;;;6217:2;6209:10;;;;;:::i;:::-;;;6153:78;;;6241:19;6273:6;6263:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6241:39;;6291:154;6307:1;6298:5;:10;6291:154;;6335:1;6325:11;;;;;:::i;:::-;;;6402:2;6394:5;:10;;;;:::i;:::-;6381:2;:24;;;;:::i;:::-;6368:39;;6351:6;6358;6351:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;6431:2;6422:11;;;;;:::i;:::-;;;6291:154;;;6469:6;6455:21;;;;;5761:723;;;;:::o;18538:157::-;18623:4;18662:25;18647:40;;;:11;:40;;;;18640:47;;18538:157;;;:::o;27150:321::-;27280:18;27286:2;27290:7;27280:5;:18::i;:::-;27331:54;27362:1;27366:2;27370:7;27379:5;27331:22;:54::i;:::-;27309:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27150:321;;;:::o;35434:589::-;35578:45;35605:4;35611:2;35615:7;35578:26;:45::i;:::-;35656:1;35640:18;;:4;:18;;;35636:187;;;35675:40;35707:7;35675:31;:40::i;:::-;35636:187;;;35745:2;35737:10;;:4;:10;;;35733:90;;35764:47;35797:4;35803:7;35764:32;:47::i;:::-;35733:90;35636:187;35851:1;35837:16;;:2;:16;;;35833:183;;;35870:45;35907:7;35870:36;:45::i;:::-;35833:183;;;35943:4;35937:10;;:2;:10;;;35933:83;;35964:40;35992:2;35996:7;35964:27;:40::i;:::-;35933:83;35833:183;35434:589;;;:::o;30550:799::-;30705:4;30726:15;:2;:13;;;:15::i;:::-;30722:620;;;30778:2;30762:36;;;30799:12;:10;:12::i;:::-;30813:4;30819:7;30828:5;30762:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30758:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31021:1;31004:6;:13;:18;31000:272;;;31047:60;;;;;;;;;;:::i;:::-;;;;;;;;31000:272;31222:6;31216:13;31207:6;31203:2;31199:15;31192:38;30758:529;30895:41;;;30885:51;;;:6;:51;;;;30878:58;;;;;30722:620;31326:4;31319:11;;30550:799;;;;;;;:::o;27807:382::-;27901:1;27887:16;;:2;:16;;;;27879:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27960:16;27968:7;27960;:16::i;:::-;27959:17;27951:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28022:45;28051:1;28055:2;28059:7;28022:20;:45::i;:::-;28097:1;28080:9;:13;28090:2;28080:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28128:2;28109:7;:16;28117:7;28109:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28173:7;28169:2;28148:33;;28165:1;28148:33;;;;;;;;;;;;27807:382;;:::o;31921:126::-;;;;:::o;36746:164::-;36850:10;:17;;;;36823:15;:24;36839:7;36823:24;;;;;;;;;;;:44;;;;36878:10;36894:7;36878:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36746:164;:::o;37537:988::-;37803:22;37853:1;37828:22;37845:4;37828:16;:22::i;:::-;:26;;;;:::i;:::-;37803:51;;37865:18;37886:17;:26;37904:7;37886:26;;;;;;;;;;;;37865:47;;38033:14;38019:10;:28;38015:328;;38064:19;38086:12;:18;38099:4;38086:18;;;;;;;;;;;;;;;:34;38105:14;38086:34;;;;;;;;;;;;38064:56;;38170:11;38137:12;:18;38150:4;38137:18;;;;;;;;;;;;;;;:30;38156:10;38137:30;;;;;;;;;;;:44;;;;38287:10;38254:17;:30;38272:11;38254:30;;;;;;;;;;;:43;;;;38015:328;;38439:17;:26;38457:7;38439:26;;;;;;;;;;;38432:33;;;38483:12;:18;38496:4;38483:18;;;;;;;;;;;;;;;:34;38502:14;38483:34;;;;;;;;;;;38476:41;;;37537:988;;;;:::o;38820:1079::-;39073:22;39118:1;39098:10;:17;;;;:21;;;;:::i;:::-;39073:46;;39130:18;39151:15;:24;39167:7;39151:24;;;;;;;;;;;;39130:45;;39502:19;39524:10;39535:14;39524:26;;;;;;;;;;;;;;;;;;;;;;;;39502:48;;39588:11;39563:10;39574;39563:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;39699:10;39668:15;:28;39684:11;39668:28;;;;;;;;;;;:41;;;;39840:15;:24;39856:7;39840:24;;;;;;;;;;;39833:31;;;39875:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38820:1079;;;;:::o;36324:221::-;36409:14;36426:20;36443:2;36426:16;:20::i;:::-;36409:37;;36484:7;36457:12;:16;36470:2;36457:16;;;;;;;;;;;;;;;:24;36474:6;36457:24;;;;;;;;;;;:34;;;;36531:6;36502:17;:26;36520:7;36502:26;;;;;;;;;;;:35;;;;36324:221;;;:::o;10493:387::-;10553:4;10761:12;10828:7;10816:20;10808:28;;10871:1;10864:4;:8;10857:15;;;10493:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:179::-;;6436:46;6478:3;6470:6;6436:46;:::i;:::-;6514:4;6509:3;6505:14;6491:28;;6426:99;;;;:::o;6531:118::-;6618:24;6636:5;6618:24;:::i;:::-;6613:3;6606:37;6596:53;;:::o;6685:732::-;;6833:54;6881:5;6833:54;:::i;:::-;6903:86;6982:6;6977:3;6903:86;:::i;:::-;6896:93;;7013:56;7063:5;7013:56;:::i;:::-;7092:7;7123:1;7108:284;7133:6;7130:1;7127:13;7108:284;;;7209:6;7203:13;7236:63;7295:3;7280:13;7236:63;:::i;:::-;7229:70;;7322:60;7375:6;7322:60;:::i;:::-;7312:70;;7168:224;7155:1;7152;7148:9;7143:14;;7108:284;;;7112:14;7408:3;7401:10;;6809:608;;;;;;;:::o;7423:109::-;7504:21;7519:5;7504:21;:::i;:::-;7499:3;7492:34;7482:50;;:::o;7538:360::-;;7652:38;7684:5;7652:38;:::i;:::-;7706:70;7769:6;7764:3;7706:70;:::i;:::-;7699:77;;7785:52;7830:6;7825:3;7818:4;7811:5;7807:16;7785:52;:::i;:::-;7862:29;7884:6;7862:29;:::i;:::-;7857:3;7853:39;7846:46;;7628:270;;;;;:::o;7904:364::-;;8020:39;8053:5;8020:39;:::i;:::-;8075:71;8139:6;8134:3;8075:71;:::i;:::-;8068:78;;8155:52;8200:6;8195:3;8188:4;8181:5;8177:16;8155:52;:::i;:::-;8232:29;8254:6;8232:29;:::i;:::-;8227:3;8223:39;8216:46;;7996:272;;;;;:::o;8274:377::-;;8408:39;8441:5;8408:39;:::i;:::-;8463:89;8545:6;8540:3;8463:89;:::i;:::-;8456:96;;8561:52;8606:6;8601:3;8594:4;8587:5;8583:16;8561:52;:::i;:::-;8638:6;8633:3;8629:16;8622:23;;8384:267;;;;;:::o;8657:375::-;;8820:67;8884:2;8879:3;8820:67;:::i;:::-;8813:74;;8917:34;8913:1;8908:3;8904:11;8897:55;8983:13;8978:2;8973:3;8969:12;8962:35;9023:2;9018:3;9014:12;9007:19;;8803:229;;;:::o;9038:382::-;;9201:67;9265:2;9260:3;9201:67;:::i;:::-;9194:74;;9298:34;9294:1;9289:3;9285:11;9278:55;9364:20;9359:2;9354:3;9350:12;9343:42;9411:2;9406:3;9402:12;9395:19;;9184:236;;;:::o;9426:312::-;;9589:67;9653:2;9648:3;9589:67;:::i;:::-;9582:74;;9686:16;9682:1;9677:3;9673:11;9666:37;9729:2;9724:3;9720:12;9713:19;;9572:166;;;:::o;9744:370::-;;9907:67;9971:2;9966:3;9907:67;:::i;:::-;9900:74;;10004:34;10000:1;9995:3;9991:11;9984:55;10070:8;10065:2;10060:3;10056:12;10049:30;10105:2;10100:3;10096:12;10089:19;;9890:224;;;:::o;10120:326::-;;10283:67;10347:2;10342:3;10283:67;:::i;:::-;10276:74;;10380:30;10376:1;10371:3;10367:11;10360:51;10437:2;10432:3;10428:12;10421:19;;10266:180;;;:::o;10452:366::-;;10615:67;10679:2;10674:3;10615:67;:::i;:::-;10608:74;;10712:34;10708:1;10703:3;10699:11;10692:55;10778:4;10773:2;10768:3;10764:12;10757:26;10809:2;10804:3;10800:12;10793:19;;10598:220;;;:::o;10824:368::-;;10987:67;11051:2;11046:3;10987:67;:::i;:::-;10980:74;;11084:34;11080:1;11075:3;11071:11;11064:55;11150:6;11145:2;11140:3;11136:12;11129:28;11183:2;11178:3;11174:12;11167:19;;10970:222;;;:::o;11198:323::-;;11361:67;11425:2;11420:3;11361:67;:::i;:::-;11354:74;;11458:27;11454:1;11449:3;11445:11;11438:48;11512:2;11507:3;11503:12;11496:19;;11344:177;;;:::o;11527:376::-;;11690:67;11754:2;11749:3;11690:67;:::i;:::-;11683:74;;11787:34;11783:1;11778:3;11774:11;11767:55;11853:14;11848:2;11843:3;11839:12;11832:36;11894:2;11889:3;11885:12;11878:19;;11673:230;;;:::o;11909:388::-;;12072:67;12136:2;12131:3;12072:67;:::i;:::-;12065:74;;12169:34;12165:1;12160:3;12156:11;12149:55;12235:26;12230:2;12225:3;12221:12;12214:48;12288:2;12283:3;12279:12;12272:19;;12055:242;;;:::o;12303:374::-;;12466:67;12530:2;12525:3;12466:67;:::i;:::-;12459:74;;12563:34;12559:1;12554:3;12550:11;12543:55;12629:12;12624:2;12619:3;12615:12;12608:34;12668:2;12663:3;12659:12;12652:19;;12449:228;;;:::o;12683:373::-;;12846:67;12910:2;12905:3;12846:67;:::i;:::-;12839:74;;12943:34;12939:1;12934:3;12930:11;12923:55;13009:11;13004:2;12999:3;12995:12;12988:33;13047:2;13042:3;13038:12;13031:19;;12829:227;;;:::o;13062:330::-;;13225:67;13289:2;13284:3;13225:67;:::i;:::-;13218:74;;13322:34;13318:1;13313:3;13309:11;13302:55;13383:2;13378:3;13374:12;13367:19;;13208:184;;;:::o;13398:376::-;;13561:67;13625:2;13620:3;13561:67;:::i;:::-;13554:74;;13658:34;13654:1;13649:3;13645:11;13638:55;13724:14;13719:2;13714:3;13710:12;13703:36;13765:2;13760:3;13756:12;13749:19;;13544:230;;;:::o;13780:330::-;;13943:67;14007:2;14002:3;13943:67;:::i;:::-;13936:74;;14040:34;14036:1;14031:3;14027:11;14020:55;14101:2;14096:3;14092:12;14085:19;;13926:184;;;:::o;14116:373::-;;14279:67;14343:2;14338:3;14279:67;:::i;:::-;14272:74;;14376:34;14372:1;14367:3;14363:11;14356:55;14442:11;14437:2;14432:3;14428:12;14421:33;14480:2;14475:3;14471:12;14464:19;;14262:227;;;:::o;14495:379::-;;14658:67;14722:2;14717:3;14658:67;:::i;:::-;14651:74;;14755:34;14751:1;14746:3;14742:11;14735:55;14821:17;14816:2;14811:3;14807:12;14800:39;14865:2;14860:3;14856:12;14849:19;;14641:233;;;:::o;14880:365::-;;15043:67;15107:2;15102:3;15043:67;:::i;:::-;15036:74;;15140:34;15136:1;15131:3;15127:11;15120:55;15206:3;15201:2;15196:3;15192:12;15185:25;15236:2;15231:3;15227:12;15220:19;;15026:219;;;:::o;15251:321::-;;15414:67;15478:2;15473:3;15414:67;:::i;:::-;15407:74;;15511:25;15507:1;15502:3;15498:11;15491:46;15563:2;15558:3;15554:12;15547:19;;15397:175;;;:::o;15578:381::-;;15741:67;15805:2;15800:3;15741:67;:::i;:::-;15734:74;;15838:34;15834:1;15829:3;15825:11;15818:55;15904:19;15899:2;15894:3;15890:12;15883:41;15950:2;15945:3;15941:12;15934:19;;15724:235;;;:::o;15965:329::-;;16128:67;16192:2;16187:3;16128:67;:::i;:::-;16121:74;;16225:33;16221:1;16216:3;16212:11;16205:54;16285:2;16280:3;16276:12;16269:19;;16111:183;;;:::o;16300:376::-;;16463:67;16527:2;16522:3;16463:67;:::i;:::-;16456:74;;16560:34;16556:1;16551:3;16547:11;16540:55;16626:14;16621:2;16616:3;16612:12;16605:36;16667:2;16662:3;16658:12;16651:19;;16446:230;;;:::o;16682:108::-;16759:24;16777:5;16759:24;:::i;:::-;16754:3;16747:37;16737:53;;:::o;16796:118::-;16883:24;16901:5;16883:24;:::i;:::-;16878:3;16871:37;16861:53;;:::o;16920:435::-;;17122:95;17213:3;17204:6;17122:95;:::i;:::-;17115:102;;17234:95;17325:3;17316:6;17234:95;:::i;:::-;17227:102;;17346:3;17339:10;;17104:251;;;;;:::o;17361:222::-;;17492:2;17481:9;17477:18;17469:26;;17505:71;17573:1;17562:9;17558:17;17549:6;17505:71;:::i;:::-;17459:124;;;;:::o;17589:640::-;;17822:3;17811:9;17807:19;17799:27;;17836:71;17904:1;17893:9;17889:17;17880:6;17836:71;:::i;:::-;17917:72;17985:2;17974:9;17970:18;17961:6;17917:72;:::i;:::-;17999;18067:2;18056:9;18052:18;18043:6;17999:72;:::i;:::-;18118:9;18112:4;18108:20;18103:2;18092:9;18088:18;18081:48;18146:76;18217:4;18208:6;18146:76;:::i;:::-;18138:84;;17789:440;;;;;;;:::o;18235:373::-;;18416:2;18405:9;18401:18;18393:26;;18465:9;18459:4;18455:20;18451:1;18440:9;18436:17;18429:47;18493:108;18596:4;18587:6;18493:108;:::i;:::-;18485:116;;18383:225;;;;:::o;18614:210::-;;18739:2;18728:9;18724:18;18716:26;;18752:65;18814:1;18803:9;18799:17;18790:6;18752:65;:::i;:::-;18706:118;;;;:::o;18830:313::-;;18981:2;18970:9;18966:18;18958:26;;19030:9;19024:4;19020:20;19016:1;19005:9;19001:17;18994:47;19058:78;19131:4;19122:6;19058:78;:::i;:::-;19050:86;;18948:195;;;;:::o;19149:419::-;;19353:2;19342:9;19338:18;19330:26;;19402:9;19396:4;19392:20;19388:1;19377:9;19373:17;19366:47;19430:131;19556:4;19430:131;:::i;:::-;19422:139;;19320:248;;;:::o;19574:419::-;;19778:2;19767:9;19763:18;19755:26;;19827:9;19821:4;19817:20;19813:1;19802:9;19798:17;19791:47;19855:131;19981:4;19855:131;:::i;:::-;19847:139;;19745:248;;;:::o;19999:419::-;;20203:2;20192:9;20188:18;20180:26;;20252:9;20246:4;20242:20;20238:1;20227:9;20223:17;20216:47;20280:131;20406:4;20280:131;:::i;:::-;20272:139;;20170:248;;;:::o;20424:419::-;;20628:2;20617:9;20613:18;20605:26;;20677:9;20671:4;20667:20;20663:1;20652:9;20648:17;20641:47;20705:131;20831:4;20705:131;:::i;:::-;20697:139;;20595:248;;;:::o;20849:419::-;;21053:2;21042:9;21038:18;21030:26;;21102:9;21096:4;21092:20;21088:1;21077:9;21073:17;21066:47;21130:131;21256:4;21130:131;:::i;:::-;21122:139;;21020:248;;;:::o;21274:419::-;;21478:2;21467:9;21463:18;21455:26;;21527:9;21521:4;21517:20;21513:1;21502:9;21498:17;21491:47;21555:131;21681:4;21555:131;:::i;:::-;21547:139;;21445:248;;;:::o;21699:419::-;;21903:2;21892:9;21888:18;21880:26;;21952:9;21946:4;21942:20;21938:1;21927:9;21923:17;21916:47;21980:131;22106:4;21980:131;:::i;:::-;21972:139;;21870:248;;;:::o;22124:419::-;;22328:2;22317:9;22313:18;22305:26;;22377:9;22371:4;22367:20;22363:1;22352:9;22348:17;22341:47;22405:131;22531:4;22405:131;:::i;:::-;22397:139;;22295:248;;;:::o;22549:419::-;;22753:2;22742:9;22738:18;22730:26;;22802:9;22796:4;22792:20;22788:1;22777:9;22773:17;22766:47;22830:131;22956:4;22830:131;:::i;:::-;22822:139;;22720:248;;;:::o;22974:419::-;;23178:2;23167:9;23163:18;23155:26;;23227:9;23221:4;23217:20;23213:1;23202:9;23198:17;23191:47;23255:131;23381:4;23255:131;:::i;:::-;23247:139;;23145:248;;;:::o;23399:419::-;;23603:2;23592:9;23588:18;23580:26;;23652:9;23646:4;23642:20;23638:1;23627:9;23623:17;23616:47;23680:131;23806:4;23680:131;:::i;:::-;23672:139;;23570:248;;;:::o;23824:419::-;;24028:2;24017:9;24013:18;24005:26;;24077:9;24071:4;24067:20;24063:1;24052:9;24048:17;24041:47;24105:131;24231:4;24105:131;:::i;:::-;24097:139;;23995:248;;;:::o;24249:419::-;;24453:2;24442:9;24438:18;24430:26;;24502:9;24496:4;24492:20;24488:1;24477:9;24473:17;24466:47;24530:131;24656:4;24530:131;:::i;:::-;24522:139;;24420:248;;;:::o;24674:419::-;;24878:2;24867:9;24863:18;24855:26;;24927:9;24921:4;24917:20;24913:1;24902:9;24898:17;24891:47;24955:131;25081:4;24955:131;:::i;:::-;24947:139;;24845:248;;;:::o;25099:419::-;;25303:2;25292:9;25288:18;25280:26;;25352:9;25346:4;25342:20;25338:1;25327:9;25323:17;25316:47;25380:131;25506:4;25380:131;:::i;:::-;25372:139;;25270:248;;;:::o;25524:419::-;;25728:2;25717:9;25713:18;25705:26;;25777:9;25771:4;25767:20;25763:1;25752:9;25748:17;25741:47;25805:131;25931:4;25805:131;:::i;:::-;25797:139;;25695:248;;;:::o;25949:419::-;;26153:2;26142:9;26138:18;26130:26;;26202:9;26196:4;26192:20;26188:1;26177:9;26173:17;26166:47;26230:131;26356:4;26230:131;:::i;:::-;26222:139;;26120:248;;;:::o;26374:419::-;;26578:2;26567:9;26563:18;26555:26;;26627:9;26621:4;26617:20;26613:1;26602:9;26598:17;26591:47;26655:131;26781:4;26655:131;:::i;:::-;26647:139;;26545:248;;;:::o;26799:419::-;;27003:2;26992:9;26988:18;26980:26;;27052:9;27046:4;27042:20;27038:1;27027:9;27023:17;27016:47;27080:131;27206:4;27080:131;:::i;:::-;27072:139;;26970:248;;;:::o;27224:419::-;;27428:2;27417:9;27413:18;27405:26;;27477:9;27471:4;27467:20;27463:1;27452:9;27448:17;27441:47;27505:131;27631:4;27505:131;:::i;:::-;27497:139;;27395:248;;;:::o;27649:419::-;;27853:2;27842:9;27838:18;27830:26;;27902:9;27896:4;27892:20;27888:1;27877:9;27873:17;27866:47;27930:131;28056:4;27930:131;:::i;:::-;27922:139;;27820:248;;;:::o;28074:419::-;;28278:2;28267:9;28263:18;28255:26;;28327:9;28321:4;28317:20;28313:1;28302:9;28298:17;28291:47;28355:131;28481:4;28355:131;:::i;:::-;28347:139;;28245:248;;;:::o;28499:222::-;;28630:2;28619:9;28615:18;28607:26;;28643:71;28711:1;28700:9;28696:17;28687:6;28643:71;:::i;:::-;28597:124;;;;:::o;28727:283::-;;28793:2;28787:9;28777:19;;28835:4;28827:6;28823:17;28942:6;28930:10;28927:22;28906:18;28894:10;28891:34;28888:62;28885:2;;;28953:18;;:::i;:::-;28885:2;28993:10;28989:2;28982:22;28767:243;;;;:::o;29016:331::-;;29167:18;29159:6;29156:30;29153:2;;;29189:18;;:::i;:::-;29153:2;29274:4;29270:9;29263:4;29255:6;29251:17;29247:33;29239:41;;29335:4;29329;29325:15;29317:23;;29082:265;;;:::o;29353:332::-;;29505:18;29497:6;29494:30;29491:2;;;29527:18;;:::i;:::-;29491:2;29612:4;29608:9;29601:4;29593:6;29589:17;29585:33;29577:41;;29673:4;29667;29663:15;29655:23;;29420:265;;;:::o;29691:132::-;;29781:3;29773:11;;29811:4;29806:3;29802:14;29794:22;;29763:60;;;:::o;29829:114::-;;29930:5;29924:12;29914:22;;29903:40;;;:::o;29949:98::-;;30034:5;30028:12;30018:22;;30007:40;;;:::o;30053:99::-;;30139:5;30133:12;30123:22;;30112:40;;;:::o;30158:113::-;;30260:4;30255:3;30251:14;30243:22;;30233:38;;;:::o;30277:184::-;;30410:6;30405:3;30398:19;30450:4;30445:3;30441:14;30426:29;;30388:73;;;;:::o;30467:168::-;;30584:6;30579:3;30572:19;30624:4;30619:3;30615:14;30600:29;;30562:73;;;;:::o;30641:169::-;;30759:6;30754:3;30747:19;30799:4;30794:3;30790:14;30775:29;;30737:73;;;;:::o;30816:148::-;;30955:3;30940:18;;30930:34;;;;:::o;30970:305::-;;31029:20;31047:1;31029:20;:::i;:::-;31024:25;;31063:20;31081:1;31063:20;:::i;:::-;31058:25;;31217:1;31149:66;31145:74;31142:1;31139:81;31136:2;;;31223:18;;:::i;:::-;31136:2;31267:1;31264;31260:9;31253:16;;31014:261;;;;:::o;31281:185::-;;31338:20;31356:1;31338:20;:::i;:::-;31333:25;;31372:20;31390:1;31372:20;:::i;:::-;31367:25;;31411:1;31401:2;;31416:18;;:::i;:::-;31401:2;31458:1;31455;31451:9;31446:14;;31323:143;;;;:::o;31472:348::-;;31535:20;31553:1;31535:20;:::i;:::-;31530:25;;31569:20;31587:1;31569:20;:::i;:::-;31564:25;;31757:1;31689:66;31685:74;31682:1;31679:81;31674:1;31667:9;31660:17;31656:105;31653:2;;;31764:18;;:::i;:::-;31653:2;31812:1;31809;31805:9;31794:20;;31520:300;;;;:::o;31826:191::-;;31886:20;31904:1;31886:20;:::i;:::-;31881:25;;31920:20;31938:1;31920:20;:::i;:::-;31915:25;;31959:1;31956;31953:8;31950:2;;;31964:18;;:::i;:::-;31950:2;32009:1;32006;32002:9;31994:17;;31871:146;;;;:::o;32023:96::-;;32089:24;32107:5;32089:24;:::i;:::-;32078:35;;32068:51;;;:::o;32125:90::-;;32202:5;32195:13;32188:21;32177:32;;32167:48;;;:::o;32221:149::-;;32297:66;32290:5;32286:78;32275:89;;32265:105;;;:::o;32376:126::-;;32453:42;32446:5;32442:54;32431:65;;32421:81;;;:::o;32508:77::-;;32574:5;32563:16;;32553:32;;;:::o;32591:154::-;32675:6;32670:3;32665;32652:30;32737:1;32728:6;32723:3;32719:16;32712:27;32642:103;;;:::o;32751:307::-;32819:1;32829:113;32843:6;32840:1;32837:13;32829:113;;;32928:1;32923:3;32919:11;32913:18;32909:1;32904:3;32900:11;32893:39;32865:2;32862:1;32858:10;32853:15;;32829:113;;;32960:6;32957:1;32954:13;32951:2;;;33040:1;33031:6;33026:3;33022:16;33015:27;32951:2;32800:258;;;;:::o;33064:320::-;;33145:1;33139:4;33135:12;33125:22;;33192:1;33186:4;33182:12;33213:18;33203:2;;33269:4;33261:6;33257:17;33247:27;;33203:2;33331;33323:6;33320:14;33300:18;33297:38;33294:2;;;33350:18;;:::i;:::-;33294:2;33115:269;;;;:::o;33390:233::-;;33452:24;33470:5;33452:24;:::i;:::-;33443:33;;33498:66;33491:5;33488:77;33485:2;;;33568:18;;:::i;:::-;33485:2;33615:1;33608:5;33604:13;33597:20;;33433:190;;;:::o;33629:176::-;;33678:20;33696:1;33678:20;:::i;:::-;33673:25;;33712:20;33730:1;33712:20;:::i;:::-;33707:25;;33751:1;33741:2;;33756:18;;:::i;:::-;33741:2;33797:1;33794;33790:9;33785:14;;33663:142;;;;:::o;33811:180::-;33859:77;33856:1;33849:88;33956:4;33953:1;33946:15;33980:4;33977:1;33970:15;33997:180;34045:77;34042:1;34035:88;34142:4;34139:1;34132:15;34166:4;34163:1;34156:15;34183:180;34231:77;34228:1;34221:88;34328:4;34325:1;34318:15;34352:4;34349:1;34342:15;34369:180;34417:77;34414:1;34407:88;34514:4;34511:1;34504:15;34538:4;34535:1;34528:15;34555:102;;34647:2;34643:7;34638:2;34631:5;34627:14;34623:28;34613:38;;34603:54;;;:::o;34663:122::-;34736:24;34754:5;34736:24;:::i;:::-;34729:5;34726:35;34716:2;;34775:1;34772;34765:12;34716:2;34706:79;:::o;34791:116::-;34861:21;34876:5;34861:21;:::i;:::-;34854:5;34851:32;34841:2;;34897:1;34894;34887:12;34841:2;34831:76;:::o;34913:120::-;34985:23;35002:5;34985:23;:::i;:::-;34978:5;34975:34;34965:2;;35023:1;35020;35013:12;34965:2;34955:78;:::o;35039:122::-;35112:24;35130:5;35112:24;:::i;:::-;35105:5;35102:35;35092:2;;35151:1;35148;35141:12;35092:2;35082:79;:::o
Swarm Source
ipfs://74d7060097aae1954716901abc54a396f1d71b4d56b2f6886bf78b5a3deba748
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.