Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
916 FFLYC
Holders
282
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FFLYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FunkyFlyCans
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-19 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.7; contract FunkyFlyCans is ERC721A, Ownable { using Strings for uint256; string public baseMetaUri; //General Settings uint16 public maxMintAmountPerTransaction = 1; uint16 public maxMintAmountPerWallet = 1000; //Inventory uint256 public maxSupply = 5500; //Prices uint256 public cost = 0.07 ether; //Utility bool public paused = true; constructor(string memory _baseUrl) ERC721A("Funky Fly Spraycans", "FFLYC") { baseMetaUri = _baseUrl; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } // public function mint(uint256 _mintAmount) public payable { if (msg.sender != owner()) { uint256 ownerTokenCount = balanceOf(msg.sender); require(!paused, "Contract Paused"); require(_mintAmount > 0, "Mint amount should be greater than 0"); require( _mintAmount <= maxMintAmountPerTransaction, "Sorry you cant mint this amount at once" ); require( totalSupply() + _mintAmount <= maxSupply, "Exceeds Max Supply" ); require( (ownerTokenCount + _mintAmount) <= maxMintAmountPerWallet, "Sorry you cant mint more" ); require( msg.value >= cost * _mintAmount, "Insuffient funds"); } _mintLoop(msg.sender, _mintAmount); } function gift(address _to, uint256 _mintAmount) public onlyOwner { _mintLoop(_to, _mintAmount); } function airdrop(address[] memory _airdropAddresses) public onlyOwner { for (uint256 i = 0; i < _airdropAddresses.length; i++) { address to = _airdropAddresses[i]; _mintLoop(to, 1); } } function _baseURI() internal view virtual override returns (string memory) { return baseMetaUri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } //Burn functions function batchBurn(uint256[] memory _BurnTokenIds) public virtual { for(uint256 i = 0; i < _BurnTokenIds.length; i++){ _burn(_BurnTokenIds[i], true); } } function burn(uint256 _BurnTokenId) public virtual{ _burn(_BurnTokenId, true); } function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner { maxMintAmountPerTransaction = _amount; } function setMaxMintAmountPerWallet(uint16 _amount) public onlyOwner { maxMintAmountPerWallet = _amount; } function setMaxSupply(uint256 _supply) public onlyOwner { maxSupply = _supply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseMetaUri = _newBaseURI; } function togglePause() public onlyOwner { paused = !paused; } function _mintLoop(address _receiver, uint256 _mintAmount) internal { _safeMint(_receiver, _mintAmount); } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseMetaUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_BurnTokenIds","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_BurnTokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","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":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052600a805463ffffffff19166303e8000117905561157c600b5566f8b0a10e470000600c55600d805460ff191660011790553480156200004257600080fd5b50604051620025483803806200254883398101604081905262000065916200021b565b604080518082018252601381527f46756e6b7920466c7920537072617963616e730000000000000000000000000060208083019182528351808501909452600584526446464c594360d81b908401528151919291620000c7916002916200015f565b508051620000dd9060039060208401906200015f565b5050600160005550620000f0336200010d565b8051620001059060099060208401906200015f565b505062000334565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016d90620002f7565b90600052602060002090601f016020900481019282620001915760008555620001dc565b82601f10620001ac57805160ff1916838001178555620001dc565b82800160010185558215620001dc579182015b82811115620001dc578251825591602001919060010190620001bf565b50620001ea929150620001ee565b5090565b5b80821115620001ea5760008155600101620001ef565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200022f57600080fd5b82516001600160401b03808211156200024757600080fd5b818501915085601f8301126200025c57600080fd5b81518181111562000271576200027162000205565b604051601f8201601f19908116603f011681019083821181831017156200029c576200029c62000205565b816040528281528886848701011115620002b557600080fd5b600093505b82841015620002d95784840186015181850187015292850192620002ba565b82841115620002eb5760008684830101525b98975050505050505050565b600181811c908216806200030c57607f821691505b602082108114156200032e57634e487b7160e01b600052602260045260246000fd5b50919050565b61220480620003446000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e681146105d2578063dc8e92ea146105f2578063e97800cb14610612578063e985e9c514610632578063f2fde38b1461067b57600080fd5b8063c87b56dd1461055c578063cbce4c971461057c578063cef117291461059c578063d5abeb01146105bc57600080fd5b8063aa5aa2f6116100e7578063aa5aa2f6146104c3578063b88d4fde146104d8578063bbb89744146104f8578063bc951b9114610526578063c4ae31681461054757600080fd5b80638da5cb5b1461045d57806395d89b411461047b578063a0712d6814610490578063a22cb465146104a357600080fd5b806342966c681161019b5780636352211e1161016a5780636352211e146103c85780636f8b44b0146103e857806370a0823114610408578063715018a614610428578063729ad39e1461043d57600080fd5b806342966c681461034e57806344a0d68a1461036e57806355f804b31461038e5780635c975abb146103ae57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611b6d565b61069b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ed565b6040516102409190611be2565b34801561027757600080fd5b5061028b610286366004611bf5565b61077f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c2a565b6107c3565b005b3480156102d157600080fd5b506102db600c5481565b604051908152602001610240565b3480156102f557600080fd5b5060015460005403600019016102db565b34801561031257600080fd5b506102c3610321366004611c54565b610851565b6102c361085c565b34801561033a57600080fd5b506102c3610349366004611c54565b6108e7565b34801561035a57600080fd5b506102c3610369366004611bf5565b610902565b34801561037a57600080fd5b506102c3610389366004611bf5565b61090d565b34801561039a57600080fd5b506102c36103a9366004611d2d565b61093c565b3480156103ba57600080fd5b50600d546102349060ff1681565b3480156103d457600080fd5b5061028b6103e3366004611bf5565b61097d565b3480156103f457600080fd5b506102c3610403366004611bf5565b61098f565b34801561041457600080fd5b506102db610423366004611d75565b6109be565b34801561043457600080fd5b506102c3610a0c565b34801561044957600080fd5b506102c3610458366004611db3565b610a42565b34801561046957600080fd5b506008546001600160a01b031661028b565b34801561048757600080fd5b5061025e610ab4565b6102c361049e366004611bf5565b610ac3565b3480156104af57600080fd5b506102c36104be366004611e4f565b610d09565b3480156104cf57600080fd5b5061025e610d9f565b3480156104e457600080fd5b506102c36104f3366004611e8b565b610e2d565b34801561050457600080fd5b50600a546105139061ffff1681565b60405161ffff9091168152602001610240565b34801561053257600080fd5b50600a546105139062010000900461ffff1681565b34801561055357600080fd5b506102c3610e7e565b34801561056857600080fd5b5061025e610577366004611bf5565b610ebc565b34801561058857600080fd5b506102c3610597366004611c2a565b610f87565b3480156105a857600080fd5b506102c36105b7366004611f06565b610fbb565b3480156105c857600080fd5b506102db600b5481565b3480156105de57600080fd5b506102db6105ed366004611d75565b611005565b3480156105fe57600080fd5b506102c361060d366004611f2a565b611033565b34801561061e57600080fd5b506102c361062d366004611f06565b611075565b34801561063e57600080fd5b5061023461064d366004611faf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068757600080fd5b506102c3610696366004611d75565b6110b7565b60006001600160e01b031982166380ac58cd60e01b14806106cc57506001600160e01b03198216635b5e139f60e01b145b806106e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fc90611fe2565b80601f016020809104026020016040519081016040528092919081815260200182805461072890611fe2565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a8261114f565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ce8261097d565b9050806001600160a01b0316836001600160a01b031614156108035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108235750610821813361064d565b155b15610841576040516367d9dca160e11b815260040160405180910390fd5b61084c838383611188565b505050565b61084c8383836111e4565b6008546001600160a01b0316331461088f5760405162461bcd60e51b81526004016108869061201d565b60405180910390fd5b604051600090339047908381818185875af1925050503d80600081146108d1576040519150601f19603f3d011682016040523d82523d6000602084013e6108d6565b606091505b50509050806108e457600080fd5b50565b61084c83838360405180602001604052806000815250610e2d565b6108e48160016113c0565b6008546001600160a01b031633146109375760405162461bcd60e51b81526004016108869061201d565b600c55565b6008546001600160a01b031633146109665760405162461bcd60e51b81526004016108869061201d565b8051610979906009906020840190611abe565b5050565b600061098882611573565b5192915050565b6008546001600160a01b031633146109b95760405162461bcd60e51b81526004016108869061201d565b600b55565b60006001600160a01b0382166109e7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a365760405162461bcd60e51b81526004016108869061201d565b610a40600061169a565b565b6008546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016108869061201d565b60005b8151811015610979576000828281518110610a8c57610a8c612052565b60200260200101519050610aa18160016116ec565b5080610aac8161207e565b915050610a6f565b6060600380546106fc90611fe2565b6008546001600160a01b03163314610cff576000610ae0336109be565b600d5490915060ff1615610b285760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd0814185d5cd959608a1b6044820152606401610886565b60008211610b845760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610886565b600a5461ffff16821115610bea5760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610886565b600b546001546000548491900360001901610c059190612099565b1115610c485760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610886565b600a5462010000900461ffff16610c5f8383612099565b1115610cad5760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610886565b81600c54610cbb91906120b1565b341015610cfd5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610886565b505b6108e433826116ec565b6001600160a01b038216331415610d335760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610dac90611fe2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd890611fe2565b8015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b505050505081565b610e388484846111e4565b6001600160a01b0383163b15158015610e5a5750610e58848484846116f6565b155b15610e78576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ea85760405162461bcd60e51b81526004016108869061201d565b600d805460ff19811660ff90911615179055565b6060610ec78261114f565b610f2b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610886565b6000610f356117ee565b90506000815111610f555760405180602001604052806000815250610f80565b80610f5f846117fd565b604051602001610f709291906120d0565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fb15760405162461bcd60e51b81526004016108869061201d565b61097982826116ec565b6008546001600160a01b03163314610fe55760405162461bcd60e51b81526004016108869061201d565b600a805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166106e7565b60005b81518110156109795761106382828151811061105457611054612052565b602002602001015160016113c0565b8061106d8161207e565b915050611036565b6008546001600160a01b0316331461109f5760405162461bcd60e51b81526004016108869061201d565b600a805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146110e15760405162461bcd60e51b81526004016108869061201d565b6001600160a01b0381166111465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b6108e48161169a565b600081600111158015611163575060005482105b80156106e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111ef82611573565b9050836001600160a01b031681600001516001600160a01b0316146112265760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112445750611244853361064d565b8061125f5750336112548461077f565b6001600160a01b0316145b90508061127f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112a657604051633a954ecd60e21b815260040160405180910390fd5b6112b260008487611188565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661138657600054821461138657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206121af83398151915260405160405180910390a45b5050505050565b60006113cb83611573565b80519091508215611431576000336001600160a01b03831614806113f457506113f4823361064d565b8061140f5750336114048661077f565b6001600160a01b0316145b90508061142f57604051632ce44b5f60e11b815260040160405180910390fd5b505b61143d60008583611188565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661153b57600054821461153b57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206121af833981519152908390a4505060018054810190555050565b604080516060810182526000808252602082018190529181019190915281806001111580156115a3575060005481105b1561168157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061167f5780516001600160a01b031615611616579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561167a579392505050565b611616565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61097982826118fa565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061172b9033908990889088906004016120ff565b602060405180830381600087803b15801561174557600080fd5b505af1925050508015611775575060408051601f3d908101601f191682019092526117729181019061213c565b60015b6117d0573d8080156117a3576040519150601f19603f3d011682016040523d82523d6000602084013e6117a8565b606091505b5080516117c8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fc90611fe2565b6060816118215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561184b57806118358161207e565b91506118449050600a8361216f565b9150611825565b6000816001600160401b0381111561186557611865611c90565b6040519080825280601f01601f19166020018201604052801561188f576020820181803683370190505b5090505b84156117e6576118a4600183612183565b91506118b1600a8661219a565b6118bc906030612099565b60f81b8183815181106118d1576118d1612052565b60200101906001600160f81b031916908160001a9053506118f3600a8661216f565b9450611893565b61097982826040518060200160405280600081525061084c83838360016000546001600160a01b03851661194057604051622e076360e81b815260040160405180910390fd5b8361195e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a0a57506001600160a01b0387163b15155b15611a81575b60405182906001600160a01b038916906000906000805160206121af833981519152908290a4611a4960008884806001019550886116f6565b611a66576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a10578260005414611a7c57600080fd5b611ab5565b5b6040516001830192906001600160a01b038916906000906000805160206121af833981519152908290a480821415611a82575b506000556113b9565b828054611aca90611fe2565b90600052602060002090601f016020900481019282611aec5760008555611b32565b82601f10611b0557805160ff1916838001178555611b32565b82800160010185558215611b32579182015b82811115611b32578251825591602001919060010190611b17565b50611b3e929150611b42565b5090565b5b80821115611b3e5760008155600101611b43565b6001600160e01b0319811681146108e457600080fd5b600060208284031215611b7f57600080fd5b8135610f8081611b57565b60005b83811015611ba5578181015183820152602001611b8d565b83811115610e785750506000910152565b60008151808452611bce816020860160208601611b8a565b601f01601f19169290920160200192915050565b602081526000610f806020830184611bb6565b600060208284031215611c0757600080fd5b5035919050565b80356001600160a01b0381168114611c2557600080fd5b919050565b60008060408385031215611c3d57600080fd5b611c4683611c0e565b946020939093013593505050565b600080600060608486031215611c6957600080fd5b611c7284611c0e565b9250611c8060208501611c0e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611cce57611cce611c90565b604052919050565b60006001600160401b03831115611cef57611cef611c90565b611d02601f8401601f1916602001611ca6565b9050828152838383011115611d1657600080fd5b828260208301376000602084830101529392505050565b600060208284031215611d3f57600080fd5b81356001600160401b03811115611d5557600080fd5b8201601f81018413611d6657600080fd5b6117e684823560208401611cd6565b600060208284031215611d8757600080fd5b610f8082611c0e565b60006001600160401b03821115611da957611da9611c90565b5060051b60200190565b60006020808385031215611dc657600080fd5b82356001600160401b03811115611ddc57600080fd5b8301601f81018513611ded57600080fd5b8035611e00611dfb82611d90565b611ca6565b81815260059190911b82018301908381019087831115611e1f57600080fd5b928401925b82841015611e4457611e3584611c0e565b82529284019290840190611e24565b979650505050505050565b60008060408385031215611e6257600080fd5b611e6b83611c0e565b915060208301358015158114611e8057600080fd5b809150509250929050565b60008060008060808587031215611ea157600080fd5b611eaa85611c0e565b9350611eb860208601611c0e565b92506040850135915060608501356001600160401b03811115611eda57600080fd5b8501601f81018713611eeb57600080fd5b611efa87823560208401611cd6565b91505092959194509250565b600060208284031215611f1857600080fd5b813561ffff81168114610f8057600080fd5b60006020808385031215611f3d57600080fd5b82356001600160401b03811115611f5357600080fd5b8301601f81018513611f6457600080fd5b8035611f72611dfb82611d90565b81815260059190911b82018301908381019087831115611f9157600080fd5b928401925b82841015611e4457833582529284019290840190611f96565b60008060408385031215611fc257600080fd5b611fcb83611c0e565b9150611fd960208401611c0e565b90509250929050565b600181811c90821680611ff657607f821691505b6020821081141561201757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561209257612092612068565b5060010190565b600082198211156120ac576120ac612068565b500190565b60008160001904831182151516156120cb576120cb612068565b500290565b600083516120e2818460208801611b8a565b8351908301906120f6818360208801611b8a565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213290830184611bb6565b9695505050505050565b60006020828403121561214e57600080fd5b8151610f8081611b57565b634e487b7160e01b600052601260045260246000fd5b60008261217e5761217e612159565b500490565b60008282101561219557612195612068565b500390565b6000826121a9576121a9612159565b50069056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203160c79f8ab29092c3bda4f462426b352778d2faadcf64655e1892d4c9fff1ad64736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e681146105d2578063dc8e92ea146105f2578063e97800cb14610612578063e985e9c514610632578063f2fde38b1461067b57600080fd5b8063c87b56dd1461055c578063cbce4c971461057c578063cef117291461059c578063d5abeb01146105bc57600080fd5b8063aa5aa2f6116100e7578063aa5aa2f6146104c3578063b88d4fde146104d8578063bbb89744146104f8578063bc951b9114610526578063c4ae31681461054757600080fd5b80638da5cb5b1461045d57806395d89b411461047b578063a0712d6814610490578063a22cb465146104a357600080fd5b806342966c681161019b5780636352211e1161016a5780636352211e146103c85780636f8b44b0146103e857806370a0823114610408578063715018a614610428578063729ad39e1461043d57600080fd5b806342966c681461034e57806344a0d68a1461036e57806355f804b31461038e5780635c975abb146103ae57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611b6d565b61069b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ed565b6040516102409190611be2565b34801561027757600080fd5b5061028b610286366004611bf5565b61077f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c2a565b6107c3565b005b3480156102d157600080fd5b506102db600c5481565b604051908152602001610240565b3480156102f557600080fd5b5060015460005403600019016102db565b34801561031257600080fd5b506102c3610321366004611c54565b610851565b6102c361085c565b34801561033a57600080fd5b506102c3610349366004611c54565b6108e7565b34801561035a57600080fd5b506102c3610369366004611bf5565b610902565b34801561037a57600080fd5b506102c3610389366004611bf5565b61090d565b34801561039a57600080fd5b506102c36103a9366004611d2d565b61093c565b3480156103ba57600080fd5b50600d546102349060ff1681565b3480156103d457600080fd5b5061028b6103e3366004611bf5565b61097d565b3480156103f457600080fd5b506102c3610403366004611bf5565b61098f565b34801561041457600080fd5b506102db610423366004611d75565b6109be565b34801561043457600080fd5b506102c3610a0c565b34801561044957600080fd5b506102c3610458366004611db3565b610a42565b34801561046957600080fd5b506008546001600160a01b031661028b565b34801561048757600080fd5b5061025e610ab4565b6102c361049e366004611bf5565b610ac3565b3480156104af57600080fd5b506102c36104be366004611e4f565b610d09565b3480156104cf57600080fd5b5061025e610d9f565b3480156104e457600080fd5b506102c36104f3366004611e8b565b610e2d565b34801561050457600080fd5b50600a546105139061ffff1681565b60405161ffff9091168152602001610240565b34801561053257600080fd5b50600a546105139062010000900461ffff1681565b34801561055357600080fd5b506102c3610e7e565b34801561056857600080fd5b5061025e610577366004611bf5565b610ebc565b34801561058857600080fd5b506102c3610597366004611c2a565b610f87565b3480156105a857600080fd5b506102c36105b7366004611f06565b610fbb565b3480156105c857600080fd5b506102db600b5481565b3480156105de57600080fd5b506102db6105ed366004611d75565b611005565b3480156105fe57600080fd5b506102c361060d366004611f2a565b611033565b34801561061e57600080fd5b506102c361062d366004611f06565b611075565b34801561063e57600080fd5b5061023461064d366004611faf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068757600080fd5b506102c3610696366004611d75565b6110b7565b60006001600160e01b031982166380ac58cd60e01b14806106cc57506001600160e01b03198216635b5e139f60e01b145b806106e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fc90611fe2565b80601f016020809104026020016040519081016040528092919081815260200182805461072890611fe2565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a8261114f565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ce8261097d565b9050806001600160a01b0316836001600160a01b031614156108035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108235750610821813361064d565b155b15610841576040516367d9dca160e11b815260040160405180910390fd5b61084c838383611188565b505050565b61084c8383836111e4565b6008546001600160a01b0316331461088f5760405162461bcd60e51b81526004016108869061201d565b60405180910390fd5b604051600090339047908381818185875af1925050503d80600081146108d1576040519150601f19603f3d011682016040523d82523d6000602084013e6108d6565b606091505b50509050806108e457600080fd5b50565b61084c83838360405180602001604052806000815250610e2d565b6108e48160016113c0565b6008546001600160a01b031633146109375760405162461bcd60e51b81526004016108869061201d565b600c55565b6008546001600160a01b031633146109665760405162461bcd60e51b81526004016108869061201d565b8051610979906009906020840190611abe565b5050565b600061098882611573565b5192915050565b6008546001600160a01b031633146109b95760405162461bcd60e51b81526004016108869061201d565b600b55565b60006001600160a01b0382166109e7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a365760405162461bcd60e51b81526004016108869061201d565b610a40600061169a565b565b6008546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016108869061201d565b60005b8151811015610979576000828281518110610a8c57610a8c612052565b60200260200101519050610aa18160016116ec565b5080610aac8161207e565b915050610a6f565b6060600380546106fc90611fe2565b6008546001600160a01b03163314610cff576000610ae0336109be565b600d5490915060ff1615610b285760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd0814185d5cd959608a1b6044820152606401610886565b60008211610b845760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610886565b600a5461ffff16821115610bea5760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610886565b600b546001546000548491900360001901610c059190612099565b1115610c485760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610886565b600a5462010000900461ffff16610c5f8383612099565b1115610cad5760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610886565b81600c54610cbb91906120b1565b341015610cfd5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610886565b505b6108e433826116ec565b6001600160a01b038216331415610d335760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610dac90611fe2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd890611fe2565b8015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b505050505081565b610e388484846111e4565b6001600160a01b0383163b15158015610e5a5750610e58848484846116f6565b155b15610e78576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ea85760405162461bcd60e51b81526004016108869061201d565b600d805460ff19811660ff90911615179055565b6060610ec78261114f565b610f2b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610886565b6000610f356117ee565b90506000815111610f555760405180602001604052806000815250610f80565b80610f5f846117fd565b604051602001610f709291906120d0565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fb15760405162461bcd60e51b81526004016108869061201d565b61097982826116ec565b6008546001600160a01b03163314610fe55760405162461bcd60e51b81526004016108869061201d565b600a805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166106e7565b60005b81518110156109795761106382828151811061105457611054612052565b602002602001015160016113c0565b8061106d8161207e565b915050611036565b6008546001600160a01b0316331461109f5760405162461bcd60e51b81526004016108869061201d565b600a805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146110e15760405162461bcd60e51b81526004016108869061201d565b6001600160a01b0381166111465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b6108e48161169a565b600081600111158015611163575060005482105b80156106e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111ef82611573565b9050836001600160a01b031681600001516001600160a01b0316146112265760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112445750611244853361064d565b8061125f5750336112548461077f565b6001600160a01b0316145b90508061127f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112a657604051633a954ecd60e21b815260040160405180910390fd5b6112b260008487611188565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661138657600054821461138657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206121af83398151915260405160405180910390a45b5050505050565b60006113cb83611573565b80519091508215611431576000336001600160a01b03831614806113f457506113f4823361064d565b8061140f5750336114048661077f565b6001600160a01b0316145b90508061142f57604051632ce44b5f60e11b815260040160405180910390fd5b505b61143d60008583611188565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661153b57600054821461153b57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206121af833981519152908390a4505060018054810190555050565b604080516060810182526000808252602082018190529181019190915281806001111580156115a3575060005481105b1561168157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061167f5780516001600160a01b031615611616579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561167a579392505050565b611616565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61097982826118fa565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061172b9033908990889088906004016120ff565b602060405180830381600087803b15801561174557600080fd5b505af1925050508015611775575060408051601f3d908101601f191682019092526117729181019061213c565b60015b6117d0573d8080156117a3576040519150601f19603f3d011682016040523d82523d6000602084013e6117a8565b606091505b5080516117c8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fc90611fe2565b6060816118215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561184b57806118358161207e565b91506118449050600a8361216f565b9150611825565b6000816001600160401b0381111561186557611865611c90565b6040519080825280601f01601f19166020018201604052801561188f576020820181803683370190505b5090505b84156117e6576118a4600183612183565b91506118b1600a8661219a565b6118bc906030612099565b60f81b8183815181106118d1576118d1612052565b60200101906001600160f81b031916908160001a9053506118f3600a8661216f565b9450611893565b61097982826040518060200160405280600081525061084c83838360016000546001600160a01b03851661194057604051622e076360e81b815260040160405180910390fd5b8361195e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a0a57506001600160a01b0387163b15155b15611a81575b60405182906001600160a01b038916906000906000805160206121af833981519152908290a4611a4960008884806001019550886116f6565b611a66576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a10578260005414611a7c57600080fd5b611ab5565b5b6040516001830192906001600160a01b038916906000906000805160206121af833981519152908290a480821415611a82575b506000556113b9565b828054611aca90611fe2565b90600052602060002090601f016020900481019282611aec5760008555611b32565b82601f10611b0557805160ff1916838001178555611b32565b82800160010185558215611b32579182015b82811115611b32578251825591602001919060010190611b17565b50611b3e929150611b42565b5090565b5b80821115611b3e5760008155600101611b43565b6001600160e01b0319811681146108e457600080fd5b600060208284031215611b7f57600080fd5b8135610f8081611b57565b60005b83811015611ba5578181015183820152602001611b8d565b83811115610e785750506000910152565b60008151808452611bce816020860160208601611b8a565b601f01601f19169290920160200192915050565b602081526000610f806020830184611bb6565b600060208284031215611c0757600080fd5b5035919050565b80356001600160a01b0381168114611c2557600080fd5b919050565b60008060408385031215611c3d57600080fd5b611c4683611c0e565b946020939093013593505050565b600080600060608486031215611c6957600080fd5b611c7284611c0e565b9250611c8060208501611c0e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611cce57611cce611c90565b604052919050565b60006001600160401b03831115611cef57611cef611c90565b611d02601f8401601f1916602001611ca6565b9050828152838383011115611d1657600080fd5b828260208301376000602084830101529392505050565b600060208284031215611d3f57600080fd5b81356001600160401b03811115611d5557600080fd5b8201601f81018413611d6657600080fd5b6117e684823560208401611cd6565b600060208284031215611d8757600080fd5b610f8082611c0e565b60006001600160401b03821115611da957611da9611c90565b5060051b60200190565b60006020808385031215611dc657600080fd5b82356001600160401b03811115611ddc57600080fd5b8301601f81018513611ded57600080fd5b8035611e00611dfb82611d90565b611ca6565b81815260059190911b82018301908381019087831115611e1f57600080fd5b928401925b82841015611e4457611e3584611c0e565b82529284019290840190611e24565b979650505050505050565b60008060408385031215611e6257600080fd5b611e6b83611c0e565b915060208301358015158114611e8057600080fd5b809150509250929050565b60008060008060808587031215611ea157600080fd5b611eaa85611c0e565b9350611eb860208601611c0e565b92506040850135915060608501356001600160401b03811115611eda57600080fd5b8501601f81018713611eeb57600080fd5b611efa87823560208401611cd6565b91505092959194509250565b600060208284031215611f1857600080fd5b813561ffff81168114610f8057600080fd5b60006020808385031215611f3d57600080fd5b82356001600160401b03811115611f5357600080fd5b8301601f81018513611f6457600080fd5b8035611f72611dfb82611d90565b81815260059190911b82018301908381019087831115611f9157600080fd5b928401925b82841015611e4457833582529284019290840190611f96565b60008060408385031215611fc257600080fd5b611fcb83611c0e565b9150611fd960208401611c0e565b90509250929050565b600181811c90821680611ff657607f821691505b6020821081141561201757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561209257612092612068565b5060010190565b600082198211156120ac576120ac612068565b500190565b60008160001904831182151516156120cb576120cb612068565b500290565b600083516120e2818460208801611b8a565b8351908301906120f6818360208801611b8a565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213290830184611bb6565b9695505050505050565b60006020828403121561214e57600080fd5b8151610f8081611b57565b634e487b7160e01b600052601260045260246000fd5b60008261217e5761217e612159565b500490565b60008282101561219557612195612068565b500390565b6000826121a9576121a9612159565b50069056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203160c79f8ab29092c3bda4f462426b352778d2faadcf64655e1892d4c9fff1ad64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseUrl (string):
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
44830:3885:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27045:305;;;;;;;;;;-1:-1:-1;27045:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27045:305:0;;;;;;;;30158:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31661:204::-;;;;;;;;;;-1:-1:-1;31661:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31661:204:0;1528:203:1;31224:371:0;;;;;;;;;;-1:-1:-1;31224:371:0;;;;;:::i;:::-;;:::i;:::-;;45150:32;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;45150:32:0;2173:177:1;26294:303:0;;;;;;;;;;-1:-1:-1;26151:1:0;26548:12;26338:7;26532:13;:28;-1:-1:-1;;26532:46:0;26294:303;;32526:170;;;;;;;;;;-1:-1:-1;32526:170:0;;;;;:::i;:::-;;:::i;48520:192::-;;;:::i;32767:185::-;;;;;;;;;;-1:-1:-1;32767:185:0;;;;;:::i;:::-;;:::i;47722:94::-;;;;;;;;;;-1:-1:-1;47722:94:0;;;;;:::i;:::-;;:::i;47396:86::-;;;;;;;;;;-1:-1:-1;47396:86:0;;;;;:::i;:::-;;:::i;48193:108::-;;;;;;;;;;-1:-1:-1;48193:108:0;;;;;:::i;:::-;;:::i;45206:25::-;;;;;;;;;;-1:-1:-1;45206:25:0;;;;;;;;29966:125;;;;;;;;;;-1:-1:-1;29966:125:0;;;;;:::i;:::-;;:::i;48091:94::-;;;;;;;;;;-1:-1:-1;48091:94:0;;;;;:::i;:::-;;:::i;27414:206::-;;;;;;;;;;-1:-1:-1;27414:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;46539:234::-;;;;;;;;;;-1:-1:-1;46539:234:0;;;;;:::i;:::-;;:::i;4112:87::-;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;30327:104;;;;;;;;;;;;;:::i;45505:907::-;;;;;;:::i;:::-;;:::i;31937:287::-;;;;;;;;;;-1:-1:-1;31937:287:0;;;;;:::i;:::-;;:::i;44913:25::-;;;;;;;;;;;;;:::i;33023:369::-;;;;;;;;;;-1:-1:-1;33023:369:0;;;;;:::i;:::-;;:::i;44975:45::-;;;;;;;;;;-1:-1:-1;44975:45:0;;;;;;;;;;;6447:6:1;6435:19;;;6417:38;;6405:2;6390:18;44975:45:0;6273:188:1;45027:43:0;;;;;;;;;;-1:-1:-1;45027:43:0;;;;;;;;;;;48309:75;;;;;;;;;;;;;:::i;46901:487::-;;;;;;;;;;-1:-1:-1;46901:487:0;;;;;:::i;:::-;;:::i;46420:111::-;;;;;;;;;;-1:-1:-1;46420:111:0;;;;;:::i;:::-;;:::i;47964:119::-;;;;;;;;;;-1:-1:-1;47964:119:0;;;;;:::i;:::-;;:::i;45096:31::-;;;;;;;;;;;;;;;;45369:113;;;;;;;;;;-1:-1:-1;45369:113:0;;;;;:::i;:::-;;:::i;47513:201::-;;;;;;;;;;-1:-1:-1;47513:201:0;;;;;:::i;:::-;;:::i;47827:129::-;;;;;;;;;;-1:-1:-1;47827:129:0;;;;;:::i;:::-;;:::i;32295:164::-;;;;;;;;;;-1:-1:-1;32295:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32416:25:0;;;32392:4;32416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32295:164;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;27045:305::-;27147:4;-1:-1:-1;;;;;;27184:40:0;;-1:-1:-1;;;27184:40:0;;:105;;-1:-1:-1;;;;;;;27241:48:0;;-1:-1:-1;;;27241:48:0;27184:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;27306:36;27164:178;27045:305;-1:-1:-1;;27045:305:0:o;30158:100::-;30212:13;30245:5;30238:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30158:100;:::o;31661:204::-;31729:7;31754:16;31762:7;31754;:16::i;:::-;31749:64;;31779:34;;-1:-1:-1;;;31779:34:0;;;;;;;;;;;31749:64;-1:-1:-1;31833:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31833:24:0;;31661:204::o;31224:371::-;31297:13;31313:24;31329:7;31313:15;:24::i;:::-;31297:40;;31358:5;-1:-1:-1;;;;;31352:11:0;:2;-1:-1:-1;;;;;31352:11:0;;31348:48;;;31372:24;;-1:-1:-1;;;31372:24:0;;;;;;;;;;;31348:48;2916:10;-1:-1:-1;;;;;31413:21:0;;;;;;:63;;-1:-1:-1;31439:37:0;31456:5;2916:10;32295:164;:::i;31439:37::-;31438:38;31413:63;31409:138;;;31500:35;;-1:-1:-1;;;31500:35:0;;;;;;;;;;;31409:138;31559:28;31568:2;31572:7;31581:5;31559:8;:28::i;:::-;31286:309;31224:371;;:::o;32526:170::-;32660:28;32670:4;32676:2;32680:7;32660:9;:28::i;48520:192::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;48595:82:::1;::::0;48577:12:::1;::::0;48603:10:::1;::::0;48641:21:::1;::::0;48577:12;48595:82;48577:12;48595:82;48641:21;48603:10;48595:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48576:101;;;48696:7;48688:16;;;::::0;::::1;;48565:147;48520:192::o:0;32767:185::-;32905:39;32922:4;32928:2;32932:7;32905:39;;;;;;;;;;;;:16;:39::i;47722:94::-;47783:25;47789:12;47803:4;47783:5;:25::i;47396:86::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47459:4:::1;:15:::0;47396:86::o;48193:108::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48268:25;;::::1;::::0;:11:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48193:108:::0;:::o;29966:125::-;30030:7;30057:21;30070:7;30057:12;:21::i;:::-;:26;;29966:125;-1:-1:-1;;29966:125:0:o;48091:94::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48158:9:::1;:19:::0;48091:94::o;27414:206::-;27478:7;-1:-1:-1;;;;;27502:19:0;;27498:60;;27530:28;;-1:-1:-1;;;27530:28:0;;;;;;;;;;;27498:60;-1:-1:-1;;;;;;27584:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27584:27:0;;27414:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;46539:234::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46625:9:::1;46620:146;46644:17;:24;46640:1;:28;46620:146;;;46690:10;46703:17;46721:1;46703:20;;;;;;;;:::i;:::-;;;;;;;46690:33;;46738:16;46748:2;46752:1;46738:9;:16::i;:::-;-1:-1:-1::0;46670:3:0;::::1;::::0;::::1;:::i;:::-;;;;46620:146;;30327:104:::0;30383:13;30416:7;30409:14;;;;;:::i;45505:907::-;4185:6;;-1:-1:-1;;;;;4185:6:0;45570:10;:21;45566:794;;45608:23;45634:21;45644:10;45634:9;:21::i;:::-;45681:6;;45608:47;;-1:-1:-1;45681:6:0;;45680:7;45672:35;;;;-1:-1:-1;;;45672:35:0;;9466:2:1;45672:35:0;;;9448:21:1;9505:2;9485:18;;;9478:30;-1:-1:-1;;;9524:18:1;;;9517:45;9579:18;;45672:35:0;9264:339:1;45672:35:0;45744:1;45730:11;:15;45722:64;;;;-1:-1:-1;;;45722:64:0;;9810:2:1;45722:64:0;;;9792:21:1;9849:2;9829:18;;;9822:30;9888:34;9868:18;;;9861:62;-1:-1:-1;;;9939:18:1;;;9932:34;9983:19;;45722:64:0;9608:400:1;45722:64:0;45842:27;;;;45827:42;;;45801:143;;;;-1:-1:-1;;;45801:143:0;;10215:2:1;45801:143:0;;;10197:21:1;10254:2;10234:18;;;10227:30;10293:34;10273:18;;;10266:62;-1:-1:-1;;;10344:18:1;;;10337:37;10391:19;;45801:143:0;10013:403:1;45801:143:0;46016:9;;26151:1;26548:12;26338:7;26532:13;46001:11;;26532:28;;-1:-1:-1;;26532:46:0;45985:27;;;;:::i;:::-;:40;;45959:120;;;;-1:-1:-1;;;45959:120:0;;10756:2:1;45959:120:0;;;10738:21:1;10795:2;10775:18;;;10768:30;-1:-1:-1;;;10814:18:1;;;10807:48;10872:18;;45959:120:0;10554:342:1;45959:120:0;46155:22;;;;;;;46121:29;46139:11;46121:15;:29;:::i;:::-;46120:57;;46094:143;;;;-1:-1:-1;;;46094:143:0;;11103:2:1;46094:143:0;;;11085:21:1;11142:2;11122:18;;;11115:30;11181:26;11161:18;;;11154:54;11225:18;;46094:143:0;10901:348:1;46094:143:0;46298:11;46291:4;;:18;;;;:::i;:::-;46278:9;:31;;46252:96;;;;-1:-1:-1;;;46252:96:0;;11629:2:1;46252:96:0;;;11611:21:1;11668:2;11648:18;;;11641:30;-1:-1:-1;;;11687:18:1;;;11680:46;11743:18;;46252:96:0;11427:340:1;46252:96:0;45593:767;45566:794;46370:34;46380:10;46392:11;46370:9;:34::i;31937:287::-;-1:-1:-1;;;;;32036:24:0;;2916:10;32036:24;32032:54;;;32069:17;;-1:-1:-1;;;32069:17:0;;;;;;;;;;;32032:54;2916:10;32099:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32099:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32099:53:0;;;;;;;;;;32168:48;;540:41:1;;;32099:42:0;;2916:10;32168:48;;513:18:1;32168:48:0;;;;;;;31937:287;;:::o;44913:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33023:369::-;33190:28;33200:4;33206:2;33210:7;33190:9;:28::i;:::-;-1:-1:-1;;;;;33233:13:0;;7108:19;:23;;33233:76;;;;;33253:56;33284:4;33290:2;33294:7;33303:5;33253:30;:56::i;:::-;33252:57;33233:76;33229:156;;;33333:40;;-1:-1:-1;;;33333:40:0;;;;;;;;;;;33229:156;33023:369;;;;:::o;48309:75::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48370:6:::1;::::0;;-1:-1:-1;;48360:16:0;::::1;48370:6;::::0;;::::1;48369:7;48360:16;::::0;;48309:75::o;46901:487::-;47019:13;47072:16;47080:7;47072;:16::i;:::-;47050:113;;;;-1:-1:-1;;;47050:113:0;;11974:2:1;47050:113:0;;;11956:21:1;12013:2;11993:18;;;11986:30;12052:34;12032:18;;;12025:62;-1:-1:-1;;;12103:18:1;;;12096:45;12158:19;;47050:113:0;11772:411:1;47050:113:0;47174:28;47205:10;:8;:10::i;:::-;47174:41;;47277:1;47252:14;47246:28;:32;:134;;;;;;;;;;;;;;;;;47322:14;47338:18;:7;:16;:18::i;:::-;47305:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47246:134;47226:154;46901:487;-1:-1:-1;;;46901:487:0:o;46420:111::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46496:27:::1;46506:3;46511:11;46496:9;:27::i;47964:119::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48043:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48043:32:0;;::::1;::::0;;;::::1;::::0;;47964:119::o;45369:113::-;-1:-1:-1;;;;;27798:19:0;;45427:7;27798:19;;;:12;:19;;;;;:32;-1:-1:-1;;;27798:32:0;;-1:-1:-1;;;;;27798:32:0;45454:20;27702:137;47513:201;47598:9;47594:113;47617:13;:20;47613:1;:24;47594:113;;;47662:29;47668:13;47682:1;47668:16;;;;;;;;:::i;:::-;;;;;;;47686:4;47662:5;:29::i;:::-;47639:3;;;;:::i;:::-;;;;47594:113;;47827:129;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47911:27:::1;:37:::0;;-1:-1:-1;;47911:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47827:129::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;12865:2:1;5102:73:0::1;::::0;::::1;12847:21:1::0;12904:2;12884:18;;;12877:30;12943:34;12923:18;;;12916:62;-1:-1:-1;;;12994:18:1;;;12987:36;13040:19;;5102:73:0::1;12663:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;33647:187::-:0;33704:4;33747:7;26151:1;33728:26;;:53;;;;;33768:13;;33758:7;:23;33728:53;:98;;;;-1:-1:-1;;33799:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33799:27:0;;;;33798:28;;33647:187::o;41817:196::-;41932:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41932:29:0;-1:-1:-1;;;;;41932:29:0;;;;;;;;;41977:28;;41932:24;;41977:28;;;;;;;41817:196;;;:::o;36760:2130::-;36875:35;36913:21;36926:7;36913:12;:21::i;:::-;36875:59;;36973:4;-1:-1:-1;;;;;36951:26:0;:13;:18;;;-1:-1:-1;;;;;36951:26:0;;36947:67;;36986:28;;-1:-1:-1;;;36986:28:0;;;;;;;;;;;36947:67;37027:22;2916:10;-1:-1:-1;;;;;37053:20:0;;;;:73;;-1:-1:-1;37090:36:0;37107:4;2916:10;32295:164;:::i;37090:36::-;37053:126;;;-1:-1:-1;2916:10:0;37143:20;37155:7;37143:11;:20::i;:::-;-1:-1:-1;;;;;37143:36:0;;37053:126;37027:153;;37198:17;37193:66;;37224:35;;-1:-1:-1;;;37224:35:0;;;;;;;;;;;37193:66;-1:-1:-1;;;;;37274:16:0;;37270:52;;37299:23;;-1:-1:-1;;;37299:23:0;;;;;;;;;;;37270:52;37443:35;37460:1;37464:7;37473:4;37443:8;:35::i;:::-;-1:-1:-1;;;;;37774:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37774:31:0;;;-1:-1:-1;;;;;37774:31:0;;;-1:-1:-1;;37774:31:0;;;;;;;37820:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37820:29:0;;;;;;;;;;;37900:20;;;:11;:20;;;;;;37935:18;;-1:-1:-1;;;;;;37968:49:0;;;;-1:-1:-1;;;38001:15:0;37968:49;;;;;;;;;;38291:11;;38351:24;;;;;38394:13;;37900:20;;38351:24;;38394:13;38390:384;;38604:13;;38589:11;:28;38585:174;;38642:20;;38711:28;;;;-1:-1:-1;;;;;38685:54:0;-1:-1:-1;;;38685:54:0;-1:-1:-1;;;;;;38685:54:0;;;-1:-1:-1;;;;;38642:20:0;;38685:54;;;;38585:174;37749:1036;;;38821:7;38817:2;-1:-1:-1;;;;;38802:27:0;38811:4;-1:-1:-1;;;;;38802:27:0;-1:-1:-1;;;;;;;;;;;38802:27:0;;;;;;;;;38840:42;36864:2026;;36760:2130;;;:::o;39291:2408::-;39371:35;39409:21;39422:7;39409:12;:21::i;:::-;39458:18;;39371:59;;-1:-1:-1;39489:290:0;;;;39523:22;2916:10;-1:-1:-1;;;;;39549:20:0;;;;:77;;-1:-1:-1;39590:36:0;39607:4;2916:10;32295:164;:::i;39590:36::-;39549:134;;;-1:-1:-1;2916:10:0;39647:20;39659:7;39647:11;:20::i;:::-;-1:-1:-1;;;;;39647:36:0;;39549:134;39523:161;;39706:17;39701:66;;39732:35;;-1:-1:-1;;;39732:35:0;;;;;;;;;;;39701:66;39508:271;39489:290;39907:35;39924:1;39928:7;39937:4;39907:8;:35::i;:::-;-1:-1:-1;;;;;40272:18:0;;;40238:31;40272:18;;;:12;:18;;;;;;;;40305:24;;-1:-1:-1;;;;;;;;;;40305:24:0;;;;;;;;;-1:-1:-1;;40305:24:0;;;;40344:29;;;;;40328:1;40344:29;;;;;;;;-1:-1:-1;;40344:29:0;;;;;;;;;;40506:20;;;:11;:20;;;;;;40541;;-1:-1:-1;;;;40609:15:0;40576:49;;;-1:-1:-1;;;40576:49:0;-1:-1:-1;;;;;;40576:49:0;;;;;;;;;;40640:22;-1:-1:-1;;;40640:22:0;;;40932:11;;;40992:24;;;;;41035:13;;40272:18;;40992:24;;41035:13;41031:384;;41245:13;;41230:11;:28;41226:174;;41283:20;;41352:28;;;;-1:-1:-1;;;;;41326:54:0;-1:-1:-1;;;41326:54:0;-1:-1:-1;;;;;;41326:54:0;;;-1:-1:-1;;;;;41283:20:0;;41326:54;;;;41226:174;-1:-1:-1;;41443:35:0;;41470:7;;-1:-1:-1;41466:1:0;;-1:-1:-1;;;;;;41443:35:0;;;-1:-1:-1;;;;;;;;;;;41443:35:0;41466:1;;41443:35;-1:-1:-1;;41666:12:0;:14;;;;;;-1:-1:-1;;39291:2408:0:o;28795:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28906:7:0;;26151:1;28955:23;;:47;;;;;28989:13;;28982:4;:20;28955:47;28951:886;;;29023:31;29057:17;;;:11;:17;;;;;;;;;29023:51;;;;;;;;;-1:-1:-1;;;;;29023:51:0;;;;-1:-1:-1;;;29023:51:0;;-1:-1:-1;;;;;29023:51:0;;;;;;;;-1:-1:-1;;;29023:51:0;;;;;;;;;;;;;;29093:729;;29143:14;;-1:-1:-1;;;;;29143:28:0;;29139:101;;29207:9;28795:1109;-1:-1:-1;;;28795:1109:0:o;29139:101::-;-1:-1:-1;;;29582:6:0;29627:17;;;;:11;:17;;;;;;;;;29615:29;;;;;;;;;-1:-1:-1;;;;;29615:29:0;;;;;-1:-1:-1;;;29615:29:0;;-1:-1:-1;;;;;29615:29:0;;;;;;;;-1:-1:-1;;;29615:29:0;;;;;;;;;;;;;29675:28;29671:109;;29743:9;28795:1109;-1:-1:-1;;;28795:1109:0:o;29671:109::-;29542:261;;;29004:833;28951:886;29865:31;;-1:-1:-1;;;29865:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;48392:120::-;48471:33;48481:9;48492:11;48471:9;:33::i;42505:667::-;42689:72;;-1:-1:-1;;;42689:72:0;;42668:4;;-1:-1:-1;;;;;42689:36:0;;;;;:72;;2916:10;;42740:4;;42746:7;;42755:5;;42689:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42689:72:0;;;;;;;;-1:-1:-1;;42689:72:0;;;;;;;;;;;;:::i;:::-;;;42685:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42923:13:0;;42919:235;;42969:40;;-1:-1:-1;;;42969:40:0;;;;;;;;;;;42919:235;43112:6;43106:13;43097:6;43093:2;43089:15;43082:38;42685:480;-1:-1:-1;;;;;;42808:55:0;-1:-1:-1;;;42808:55:0;;-1:-1:-1;42685:480:0;42505:667;;;;;;:::o;46781:112::-;46841:13;46874:11;46867:18;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;-1:-1:-1;;;;;900:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;33842:104;33911:27;33921:2;33925:8;33911:27;;;;;;;;;;;;34432:32;34438:2;34442:8;34452:5;34459:4;34870:20;34893:13;-1:-1:-1;;;;;34921:16:0;;34917:48;;34946:19;;-1:-1:-1;;;34946:19:0;;;;;;;;;;;34917:48;34980:13;34976:44;;35002:18;;-1:-1:-1;;;35002:18:0;;;;;;;;;;;34976:44;-1:-1:-1;;;;;35371:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35430:49:0;;-1:-1:-1;;;;;35371:44:0;;;;;;;35430:49;;;-1:-1:-1;;;;;35371:44:0;;;;;;35430:49;;;;;;;;;;;;;;;;35496:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35546:66:0;;;;-1:-1:-1;;;35596:15:0;35546:66;;;;;;;;;;35496:25;35693:23;;;35737:4;:23;;;;-1:-1:-1;;;;;;35745:13:0;;7108:19;:23;;35745:15;35733:641;;;35781:314;35812:38;;35837:12;;-1:-1:-1;;;;;35812:38:0;;;35829:1;;-1:-1:-1;;;;;;;;;;;35812:38:0;35829:1;;35812:38;35878:69;35917:1;35921:2;35925:14;;;;;;35941:5;35878:30;:69::i;:::-;35873:174;;35983:40;;-1:-1:-1;;;35983:40:0;;;;;;;;;;;35873:174;36090:3;36074:12;:19;;35781:314;;36176:12;36159:13;;:29;36155:43;;36190:8;;;36155:43;35733:641;;;36239:120;36270:40;;36295:14;;;;;-1:-1:-1;;;;;36270:40:0;;;36287:1;;-1:-1:-1;;;;;;;;;;;36270:40:0;36287:1;;36270:40;36354:3;36338:12;:19;;36239:120;;35733:641;-1:-1:-1;36388:13:0;:28;36438:60;33023:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:275;2891:2;2885:9;2956:2;2937:13;;-1:-1:-1;;2933:27:1;2921:40;;-1:-1:-1;;;;;2976:34:1;;3012:22;;;2973:62;2970:88;;;3038:18;;:::i;:::-;3074:2;3067:22;2820:275;;-1:-1:-1;2820:275:1:o;3100:407::-;3165:5;-1:-1:-1;;;;;3191:6:1;3188:30;3185:56;;;3221:18;;:::i;:::-;3259:57;3304:2;3283:15;;-1:-1:-1;;3279:29:1;3310:4;3275:40;3259:57;:::i;:::-;3250:66;;3339:6;3332:5;3325:21;3379:3;3370:6;3365:3;3361:16;3358:25;3355:45;;;3396:1;3393;3386:12;3355:45;3445:6;3440:3;3433:4;3426:5;3422:16;3409:43;3499:1;3492:4;3483:6;3476:5;3472:18;3468:29;3461:40;3100:407;;;;;:::o;3512:451::-;3581:6;3634:2;3622:9;3613:7;3609:23;3605:32;3602:52;;;3650:1;3647;3640:12;3602:52;3690:9;3677:23;-1:-1:-1;;;;;3715:6:1;3712:30;3709:50;;;3755:1;3752;3745:12;3709:50;3778:22;;3831:4;3823:13;;3819:27;-1:-1:-1;3809:55:1;;3860:1;3857;3850:12;3809:55;3883:74;3949:7;3944:2;3931:16;3926:2;3922;3918:11;3883:74;:::i;3968:186::-;4027:6;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4119:29;4138:9;4119:29;:::i;4159:183::-;4219:4;-1:-1:-1;;;;;4244:6:1;4241:30;4238:56;;;4274:18;;:::i;:::-;-1:-1:-1;4319:1:1;4315:14;4331:4;4311:25;;4159:183::o;4347:897::-;4431:6;4462:2;4505;4493:9;4484:7;4480:23;4476:32;4473:52;;;4521:1;4518;4511:12;4473:52;4561:9;4548:23;-1:-1:-1;;;;;4586:6:1;4583:30;4580:50;;;4626:1;4623;4616:12;4580:50;4649:22;;4702:4;4694:13;;4690:27;-1:-1:-1;4680:55:1;;4731:1;4728;4721:12;4680:55;4767:2;4754:16;4790:60;4806:43;4846:2;4806:43;:::i;:::-;4790:60;:::i;:::-;4884:15;;;4966:1;4962:10;;;;4954:19;;4950:28;;;4915:12;;;;4990:19;;;4987:39;;;5022:1;5019;5012:12;4987:39;5046:11;;;;5066:148;5082:6;5077:3;5074:15;5066:148;;;5148:23;5167:3;5148:23;:::i;:::-;5136:36;;5099:12;;;;5192;;;;5066:148;;;5233:5;4347:897;-1:-1:-1;;;;;;;4347:897:1:o;5249:347::-;5314:6;5322;5375:2;5363:9;5354:7;5350:23;5346:32;5343:52;;;5391:1;5388;5381:12;5343:52;5414:29;5433:9;5414:29;:::i;:::-;5404:39;;5493:2;5482:9;5478:18;5465:32;5540:5;5533:13;5526:21;5519:5;5516:32;5506:60;;5562:1;5559;5552:12;5506:60;5585:5;5575:15;;;5249:347;;;;;:::o;5601:667::-;5696:6;5704;5712;5720;5773:3;5761:9;5752:7;5748:23;5744:33;5741:53;;;5790:1;5787;5780:12;5741:53;5813:29;5832:9;5813:29;:::i;:::-;5803:39;;5861:38;5895:2;5884:9;5880:18;5861:38;:::i;:::-;5851:48;;5946:2;5935:9;5931:18;5918:32;5908:42;;6001:2;5990:9;5986:18;5973:32;-1:-1:-1;;;;;6020:6:1;6017:30;6014:50;;;6060:1;6057;6050:12;6014:50;6083:22;;6136:4;6128:13;;6124:27;-1:-1:-1;6114:55:1;;6165:1;6162;6155:12;6114:55;6188:74;6254:7;6249:2;6236:16;6231:2;6227;6223:11;6188:74;:::i;:::-;6178:84;;;5601:667;;;;;;;:::o;6466:272::-;6524:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:52;;;6593:1;6590;6583:12;6545:52;6632:9;6619:23;6682:6;6675:5;6671:18;6664:5;6661:29;6651:57;;6704:1;6701;6694:12;6743:891;6827:6;6858:2;6901;6889:9;6880:7;6876:23;6872:32;6869:52;;;6917:1;6914;6907:12;6869:52;6957:9;6944:23;-1:-1:-1;;;;;6982:6:1;6979:30;6976:50;;;7022:1;7019;7012:12;6976:50;7045:22;;7098:4;7090:13;;7086:27;-1:-1:-1;7076:55:1;;7127:1;7124;7117:12;7076:55;7163:2;7150:16;7186:60;7202:43;7242:2;7202:43;:::i;7186:60::-;7280:15;;;7362:1;7358:10;;;;7350:19;;7346:28;;;7311:12;;;;7386:19;;;7383:39;;;7418:1;7415;7408:12;7383:39;7442:11;;;;7462:142;7478:6;7473:3;7470:15;7462:142;;;7544:17;;7532:30;;7495:12;;;;7582;;;;7462:142;;7639:260;7707:6;7715;7768:2;7756:9;7747:7;7743:23;7739:32;7736:52;;;7784:1;7781;7774:12;7736:52;7807:29;7826:9;7807:29;:::i;:::-;7797:39;;7855:38;7889:2;7878:9;7874:18;7855:38;:::i;:::-;7845:48;;7639:260;;;;;:::o;7904:380::-;7983:1;7979:12;;;;8026;;;8047:61;;8101:4;8093:6;8089:17;8079:27;;8047:61;8154:2;8146:6;8143:14;8123:18;8120:38;8117:161;;;8200:10;8195:3;8191:20;8188:1;8181:31;8235:4;8232:1;8225:15;8263:4;8260:1;8253:15;8117:161;;7904:380;;;:::o;8289:356::-;8491:2;8473:21;;;8510:18;;;8503:30;8569:34;8564:2;8549:18;;8542:62;8636:2;8621:18;;8289:356::o;8860:127::-;8921:10;8916:3;8912:20;8909:1;8902:31;8952:4;8949:1;8942:15;8976:4;8973:1;8966:15;8992:127;9053:10;9048:3;9044:20;9041:1;9034:31;9084:4;9081:1;9074:15;9108:4;9105:1;9098:15;9124:135;9163:3;-1:-1:-1;;9184:17:1;;9181:43;;;9204:18;;:::i;:::-;-1:-1:-1;9251:1:1;9240:13;;9124:135::o;10421:128::-;10461:3;10492:1;10488:6;10485:1;10482:13;10479:39;;;10498:18;;:::i;:::-;-1:-1:-1;10534:9:1;;10421:128::o;11254:168::-;11294:7;11360:1;11356;11352:6;11348:14;11345:1;11342:21;11337:1;11330:9;11323:17;11319:45;11316:71;;;11367:18;;:::i;:::-;-1:-1:-1;11407:9:1;;11254:168::o;12188:470::-;12367:3;12405:6;12399:13;12421:53;12467:6;12462:3;12455:4;12447:6;12443:17;12421:53;:::i;:::-;12537:13;;12496:16;;;;12559:57;12537:13;12496:16;12593:4;12581:17;;12559:57;:::i;:::-;12632:20;;12188:470;-1:-1:-1;;;;12188:470:1:o;13070:489::-;-1:-1:-1;;;;;13339:15:1;;;13321:34;;13391:15;;13386:2;13371:18;;13364:43;13438:2;13423:18;;13416:34;;;13486:3;13481:2;13466:18;;13459:31;;;13264:4;;13507:46;;13533:19;;13525:6;13507:46;:::i;:::-;13499:54;13070:489;-1:-1:-1;;;;;;13070:489:1:o;13564:249::-;13633:6;13686:2;13674:9;13665:7;13661:23;13657:32;13654:52;;;13702:1;13699;13692:12;13654:52;13734:9;13728:16;13753:30;13777:5;13753:30;:::i;13818:127::-;13879:10;13874:3;13870:20;13867:1;13860:31;13910:4;13907:1;13900:15;13934:4;13931:1;13924:15;13950:120;13990:1;14016;14006:35;;14021:18;;:::i;:::-;-1:-1:-1;14055:9:1;;13950:120::o;14075:125::-;14115:4;14143:1;14140;14137:8;14134:34;;;14148:18;;:::i;:::-;-1:-1:-1;14185:9:1;;14075:125::o;14205:112::-;14237:1;14263;14253:35;;14268:18;;:::i;:::-;-1:-1:-1;14302:9:1;;14205:112::o
Swarm Source
ipfs://3160c79f8ab29092c3bda4f462426b352778d2faadcf64655e1892d4c9fff1ad
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.