ERC-721
Overview
Max Total Supply
1,000 ITBLUR
Holders
404
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
IntoTheBlur
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-26 */ // 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/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: contracts/new.sol 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 {} } 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); } } pragma solidity ^0.8.7; contract IntoTheBlur is ERC721A, Ownable { using Strings for uint256; string private uriPrefix; string private uriSuffix = ".json"; string public hiddenURL = "ipfs://QmPVWA5q5PGW2thH5LviZ3tmWRNF9XqEDHAHnhydsTN83h"; uint256 public cost = 0.002 ether; uint16 public maxSupply = 1000; uint8 public maxMintAmountPerTx = 4; uint8 public maxFreeMintAmountPerWallet = 1; bool public paused = true; bool public reveal = false; mapping (address => uint8) public NFTPerPublicAddress; constructor() ERC721A("Into The Blur", "ITBLUR") { } function Mint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); uint8 nft = NFTPerPublicAddress[msg.sender]; require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction."); require(!paused, "The contract is paused!"); if(nft >= maxFreeMintAmountPerWallet) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } else { uint8 costAmount = _mintAmount + nft; if(costAmount > maxFreeMintAmountPerWallet) { costAmount = costAmount - maxFreeMintAmountPerWallet; require(msg.value >= cost * costAmount, "Insufficient funds!"); } } _safeMint(msg.sender , _mintAmount); NFTPerPublicAddress[msg.sender] = _mintAmount + nft; delete totalSupply; delete _mintAmount; } function reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{ maxFreeMintAmountPerWallet = _limit; delete _limit; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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":"uint8","name":"_mintAmount","type":"uint8"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a91906200015d565b50604051806060016040528060358152602001620025666035913980516200005991600b916020909101906200015d565b5066071afd498d0000600c55600d805465ffffffffffff19166401010403e81790553480156200008857600080fd5b50604080518082018252600d81526c24b73a37902a34329021363ab960991b60208083019182528351808501909452600684526524aa21262aa960d11b908401528151919291620000dc916002916200015d565b508051620000f29060039060208401906200015d565b505060016000555062000105336200010b565b6200023f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016b9062000203565b90600052602060002090601f0160209004810192826200018f5760008555620001da565b82601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b5b80821115620001e85760008155600101620001ed565b600181811c908216806200021857607f821691505b6020821081036200023957634e487b7160e01b600052602260045260246000fd5b50919050565b612317806200024f6000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063e94053c71161006f578063e94053c714610631578063e985e9c514610661578063eef440af146106aa578063f2fde38b146106bf578063f8bf5172146106df57600080fd5b8063b88d4fde14610583578063bad0ba6f146105a3578063c87b56dd146105c3578063d2444d67146105e3578063d5abeb011461060357600080fd5b806395d89b41116100f257806395d89b41146104f8578063a22cb4651461050d578063a2522d2d1461052d578063a475b5dd14610540578063aa0622901461056357600080fd5b8063715018a6146104735780637ec4a659146104885780638da5cb5b146104a857806394354fd0146104c657600080fd5b806337a66d85116101a657806344a0d68a1161017557806344a0d68a146103d15780634d9c1848146103f15780635c975abb146104115780636352211e1461043357806370a082311461045357600080fd5b806337a66d85146103725780633bd64968146103875780633ccfd60b1461039c57806342842e0e146103b157600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461035257600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611bf0565b610700565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611c24565b610752565b005b34801561028257600080fd5b5061028b61079d565b60405161024b9190611c97565b3480156102a457600080fd5b506102b86102b3366004611caa565b61082f565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611cda565b610873565b3480156102fc57600080fd5b5061027461030b366004611d90565b610900565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b50610326600154600054036000190190565b34801561035e57600080fd5b5061027461036d366004611dd9565b610941565b34801561037e57600080fd5b5061027461094c565b34801561039357600080fd5b50610274610999565b3480156103a857600080fd5b506102746109e8565b3480156103bd57600080fd5b506102746103cc366004611dd9565b610a41565b3480156103dd57600080fd5b506102746103ec366004611caa565b610a5c565b3480156103fd57600080fd5b5061027461040c366004611e26565b610a8b565b34801561041d57600080fd5b50600d5461023f90640100000000900460ff1681565b34801561043f57600080fd5b506102b861044e366004611caa565b610ad5565b34801561045f57600080fd5b5061032661046e366004611e41565b610ae7565b34801561047f57600080fd5b50610274610b36565b34801561049457600080fd5b506102746104a3366004611d90565b610b6c565b3480156104b457600080fd5b506008546001600160a01b03166102b8565b3480156104d257600080fd5b50600d546104e69062010000900460ff1681565b60405160ff909116815260200161024b565b34801561050457600080fd5b5061028b610ba9565b34801561051957600080fd5b50610274610528366004611e5c565b610bb8565b61027461053b366004611e26565b610c4d565b34801561054c57600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561056f57600080fd5b5061027461057e366004611e26565b610eb8565b34801561058f57600080fd5b5061027461059e366004611e98565b610f00565b3480156105af57600080fd5b506102746105be366004611f14565b610f51565b3480156105cf57600080fd5b5061028b6105de366004611caa565b610fd2565b3480156105ef57600080fd5b506102746105fe366004611f47565b61114a565b34801561060f57600080fd5b50600d5461061e9061ffff1681565b60405161ffff909116815260200161024b565b34801561063d57600080fd5b506104e661064c366004611e41565b600e6020526000908152604090205460ff1681565b34801561066d57600080fd5b5061023f61067c366004611fcd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b657600080fd5b5061028b611228565b3480156106cb57600080fd5b506102746106da366004611e41565b6112b6565b3480156106eb57600080fd5b50600d546104e6906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061073157506001600160e01b03198216635b5e139f60e01b145b8061074c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107855760405162461bcd60e51b815260040161077c90611fe9565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107ac9061201e565b80601f01602080910402602001604051908101604052809291908181526020018280546107d89061201e565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b600061083a82611351565b610857576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087e82610ad5565b9050806001600160a01b0316836001600160a01b0316036108b25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108d257506108d0813361067c565b155b156108f0576040516367d9dca160e11b815260040160405180910390fd5b6108fb83838361138a565b505050565b6008546001600160a01b0316331461092a5760405162461bcd60e51b815260040161077c90611fe9565b805161093d90600b906020840190611b41565b5050565b6108fb8383836113e6565b6008546001600160a01b031633146109765760405162461bcd60e51b815260040161077c90611fe9565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b031633146109c35760405162461bcd60e51b815260040161077c90611fe9565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a125760405162461bcd60e51b815260040161077c90611fe9565b6040514790339082156108fc029083906000818181858888f1935050505015801561093d573d6000803e3d6000fd5b6108fb83838360405180602001604052806000815250610f00565b6008546001600160a01b03163314610a865760405162461bcd60e51b815260040161077c90611fe9565b600c55565b6008546001600160a01b03163314610ab55760405162461bcd60e51b815260040161077c90611fe9565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610ae0826115d6565b5192915050565b60006001600160a01b038216610b10576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b605760405162461bcd60e51b815260040161077c90611fe9565b610b6a60006116ff565b565b6008546001600160a01b03163314610b965760405162461bcd60e51b815260040161077c90611fe9565b805161093d906009906020840190611b41565b6060600380546107ac9061201e565b336001600160a01b03831603610be15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610c60600154600054036000190190565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610c8d9085168461206e565b61ffff161115610caf5760405162461bcd60e51b815260040161077c90612094565b600d5462010000900460ff16610cc582856120c1565b60ff161115610d165760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604482015260640161077c565b600d54640100000000900460ff1615610d715760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161077c565b600d5460ff6301000000909104811690821610610de3578260ff16600c54610d9991906120e6565b341015610dde5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161077c565b610e7b565b6000610def82856120c1565b600d5490915060ff630100000090910481169082161115610e7957600d54610e21906301000000900460ff1682612105565b90508060ff16600c54610e3491906120e6565b341015610e795760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161077c565b505b610e88338460ff16611751565b610e9281846120c1565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b6008546001600160a01b03163314610ee25760405162461bcd60e51b815260040161077c90611fe9565b600d805460ff909216620100000262ff000019909216919091179055565b610f0b8484846113e6565b6001600160a01b0383163b15158015610f2d5750610f2b8484848461176b565b155b15610f4b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f7b5760405162461bcd60e51b815260040161077c90611fe9565b6000610f8e600154600054036000190190565b600d5490915061ffff16610fa2848361206e565b61ffff161115610fc45760405162461bcd60e51b815260040161077c90612094565b6108fb828461ffff16611751565b6060610fdd82611351565b6110415760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077c565b600d5465010000000000900460ff1615156000036110eb57600b80546110669061201e565b80601f01602080910402602001604051908101604052809291908181526020018280546110929061201e565b80156110df5780601f106110b4576101008083540402835291602001916110df565b820191906000526020600020905b8154815290600101906020018083116110c257829003601f168201915b50505050509050919050565b60006110f5611857565b905060008151116111155760405180602001604052806000815250611143565b8061111f84611866565b600a60405160200161113393929190612128565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111745760405162461bcd60e51b815260040161077c90611fe9565b6000611187600154600054036000190190565b905060006111988360ff87166120e6565b600d5490915061ffff908116906111b290839085166121eb565b11156111d05760405162461bcd60e51b815260040161077c90612094565b60005b838110156112205761120e8585838181106111f0576111f0612203565b90506020020160208101906112059190611e41565b8760ff16611751565b8061121881612219565b9150506111d3565b505050505050565b600b80546112359061201e565b80601f01602080910402602001604051908101604052809291908181526020018280546112619061201e565b80156112ae5780601f10611283576101008083540402835291602001916112ae565b820191906000526020600020905b81548152906001019060200180831161129157829003601f168201915b505050505081565b6008546001600160a01b031633146112e05760405162461bcd60e51b815260040161077c90611fe9565b6001600160a01b0381166113455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b61134e816116ff565b50565b600081600111158015611365575060005482105b801561074c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113f1826115d6565b9050836001600160a01b031681600001516001600160a01b0316146114285760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114465750611446853361067c565b806114615750336114568461082f565b6001600160a01b0316145b90508061148157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114a857604051633a954ecd60e21b815260040160405180910390fd5b6114b46000848761138a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661158a57600054821461158a578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611606575060005481105b156116e657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116e45780516001600160a01b03161561167a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116df579392505050565b61167a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61093d828260405180602001604052806000815250611967565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117a0903390899088908890600401612232565b6020604051808303816000875af19250505080156117db575060408051601f3d908101601f191682019092526117d89181019061226f565b60015b611839573d808015611809576040519150601f19603f3d011682016040523d82523d6000602084013e61180e565b606091505b508051600003611831576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107ac9061201e565b60608160000361188d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118b757806118a181612219565b91506118b09050600a836122a2565b9150611891565b60008167ffffffffffffffff8111156118d2576118d2611d04565b6040519080825280601f01601f1916602001820160405280156118fc576020820181803683370190505b5090505b841561184f576119116001836122b6565b915061191e600a866122cd565b6119299060306121eb565b60f81b81838151811061193e5761193e612203565b60200101906001600160f81b031916908160001a905350611960600a866122a2565b9450611900565b6108fb83838360016000546001600160a01b03851661199857604051622e076360e81b815260040160405180910390fd5b836000036119b95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a6b57506001600160a01b0387163b15155b15611af3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611abc600088848060010195508861176b565b611ad9576040516368d2bf6b60e11b815260040160405180910390fd5b808203611a71578260005414611aee57600080fd5b611b38565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611af4575b506000556115cf565b828054611b4d9061201e565b90600052602060002090601f016020900481019282611b6f5760008555611bb5565b82601f10611b8857805160ff1916838001178555611bb5565b82800160010185558215611bb5579182015b82811115611bb5578251825591602001919060010190611b9a565b50611bc1929150611bc5565b5090565b5b80821115611bc15760008155600101611bc6565b6001600160e01b03198116811461134e57600080fd5b600060208284031215611c0257600080fd5b813561114381611bda565b803561ffff81168114611c1f57600080fd5b919050565b600060208284031215611c3657600080fd5b61114382611c0d565b60005b83811015611c5a578181015183820152602001611c42565b83811115610f4b5750506000910152565b60008151808452611c83816020860160208601611c3f565b601f01601f19169290920160200192915050565b6020815260006111436020830184611c6b565b600060208284031215611cbc57600080fd5b5035919050565b80356001600160a01b0381168114611c1f57600080fd5b60008060408385031215611ced57600080fd5b611cf683611cc3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d3557611d35611d04565b604051601f8501601f19908116603f01168101908282118183101715611d5d57611d5d611d04565b81604052809350858152868686011115611d7657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611da257600080fd5b813567ffffffffffffffff811115611db957600080fd5b8201601f81018413611dca57600080fd5b61184f84823560208401611d1a565b600080600060608486031215611dee57600080fd5b611df784611cc3565b9250611e0560208501611cc3565b9150604084013590509250925092565b803560ff81168114611c1f57600080fd5b600060208284031215611e3857600080fd5b61114382611e15565b600060208284031215611e5357600080fd5b61114382611cc3565b60008060408385031215611e6f57600080fd5b611e7883611cc3565b915060208301358015158114611e8d57600080fd5b809150509250929050565b60008060008060808587031215611eae57600080fd5b611eb785611cc3565b9350611ec560208601611cc3565b925060408501359150606085013567ffffffffffffffff811115611ee857600080fd5b8501601f81018713611ef957600080fd5b611f0887823560208401611d1a565b91505092959194509250565b60008060408385031215611f2757600080fd5b611f3083611c0d565b9150611f3e60208401611cc3565b90509250929050565b600080600060408486031215611f5c57600080fd5b611f6584611e15565b9250602084013567ffffffffffffffff80821115611f8257600080fd5b818601915086601f830112611f9657600080fd5b813581811115611fa557600080fd5b8760208260051b8501011115611fba57600080fd5b6020830194508093505050509250925092565b60008060408385031215611fe057600080fd5b611f3083611cc3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061203257607f821691505b60208210810361205257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681851680830382111561208b5761208b612058565b01949350505050565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600060ff821660ff84168060ff038211156120de576120de612058565b019392505050565b600081600019048311821515161561210057612100612058565b500290565b600060ff821660ff84168082101561211f5761211f612058565b90039392505050565b60008451602061213b8285838a01611c3f565b85519184019161214e8184848a01611c3f565b8554920191600090600181811c908083168061216b57607f831692505b858310810361218857634e487b7160e01b85526022600452602485fd5b80801561219c57600181146121ad576121da565b60ff198516885283880195506121da565b60008b81526020902060005b858110156121d25781548a8201529084019088016121b9565b505083880195505b50939b9a5050505050505050505050565b600082198211156121fe576121fe612058565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161222b5761222b612058565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226590830184611c6b565b9695505050505050565b60006020828403121561228157600080fd5b815161114381611bda565b634e487b7160e01b600052601260045260246000fd5b6000826122b1576122b161228c565b500490565b6000828210156122c8576122c8612058565b500390565b6000826122dc576122dc61228c565b50069056fea2646970667358221220a4a49be51a7225037cf120b2702da72b3d5062792bd48a19cb3efb3c5cda03c964736f6c634300080d0033697066733a2f2f516d5056574135713550475732746848354c76695a33746d57524e4639587145444841486e68796473544e383368
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063e94053c71161006f578063e94053c714610631578063e985e9c514610661578063eef440af146106aa578063f2fde38b146106bf578063f8bf5172146106df57600080fd5b8063b88d4fde14610583578063bad0ba6f146105a3578063c87b56dd146105c3578063d2444d67146105e3578063d5abeb011461060357600080fd5b806395d89b41116100f257806395d89b41146104f8578063a22cb4651461050d578063a2522d2d1461052d578063a475b5dd14610540578063aa0622901461056357600080fd5b8063715018a6146104735780637ec4a659146104885780638da5cb5b146104a857806394354fd0146104c657600080fd5b806337a66d85116101a657806344a0d68a1161017557806344a0d68a146103d15780634d9c1848146103f15780635c975abb146104115780636352211e1461043357806370a082311461045357600080fd5b806337a66d85146103725780633bd64968146103875780633ccfd60b1461039c57806342842e0e146103b157600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461035257600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611bf0565b610700565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611c24565b610752565b005b34801561028257600080fd5b5061028b61079d565b60405161024b9190611c97565b3480156102a457600080fd5b506102b86102b3366004611caa565b61082f565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611cda565b610873565b3480156102fc57600080fd5b5061027461030b366004611d90565b610900565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b50610326600154600054036000190190565b34801561035e57600080fd5b5061027461036d366004611dd9565b610941565b34801561037e57600080fd5b5061027461094c565b34801561039357600080fd5b50610274610999565b3480156103a857600080fd5b506102746109e8565b3480156103bd57600080fd5b506102746103cc366004611dd9565b610a41565b3480156103dd57600080fd5b506102746103ec366004611caa565b610a5c565b3480156103fd57600080fd5b5061027461040c366004611e26565b610a8b565b34801561041d57600080fd5b50600d5461023f90640100000000900460ff1681565b34801561043f57600080fd5b506102b861044e366004611caa565b610ad5565b34801561045f57600080fd5b5061032661046e366004611e41565b610ae7565b34801561047f57600080fd5b50610274610b36565b34801561049457600080fd5b506102746104a3366004611d90565b610b6c565b3480156104b457600080fd5b506008546001600160a01b03166102b8565b3480156104d257600080fd5b50600d546104e69062010000900460ff1681565b60405160ff909116815260200161024b565b34801561050457600080fd5b5061028b610ba9565b34801561051957600080fd5b50610274610528366004611e5c565b610bb8565b61027461053b366004611e26565b610c4d565b34801561054c57600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561056f57600080fd5b5061027461057e366004611e26565b610eb8565b34801561058f57600080fd5b5061027461059e366004611e98565b610f00565b3480156105af57600080fd5b506102746105be366004611f14565b610f51565b3480156105cf57600080fd5b5061028b6105de366004611caa565b610fd2565b3480156105ef57600080fd5b506102746105fe366004611f47565b61114a565b34801561060f57600080fd5b50600d5461061e9061ffff1681565b60405161ffff909116815260200161024b565b34801561063d57600080fd5b506104e661064c366004611e41565b600e6020526000908152604090205460ff1681565b34801561066d57600080fd5b5061023f61067c366004611fcd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b657600080fd5b5061028b611228565b3480156106cb57600080fd5b506102746106da366004611e41565b6112b6565b3480156106eb57600080fd5b50600d546104e6906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061073157506001600160e01b03198216635b5e139f60e01b145b8061074c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107855760405162461bcd60e51b815260040161077c90611fe9565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107ac9061201e565b80601f01602080910402602001604051908101604052809291908181526020018280546107d89061201e565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b600061083a82611351565b610857576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087e82610ad5565b9050806001600160a01b0316836001600160a01b0316036108b25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108d257506108d0813361067c565b155b156108f0576040516367d9dca160e11b815260040160405180910390fd5b6108fb83838361138a565b505050565b6008546001600160a01b0316331461092a5760405162461bcd60e51b815260040161077c90611fe9565b805161093d90600b906020840190611b41565b5050565b6108fb8383836113e6565b6008546001600160a01b031633146109765760405162461bcd60e51b815260040161077c90611fe9565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b031633146109c35760405162461bcd60e51b815260040161077c90611fe9565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a125760405162461bcd60e51b815260040161077c90611fe9565b6040514790339082156108fc029083906000818181858888f1935050505015801561093d573d6000803e3d6000fd5b6108fb83838360405180602001604052806000815250610f00565b6008546001600160a01b03163314610a865760405162461bcd60e51b815260040161077c90611fe9565b600c55565b6008546001600160a01b03163314610ab55760405162461bcd60e51b815260040161077c90611fe9565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610ae0826115d6565b5192915050565b60006001600160a01b038216610b10576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b605760405162461bcd60e51b815260040161077c90611fe9565b610b6a60006116ff565b565b6008546001600160a01b03163314610b965760405162461bcd60e51b815260040161077c90611fe9565b805161093d906009906020840190611b41565b6060600380546107ac9061201e565b336001600160a01b03831603610be15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610c60600154600054036000190190565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610c8d9085168461206e565b61ffff161115610caf5760405162461bcd60e51b815260040161077c90612094565b600d5462010000900460ff16610cc582856120c1565b60ff161115610d165760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604482015260640161077c565b600d54640100000000900460ff1615610d715760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161077c565b600d5460ff6301000000909104811690821610610de3578260ff16600c54610d9991906120e6565b341015610dde5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161077c565b610e7b565b6000610def82856120c1565b600d5490915060ff630100000090910481169082161115610e7957600d54610e21906301000000900460ff1682612105565b90508060ff16600c54610e3491906120e6565b341015610e795760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161077c565b505b610e88338460ff16611751565b610e9281846120c1565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b6008546001600160a01b03163314610ee25760405162461bcd60e51b815260040161077c90611fe9565b600d805460ff909216620100000262ff000019909216919091179055565b610f0b8484846113e6565b6001600160a01b0383163b15158015610f2d5750610f2b8484848461176b565b155b15610f4b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f7b5760405162461bcd60e51b815260040161077c90611fe9565b6000610f8e600154600054036000190190565b600d5490915061ffff16610fa2848361206e565b61ffff161115610fc45760405162461bcd60e51b815260040161077c90612094565b6108fb828461ffff16611751565b6060610fdd82611351565b6110415760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077c565b600d5465010000000000900460ff1615156000036110eb57600b80546110669061201e565b80601f01602080910402602001604051908101604052809291908181526020018280546110929061201e565b80156110df5780601f106110b4576101008083540402835291602001916110df565b820191906000526020600020905b8154815290600101906020018083116110c257829003601f168201915b50505050509050919050565b60006110f5611857565b905060008151116111155760405180602001604052806000815250611143565b8061111f84611866565b600a60405160200161113393929190612128565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111745760405162461bcd60e51b815260040161077c90611fe9565b6000611187600154600054036000190190565b905060006111988360ff87166120e6565b600d5490915061ffff908116906111b290839085166121eb565b11156111d05760405162461bcd60e51b815260040161077c90612094565b60005b838110156112205761120e8585838181106111f0576111f0612203565b90506020020160208101906112059190611e41565b8760ff16611751565b8061121881612219565b9150506111d3565b505050505050565b600b80546112359061201e565b80601f01602080910402602001604051908101604052809291908181526020018280546112619061201e565b80156112ae5780601f10611283576101008083540402835291602001916112ae565b820191906000526020600020905b81548152906001019060200180831161129157829003601f168201915b505050505081565b6008546001600160a01b031633146112e05760405162461bcd60e51b815260040161077c90611fe9565b6001600160a01b0381166113455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b61134e816116ff565b50565b600081600111158015611365575060005482105b801561074c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113f1826115d6565b9050836001600160a01b031681600001516001600160a01b0316146114285760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114465750611446853361067c565b806114615750336114568461082f565b6001600160a01b0316145b90508061148157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114a857604051633a954ecd60e21b815260040160405180910390fd5b6114b46000848761138a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661158a57600054821461158a578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611606575060005481105b156116e657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116e45780516001600160a01b03161561167a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116df579392505050565b61167a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61093d828260405180602001604052806000815250611967565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117a0903390899088908890600401612232565b6020604051808303816000875af19250505080156117db575060408051601f3d908101601f191682019092526117d89181019061226f565b60015b611839573d808015611809576040519150601f19603f3d011682016040523d82523d6000602084013e61180e565b606091505b508051600003611831576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107ac9061201e565b60608160000361188d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118b757806118a181612219565b91506118b09050600a836122a2565b9150611891565b60008167ffffffffffffffff8111156118d2576118d2611d04565b6040519080825280601f01601f1916602001820160405280156118fc576020820181803683370190505b5090505b841561184f576119116001836122b6565b915061191e600a866122cd565b6119299060306121eb565b60f81b81838151811061193e5761193e612203565b60200101906001600160f81b031916908160001a905350611960600a866122a2565b9450611900565b6108fb83838360016000546001600160a01b03851661199857604051622e076360e81b815260040160405180910390fd5b836000036119b95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a6b57506001600160a01b0387163b15155b15611af3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611abc600088848060010195508861176b565b611ad9576040516368d2bf6b60e11b815260040160405180910390fd5b808203611a71578260005414611aee57600080fd5b611b38565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611af4575b506000556115cf565b828054611b4d9061201e565b90600052602060002090601f016020900481019282611b6f5760008555611bb5565b82601f10611b8857805160ff1916838001178555611bb5565b82800160010185558215611bb5579182015b82811115611bb5578251825591602001919060010190611b9a565b50611bc1929150611bc5565b5090565b5b80821115611bc15760008155600101611bc6565b6001600160e01b03198116811461134e57600080fd5b600060208284031215611c0257600080fd5b813561114381611bda565b803561ffff81168114611c1f57600080fd5b919050565b600060208284031215611c3657600080fd5b61114382611c0d565b60005b83811015611c5a578181015183820152602001611c42565b83811115610f4b5750506000910152565b60008151808452611c83816020860160208601611c3f565b601f01601f19169290920160200192915050565b6020815260006111436020830184611c6b565b600060208284031215611cbc57600080fd5b5035919050565b80356001600160a01b0381168114611c1f57600080fd5b60008060408385031215611ced57600080fd5b611cf683611cc3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d3557611d35611d04565b604051601f8501601f19908116603f01168101908282118183101715611d5d57611d5d611d04565b81604052809350858152868686011115611d7657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611da257600080fd5b813567ffffffffffffffff811115611db957600080fd5b8201601f81018413611dca57600080fd5b61184f84823560208401611d1a565b600080600060608486031215611dee57600080fd5b611df784611cc3565b9250611e0560208501611cc3565b9150604084013590509250925092565b803560ff81168114611c1f57600080fd5b600060208284031215611e3857600080fd5b61114382611e15565b600060208284031215611e5357600080fd5b61114382611cc3565b60008060408385031215611e6f57600080fd5b611e7883611cc3565b915060208301358015158114611e8d57600080fd5b809150509250929050565b60008060008060808587031215611eae57600080fd5b611eb785611cc3565b9350611ec560208601611cc3565b925060408501359150606085013567ffffffffffffffff811115611ee857600080fd5b8501601f81018713611ef957600080fd5b611f0887823560208401611d1a565b91505092959194509250565b60008060408385031215611f2757600080fd5b611f3083611c0d565b9150611f3e60208401611cc3565b90509250929050565b600080600060408486031215611f5c57600080fd5b611f6584611e15565b9250602084013567ffffffffffffffff80821115611f8257600080fd5b818601915086601f830112611f9657600080fd5b813581811115611fa557600080fd5b8760208260051b8501011115611fba57600080fd5b6020830194508093505050509250925092565b60008060408385031215611fe057600080fd5b611f3083611cc3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061203257607f821691505b60208210810361205257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681851680830382111561208b5761208b612058565b01949350505050565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600060ff821660ff84168060ff038211156120de576120de612058565b019392505050565b600081600019048311821515161561210057612100612058565b500290565b600060ff821660ff84168082101561211f5761211f612058565b90039392505050565b60008451602061213b8285838a01611c3f565b85519184019161214e8184848a01611c3f565b8554920191600090600181811c908083168061216b57607f831692505b858310810361218857634e487b7160e01b85526022600452602485fd5b80801561219c57600181146121ad576121da565b60ff198516885283880195506121da565b60008b81526020902060005b858110156121d25781548a8201529084019088016121b9565b505083880195505b50939b9a5050505050505050505050565b600082198211156121fe576121fe612058565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161222b5761222b612058565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226590830184611c6b565b9695505050505050565b60006020828403121561228157600080fd5b815161114381611bda565b634e487b7160e01b600052601260045260246000fd5b6000826122b1576122b161228c565b500490565b6000828210156122c8576122c8612058565b500390565b6000826122dc576122dc61228c565b50069056fea2646970667358221220a4a49be51a7225037cf120b2702da72b3d5062792bd48a19cb3efb3c5cda03c964736f6c634300080d0033
Deployed Bytecode Sourcemap
45269:3959:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25593:305;;;;;;;;;;-1:-1:-1;25593:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25593:305:0;;;;;;;;47670:97;;;;;;;;;;-1:-1:-1;47670:97:0;;;;;:::i;:::-;;:::i;:::-;;28706:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30209:204::-;;;;;;;;;;-1:-1:-1;30209:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2045:32:1;;;2027:51;;2015:2;2000:18;30209:204:0;1881:203:1;29772:371:0;;;;;;;;;;-1:-1:-1;29772:371:0;;;;;:::i;:::-;;:::i;48516:102::-;;;;;;;;;;-1:-1:-1;48516:102:0;;;;;:::i;:::-;;:::i;45505:33::-;;;;;;;;;;;;;;;;;;;3897:25:1;;;3885:2;3870:18;45505:33:0;3751:177:1;24842:303:0;;;;;;;;;;;;24699:1;25096:12;24886:7;25080:13;:28;-1:-1:-1;;25080:46:0;;24842:303;31074:170;;;;;;;;;;-1:-1:-1;31074:170:0;;;;;:::i;:::-;;:::i;48624:74::-;;;;;;;;;;;;;:::i;48785:70::-;;;;;;;;;;;;;:::i;48974:144::-;;;;;;;;;;;;;:::i;31315:185::-;;;;;;;;;;-1:-1:-1;31315:185:0;;;;;:::i;:::-;;:::i;48704:76::-;;;;;;;;;;-1:-1:-1;48704:76:0;;;;;:::i;:::-;;:::i;48270:133::-;;;;;;;;;;-1:-1:-1;48270:133:0;;;;;:::i;:::-;;:::i;45734:25::-;;;;;;;;;;-1:-1:-1;45734:25:0;;;;;;;;;;;28514:125;;;;;;;;;;-1:-1:-1;28514:125:0;;;;;:::i;:::-;;:::i;25962:206::-;;;;;;;;;;-1:-1:-1;25962:206:0;;;;;:::i;:::-;;:::i;44415:103::-;;;;;;;;;;;;;:::i;48409:102::-;;;;;;;;;;-1:-1:-1;48409:102:0;;;;;:::i;:::-;;:::i;43763:87::-;;;;;;;;;;-1:-1:-1;43836:6:0;;-1:-1:-1;;;;;43836:6:0;43763:87;;45580:35;;;;;;;;;;-1:-1:-1;45580:35:0;;;;;;;;;;;;;;4977:4:1;4965:17;;;4947:36;;4935:2;4920:18;45580:35:0;4805:184:1;28875:104:0;;;;;;;;;;;;;:::i;30485:287::-;;;;;;;;;;-1:-1:-1;30485:287:0;;;;;:::i;:::-;;:::i;45919:935::-;;;;;;:::i;:::-;;:::i;45764:26::-;;;;;;;;;;-1:-1:-1;45764:26:0;;;;;;;;;;;48861:107;;;;;;;;;;-1:-1:-1;48861:107:0;;;;;:::i;:::-;;:::i;31571:369::-;;;;;;;;;;-1:-1:-1;31571:369:0;;;;;:::i;:::-;;:::i;46862:326::-;;;;;;;;;;-1:-1:-1;46862:326:0;;;;;:::i;:::-;;:::i;47773:490::-;;;;;;;;;;-1:-1:-1;47773:490:0;;;;;:::i;:::-;;:::i;47194:470::-;;;;;;;;;;-1:-1:-1;47194:470:0;;;;;:::i;:::-;;:::i;45545:30::-;;;;;;;;;;-1:-1:-1;45545:30:0;;;;;;;;;;;7145:6:1;7133:19;;;7115:38;;7103:2;7088:18;45545:30:0;6971:188:1;45797:53:0;;;;;;;;;;-1:-1:-1;45797:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30843:164;;;;;;;;;;-1:-1:-1;30843:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30964:25:0;;;30940:4;30964:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30843:164;45417:81;;;;;;;;;;;;;:::i;44673:201::-;;;;;;;;;;-1:-1:-1;44673:201:0;;;;;:::i;:::-;;:::i;45620:43::-;;;;;;;;;;-1:-1:-1;45620:43:0;;;;;;;;;;;25593:305;25695:4;-1:-1:-1;;;;;;25732:40:0;;-1:-1:-1;;;25732:40:0;;:105;;-1:-1:-1;;;;;;;25789:48:0;;-1:-1:-1;;;25789:48:0;25732:105;:158;;;-1:-1:-1;;;;;;;;;;15627:40:0;;;25854:36;25712:178;25593:305;-1:-1:-1;;25593:305:0:o;47670:97::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;;;;;;;;;47739:9:::1;:22:::0;;-1:-1:-1;;47739:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47670:97::o;28706:100::-;28760:13;28793:5;28786:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28706:100;:::o;30209:204::-;30277:7;30302:16;30310:7;30302;:16::i;:::-;30297:64;;30327:34;;-1:-1:-1;;;30327:34:0;;;;;;;;;;;30297:64;-1:-1:-1;30381:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30381:24:0;;30209:204::o;29772:371::-;29845:13;29861:24;29877:7;29861:15;:24::i;:::-;29845:40;;29906:5;-1:-1:-1;;;;;29900:11:0;:2;-1:-1:-1;;;;;29900:11:0;;29896:48;;29920:24;;-1:-1:-1;;;29920:24:0;;;;;;;;;;;29896:48;4068:10;-1:-1:-1;;;;;29961:21:0;;;;;;:63;;-1:-1:-1;29987:37:0;30004:5;4068:10;30843:164;:::i;29987:37::-;29986:38;29961:63;29957:138;;;30048:35;;-1:-1:-1;;;30048:35:0;;;;;;;;;;;29957:138;30107:28;30116:2;30120:7;30129:5;30107:8;:28::i;:::-;29834:309;29772:371;;:::o;48516:102::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;48590:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48516:102:::0;:::o;31074:170::-;31208:28;31218:4;31224:2;31228:7;31208:9;:28::i;48624:74::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;48681:6:::1;::::0;;-1:-1:-1;;48671:16:0;::::1;48681:6:::0;;;;::::1;;;48680:7;48671:16:::0;;::::1;;::::0;;48624:74::o;48785:70::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;48844:6:::1;::::0;;-1:-1:-1;;48834:16:0;::::1;48844:6:::0;;;;::::1;;;48843:7;48834:16:::0;;::::1;;::::0;;48785:70::o;48974:144::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;49063:39:::1;::::0;49034:21:::1;::::0;49071:10:::1;::::0;49063:39;::::1;;;::::0;49034:21;;49018:13:::1;49063:39:::0;49018:13;49063:39;49034:21;49071:10;49063:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;31315:185:::0;31453:39;31470:4;31476:2;31480:7;31453:39;;;;;;;;;;;;:16;:39::i;48704:76::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;48760:4:::1;:12:::0;48704:76::o;48270:133::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;48342:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48342:35:0;;::::1;::::0;;;::::1;::::0;;48270:133::o;28514:125::-;28578:7;28605:21;28618:7;28605:12;:21::i;:::-;:26;;28514:125;-1:-1:-1;;28514:125:0:o;25962:206::-;26026:7;-1:-1:-1;;;;;26050:19:0;;26046:60;;26078:28;;-1:-1:-1;;;26078:28:0;;;;;;;;;;;26046:60;-1:-1:-1;;;;;;26132:19:0;;;;;:12;:19;;;;;:27;;;;25962:206::o;44415:103::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;44480:30:::1;44507:1;44480:18;:30::i;:::-;44415:103::o:0;48409:102::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;48483:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28875:104::-:0;28931:13;28964:7;28957:14;;;;;:::i;30485:287::-;4068:10;-1:-1:-1;;;;;30584:24:0;;;30580:54;;30617:17;;-1:-1:-1;;;30617:17:0;;;;;;;;;;;30580:54;4068:10;30647:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30647:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30647:53:0;;;;;;;;;;30716:48;;540:41:1;;;30647:42:0;;4068:10;30716:48;;513:18:1;30716:48:0;;;;;;;30485:287;;:::o;45919:935::-;45978:18;46006:13;24699:1;25096:12;24886:7;25080:13;:28;-1:-1:-1;;25080:46:0;;24842:303;46006:13;46060:10;46028:9;46040:31;;;:19;:31;;;;;;46115:9;;45978:42;;-1:-1:-1;46040:31:0;;;;;46115:9;;;46086:25;;;;45978:42;46086:25;:::i;:::-;:38;;;;46078:70;;;;-1:-1:-1;;;46078:70:0;;;;;;;:::i;:::-;46184:18;;;;;;;46163:17;46177:3;46163:11;:17;:::i;:::-;:39;;;;46155:80;;;;-1:-1:-1;;;46155:80:0;;9295:2:1;46155:80:0;;;9277:21:1;9334:2;9314:18;;;9307:30;9373;9353:18;;;9346:58;9421:18;;46155:80:0;9093:352:1;46155:80:0;46251:6;;;;;;;46250:7;46242:43;;;;-1:-1:-1;;;46242:43:0;;9652:2:1;46242:43:0;;;9634:21:1;9691:2;9671:18;;;9664:30;9730:25;9710:18;;;9703:53;9773:18;;46242:43:0;9450:347:1;46242:43:0;46310:26;;;;;;;;;46303:33;;;;46300:397;;46378:11;46371:18;;:4;;:18;;;;:::i;:::-;46358:9;:31;;46350:63;;;;-1:-1:-1;;;46350:63:0;;10177:2:1;46350:63:0;;;10159:21:1;10216:2;10196:18;;;10189:30;-1:-1:-1;;;10235:18:1;;;10228:49;10294:18;;46350:63:0;9975:343:1;46350:63:0;46300:397;;;46444:16;46463:17;46477:3;46463:11;:17;:::i;:::-;46507:26;;46444:36;;-1:-1:-1;46507:26:0;;;;;;;46494:39;;;;46491:199;;;46580:26;;46567:39;;46580:26;;;;;46567:10;:39;:::i;:::-;46554:52;;46645:10;46638:17;;:4;;:17;;;;:::i;:::-;46625:9;:30;;46617:62;;;;-1:-1:-1;;;46617:62:0;;10177:2:1;46617:62:0;;;10159:21:1;10216:2;10196:18;;;10189:30;-1:-1:-1;;;10235:18:1;;;10228:49;10294:18;;46617:62:0;9975:343:1;46617:62:0;46432:265;46300:397;46703:35;46713:10;46726:11;46703:35;;:9;:35::i;:::-;46779:17;46793:3;46779:11;:17;:::i;:::-;46765:10;46745:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;46745:51:0;;;;;;;;;;;;-1:-1:-1;;;45919:935:0:o;48861:107::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;48933:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48933:27:0;;::::1;::::0;;;::::1;::::0;;48861:107::o;31571:369::-;31738:28;31748:4;31754:2;31758:7;31738:9;:28::i;:::-;-1:-1:-1;;;;;31781:13:0;;5730:19;:23;;31781:76;;;;;31801:56;31832:4;31838:2;31842:7;31851:5;31801:30;:56::i;:::-;31800:57;31781:76;31777:156;;;31881:40;;-1:-1:-1;;;31881:40:0;;;;;;;;;;;31777:156;31571:369;;;;:::o;46862:326::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;46945:18:::1;46973:13;24699:1:::0;25096:12;24886:7;25080:13;:28;-1:-1:-1;;25080:46:0;;24842:303;46973:13:::1;47031:9;::::0;46945:42;;-1:-1:-1;47031:9:0::1;;47002:25;47016:11:::0;46945:42;47002:25:::1;:::i;:::-;:38;;;;46994:70;;;;-1:-1:-1::0;;;46994:70:0::1;;;;;;;:::i;:::-;47072:34;47082:9;47094:11;47072:34;;:9;:34::i;47773:490::-:0;47872:13;47913:17;47921:8;47913:7;:17::i;:::-;47897:98;;;;-1:-1:-1;;;47897:98:0;;10725:2:1;47897:98:0;;;10707:21:1;10764:2;10744:18;;;10737:30;10803:34;10783:18;;;10776:62;-1:-1:-1;;;10854:18:1;;;10847:45;10909:19;;47897:98:0;10523:411:1;47897:98:0;48013:6;;;;;;;:15;;48023:5;48013:15;48008:50;;48045:9;48038:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47773:490;;;:::o;48008:50::-;48072:28;48103:10;:8;:10::i;:::-;48072:41;;48158:1;48133:14;48127:28;:32;:130;;;;;;;;;;;;;;;;;48195:14;48211:19;:8;:17;:19::i;:::-;48232:9;48178:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48127:130;48120:137;47773:490;-1:-1:-1;;;47773:490:0:o;47194:470::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;47293:18:::1;47321:13;24699:1:::0;25096:12;24886:7;25080:13;:28;-1:-1:-1;;25080:46:0;;24842:303;47321:13:::1;47293:42:::0;-1:-1:-1;47343:16:0::1;47364:36;47384:9:::0;47364:36:::1;::::0;::::1;;:::i;:::-;47444:9;::::0;47343:57;;-1:-1:-1;47444:9:0::1;::::0;;::::1;::::0;47415:25:::1;::::0;47343:57;;47415:25;::::1;;:::i;:::-;:38;;47407:70;;;;-1:-1:-1::0;;;47407:70:0::1;;;;;;;:::i;:::-;47490:9;47485:116;47505:20:::0;;::::1;47485:116;;;47547:42;47557:9;;47567:1;47557:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47571:17;47547:42;;:9;:42::i;:::-;47527:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47485:116;;;-1:-1:-1::0;;;;;;47194:470:0:o;45417:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44673:201::-;43836:6;;-1:-1:-1;;;;;43836:6:0;4068:10;43983:23;43975:69;;;;-1:-1:-1;;;43975:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44762:22:0;::::1;44754:73;;;::::0;-1:-1:-1;;;44754:73:0;;13204:2:1;44754:73:0::1;::::0;::::1;13186:21:1::0;13243:2;13223:18;;;13216:30;13282:34;13262:18;;;13255:62;-1:-1:-1;;;13333:18:1;;;13326:36;13379:19;;44754:73:0::1;13002:402:1::0;44754:73:0::1;44838:28;44857:8;44838:18;:28::i;:::-;44673:201:::0;:::o;32195:187::-;32252:4;32295:7;24699:1;32276:26;;:53;;;;;32316:13;;32306:7;:23;32276:53;:98;;;;-1:-1:-1;;32347:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32347:27:0;;;;32346:28;;32195:187::o;40365:196::-;40480:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40480:29:0;-1:-1:-1;;;;;40480:29:0;;;;;;;;;40525:28;;40480:24;;40525:28;;;;;;;40365:196;;;:::o;35308:2130::-;35423:35;35461:21;35474:7;35461:12;:21::i;:::-;35423:59;;35521:4;-1:-1:-1;;;;;35499:26:0;:13;:18;;;-1:-1:-1;;;;;35499:26:0;;35495:67;;35534:28;;-1:-1:-1;;;35534:28:0;;;;;;;;;;;35495:67;35575:22;4068:10;-1:-1:-1;;;;;35601:20:0;;;;:73;;-1:-1:-1;35638:36:0;35655:4;4068:10;30843:164;:::i;35638:36::-;35601:126;;;-1:-1:-1;4068:10:0;35691:20;35703:7;35691:11;:20::i;:::-;-1:-1:-1;;;;;35691:36:0;;35601:126;35575:153;;35746:17;35741:66;;35772:35;;-1:-1:-1;;;35772:35:0;;;;;;;;;;;35741:66;-1:-1:-1;;;;;35822:16:0;;35818:52;;35847:23;;-1:-1:-1;;;35847:23:0;;;;;;;;;;;35818:52;35991:35;36008:1;36012:7;36021:4;35991:8;:35::i;:::-;-1:-1:-1;;;;;36322:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36322:31:0;;;;;;;-1:-1:-1;;36322:31:0;;;;;;;36368:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36368:29:0;;;;;;;;;;;36448:20;;;:11;:20;;;;;;36483:18;;-1:-1:-1;;;;;;36516:49:0;;;;-1:-1:-1;;;36549:15:0;36516:49;;;;;;;;;;36839:11;;36899:24;;;;;36942:13;;36448:20;;36899:24;;36942:13;36938:384;;37152:13;;37137:11;:28;37133:174;;37190:20;;37259:28;;;;37233:54;;-1:-1:-1;;;37233:54:0;-1:-1:-1;;;;;;37233:54:0;;;-1:-1:-1;;;;;37190:20:0;;37233:54;;;;37133:174;36297:1036;;;37369:7;37365:2;-1:-1:-1;;;;;37350:27:0;37359:4;-1:-1:-1;;;;;37350:27:0;;;;;;;;;;;37388:42;35412:2026;;35308:2130;;;:::o;27343:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27454:7:0;;24699:1;27503:23;;:47;;;;;27537:13;;27530:4;:20;27503:47;27499:886;;;27571:31;27605:17;;;:11;:17;;;;;;;;;27571:51;;;;;;;;;-1:-1:-1;;;;;27571:51:0;;;;-1:-1:-1;;;27571:51:0;;;;;;;;;;;-1:-1:-1;;;27571:51:0;;;;;;;;;;;;;;27641:729;;27691:14;;-1:-1:-1;;;;;27691:28:0;;27687:101;;27755:9;27343:1109;-1:-1:-1;;;27343:1109:0:o;27687:101::-;-1:-1:-1;;;28130:6:0;28175:17;;;;:11;:17;;;;;;;;;28163:29;;;;;;;;;-1:-1:-1;;;;;28163:29:0;;;;;-1:-1:-1;;;28163:29:0;;;;;;;;;;;-1:-1:-1;;;28163:29:0;;;;;;;;;;;;;28223:28;28219:109;;28291:9;27343:1109;-1:-1:-1;;;27343:1109:0:o;28219:109::-;28090:261;;;27552:833;27499:886;28413:31;;-1:-1:-1;;;28413:31:0;;;;;;;;;;;45034:191;45127:6;;;-1:-1:-1;;;;;45144:17:0;;;-1:-1:-1;;;;;;45144:17:0;;;;;;;45177:40;;45127:6;;;45144:17;45127:6;;45177:40;;45108:16;;45177:40;45097:128;45034:191;:::o;32390:104::-;32459:27;32469:2;32473:8;32459:27;;;;;;;;;;;;:9;:27::i;41053:667::-;41237:72;;-1:-1:-1;;;41237:72:0;;41216:4;;-1:-1:-1;;;;;41237:36:0;;;;;:72;;4068:10;;41288:4;;41294:7;;41303:5;;41237:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41237:72:0;;;;;;;;-1:-1:-1;;41237:72:0;;;;;;;;;;;;:::i;:::-;;;41233:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41471:6;:13;41488:1;41471:18;41467:235;;41517:40;;-1:-1:-1;;;41517:40:0;;;;;;;;;;;41467:235;41660:6;41654:13;41645:6;41641:2;41637:15;41630:38;41233:480;-1:-1:-1;;;;;;41356:55:0;-1:-1:-1;;;41356:55:0;;-1:-1:-1;41233:480:0;41053:667;;;;;;:::o;49126:97::-;49179:13;49208:9;49201:16;;;;;:::i;1550:723::-;1606:13;1827:5;1836:1;1827:10;1823:53;;-1:-1:-1;;1854:10:0;;;;;;;;;;;;-1:-1:-1;;;1854:10:0;;;;;1550:723::o;1823:53::-;1901:5;1886:12;1942:78;1949:9;;1942:78;;1975:8;;;;:::i;:::-;;-1:-1:-1;1998:10:0;;-1:-1:-1;2006:2:0;1998:10;;:::i;:::-;;;1942:78;;;2030:19;2062:6;2052:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2052:17:0;;2030:39;;2080:154;2087:10;;2080:154;;2114:11;2124:1;2114:11;;:::i;:::-;;-1:-1:-1;2183:10:0;2191:2;2183:5;:10;:::i;:::-;2170:24;;:2;:24;:::i;:::-;2157:39;;2140:6;2147;2140:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2140:56:0;;;;;;;;-1:-1:-1;2211:11:0;2220:2;2211:11;;:::i;:::-;;;2080:154;;32857:163;32980:32;32986:2;32990:8;33000:5;33007:4;33418:20;33441:13;-1:-1:-1;;;;;33469:16:0;;33465:48;;33494:19;;-1:-1:-1;;;33494:19:0;;;;;;;;;;;33465:48;33528:8;33540:1;33528:13;33524:44;;33550:18;;-1:-1:-1;;;33550:18:0;;;;;;;;;;;33524:44;-1:-1:-1;;;;;33919:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33978:49:0;;33919:44;;;;;;;;33978:49;;;;-1:-1:-1;;33919:44:0;;;;;;33978:49;;;;;;;;;;;;;;;;34044:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34094:66:0;;;;-1:-1:-1;;;34144:15:0;34094:66;;;;;;;;;;34044:25;34241:23;;;34285:4;:23;;;;-1:-1:-1;;;;;;34293:13:0;;5730:19;:23;;34293:15;34281:641;;;34329:314;34360:38;;34385:12;;-1:-1:-1;;;;;34360:38:0;;;34377:1;;34360:38;;34377:1;;34360:38;34426:69;34465:1;34469:2;34473:14;;;;;;34489:5;34426:30;:69::i;:::-;34421:174;;34531:40;;-1:-1:-1;;;34531:40:0;;;;;;;;;;;34421:174;34638:3;34622:12;:19;34329:314;;34724:12;34707:13;;:29;34703:43;;34738:8;;;34703:43;34281:641;;;34787:120;34818:40;;34843:14;;;;;-1:-1:-1;;;;;34818:40:0;;;34835:1;;34818:40;;34835:1;;34818:40;34902:3;34886:12;:19;34787:120;;34281:641;-1:-1:-1;34936:13:0;:28;34986:60;31571: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:159::-;659:20;;719:6;708:18;;698:29;;688:57;;741:1;738;731:12;688:57;592:159;;;:::o;756:184::-;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;906:28;924:9;906:28;:::i;945:258::-;1017:1;1027:113;1041:6;1038:1;1035:13;1027:113;;;1117:11;;;1111:18;1098:11;;;1091:39;1063:2;1056:10;1027:113;;;1158:6;1155:1;1152:13;1149:48;;;-1:-1:-1;;1193:1:1;1175:16;;1168:27;945:258::o;1208:::-;1250:3;1288:5;1282:12;1315:6;1310:3;1303:19;1331:63;1387:6;1380:4;1375:3;1371:14;1364:4;1357:5;1353:16;1331:63;:::i;:::-;1448:2;1427:15;-1:-1:-1;;1423:29:1;1414:39;;;;1455:4;1410:50;;1208:258;-1:-1:-1;;1208:258:1:o;1471:220::-;1620:2;1609:9;1602:21;1583:4;1640:45;1681:2;1670:9;1666:18;1658:6;1640:45;:::i;1696:180::-;1755:6;1808:2;1796:9;1787:7;1783:23;1779:32;1776:52;;;1824:1;1821;1814:12;1776:52;-1:-1:-1;1847:23:1;;1696:180;-1:-1:-1;1696:180:1:o;2089:173::-;2157:20;;-1:-1:-1;;;;;2206:31:1;;2196:42;;2186:70;;2252:1;2249;2242:12;2267:254;2335:6;2343;2396:2;2384:9;2375:7;2371:23;2367:32;2364:52;;;2412:1;2409;2402:12;2364:52;2435:29;2454:9;2435:29;:::i;:::-;2425:39;2511:2;2496:18;;;;2483:32;;-1:-1:-1;;;2267:254:1:o;2526:127::-;2587:10;2582:3;2578:20;2575:1;2568:31;2618:4;2615:1;2608:15;2642:4;2639:1;2632:15;2658:632;2723:5;2753:18;2794:2;2786:6;2783:14;2780:40;;;2800:18;;:::i;:::-;2875:2;2869:9;2843:2;2929:15;;-1:-1:-1;;2925:24:1;;;2951:2;2921:33;2917:42;2905:55;;;2975:18;;;2995:22;;;2972:46;2969:72;;;3021:18;;:::i;:::-;3061:10;3057:2;3050:22;3090:6;3081:15;;3120:6;3112;3105:22;3160:3;3151:6;3146:3;3142:16;3139:25;3136:45;;;3177:1;3174;3167:12;3136:45;3227:6;3222:3;3215:4;3207:6;3203:17;3190:44;3282:1;3275:4;3266:6;3258;3254:19;3250:30;3243:41;;;;2658:632;;;;;:::o;3295:451::-;3364:6;3417:2;3405:9;3396:7;3392:23;3388:32;3385:52;;;3433:1;3430;3423:12;3385:52;3473:9;3460:23;3506:18;3498:6;3495:30;3492:50;;;3538:1;3535;3528:12;3492:50;3561:22;;3614:4;3606:13;;3602:27;-1:-1:-1;3592:55:1;;3643:1;3640;3633:12;3592:55;3666:74;3732:7;3727:2;3714:16;3709:2;3705;3701:11;3666:74;:::i;3933:328::-;4010:6;4018;4026;4079:2;4067:9;4058:7;4054:23;4050:32;4047:52;;;4095:1;4092;4085:12;4047:52;4118:29;4137:9;4118:29;:::i;:::-;4108:39;;4166:38;4200:2;4189:9;4185:18;4166:38;:::i;:::-;4156:48;;4251:2;4240:9;4236:18;4223:32;4213:42;;3933:328;;;;;:::o;4266:156::-;4332:20;;4392:4;4381:16;;4371:27;;4361:55;;4412:1;4409;4402:12;4427:182;4484:6;4537:2;4525:9;4516:7;4512:23;4508:32;4505:52;;;4553:1;4550;4543:12;4505:52;4576:27;4593:9;4576:27;:::i;4614:186::-;4673:6;4726:2;4714:9;4705:7;4701:23;4697:32;4694:52;;;4742:1;4739;4732:12;4694:52;4765:29;4784:9;4765:29;:::i;4994:347::-;5059:6;5067;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;5159:29;5178:9;5159:29;:::i;:::-;5149:39;;5238:2;5227:9;5223:18;5210:32;5285:5;5278:13;5271:21;5264:5;5261:32;5251:60;;5307:1;5304;5297:12;5251:60;5330:5;5320:15;;;4994:347;;;;;:::o;5346:667::-;5441:6;5449;5457;5465;5518:3;5506:9;5497:7;5493:23;5489:33;5486:53;;;5535:1;5532;5525:12;5486:53;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;:::-;5596:48;;5691:2;5680:9;5676:18;5663:32;5653:42;;5746:2;5735:9;5731:18;5718:32;5773:18;5765:6;5762:30;5759:50;;;5805:1;5802;5795:12;5759:50;5828:22;;5881:4;5873:13;;5869:27;-1:-1:-1;5859:55:1;;5910:1;5907;5900:12;5859:55;5933:74;5999:7;5994:2;5981:16;5976:2;5972;5968:11;5933:74;:::i;:::-;5923:84;;;5346:667;;;;;;;:::o;6018:258::-;6085:6;6093;6146:2;6134:9;6125:7;6121:23;6117:32;6114:52;;;6162:1;6159;6152:12;6114:52;6185:28;6203:9;6185:28;:::i;:::-;6175:38;;6232;6266:2;6255:9;6251:18;6232:38;:::i;:::-;6222:48;;6018:258;;;;;:::o;6281:685::-;6374:6;6382;6390;6443:2;6431:9;6422:7;6418:23;6414:32;6411:52;;;6459:1;6456;6449:12;6411:52;6482:27;6499:9;6482:27;:::i;:::-;6472:37;;6560:2;6549:9;6545:18;6532:32;6583:18;6624:2;6616:6;6613:14;6610:34;;;6640:1;6637;6630:12;6610:34;6678:6;6667:9;6663:22;6653:32;;6723:7;6716:4;6712:2;6708:13;6704:27;6694:55;;6745:1;6742;6735:12;6694:55;6785:2;6772:16;6811:2;6803:6;6800:14;6797:34;;;6827:1;6824;6817:12;6797:34;6880:7;6875:2;6865:6;6862:1;6858:14;6854:2;6850:23;6846:32;6843:45;6840:65;;;6901:1;6898;6891:12;6840:65;6932:2;6928;6924:11;6914:21;;6954:6;6944:16;;;;;6281:685;;;;;:::o;7164:260::-;7232:6;7240;7293:2;7281:9;7272:7;7268:23;7264:32;7261:52;;;7309:1;7306;7299:12;7261:52;7332:29;7351:9;7332:29;:::i;7429:356::-;7631:2;7613:21;;;7650:18;;;7643:30;7709:34;7704:2;7689:18;;7682:62;7776:2;7761:18;;7429:356::o;7790:380::-;7869:1;7865:12;;;;7912;;;7933:61;;7987:4;7979:6;7975:17;7965:27;;7933:61;8040:2;8032:6;8029:14;8009:18;8006:38;8003:161;;8086:10;8081:3;8077:20;8074:1;8067:31;8121:4;8118:1;8111:15;8149:4;8146:1;8139:15;8003:161;;7790:380;;;:::o;8175:127::-;8236:10;8231:3;8227:20;8224:1;8217:31;8267:4;8264:1;8257:15;8291:4;8288:1;8281:15;8307:224;8346:3;8374:6;8407:2;8404:1;8400:10;8437:2;8434:1;8430:10;8468:3;8464:2;8460:12;8455:3;8452:21;8449:47;;;8476:18;;:::i;:::-;8512:13;;8307:224;-1:-1:-1;;;;8307:224:1:o;8536:343::-;8738:2;8720:21;;;8777:2;8757:18;;;8750:30;-1:-1:-1;;;8811:2:1;8796:18;;8789:49;8870:2;8855:18;;8536:343::o;8884:204::-;8922:3;8958:4;8955:1;8951:12;8990:4;8987:1;8983:12;9025:3;9019:4;9015:14;9010:3;9007:23;9004:49;;;9033:18;;:::i;:::-;9069:13;;8884:204;-1:-1:-1;;;8884:204:1:o;9802:168::-;9842:7;9908:1;9904;9900:6;9896:14;9893:1;9890:21;9885:1;9878:9;9871:17;9867:45;9864:71;;;9915:18;;:::i;:::-;-1:-1:-1;9955:9:1;;9802:168::o;10323:195::-;10361:4;10398;10395:1;10391:12;10430:4;10427:1;10423:12;10455:3;10450;10447:12;10444:38;;;10462:18;;:::i;:::-;10499:13;;;10323:195;-1:-1:-1;;;10323:195:1:o;11065:1527::-;11289:3;11327:6;11321:13;11353:4;11366:51;11410:6;11405:3;11400:2;11392:6;11388:15;11366:51;:::i;:::-;11480:13;;11439:16;;;;11502:55;11480:13;11439:16;11524:15;;;11502:55;:::i;:::-;11646:13;;11579:20;;;11619:1;;11706;11728:18;;;;11781;;;;11808:93;;11886:4;11876:8;11872:19;11860:31;;11808:93;11949:2;11939:8;11936:16;11916:18;11913:40;11910:167;;-1:-1:-1;;;11976:33:1;;12032:4;12029:1;12022:15;12062:4;11983:3;12050:17;11910:167;12093:18;12120:110;;;;12244:1;12239:328;;;;12086:481;;12120:110;-1:-1:-1;;12155:24:1;;12141:39;;12200:20;;;;-1:-1:-1;12120:110:1;;12239:328;11012:1;11005:14;;;11049:4;11036:18;;12334:1;12348:169;12362:8;12359:1;12356:15;12348:169;;;12444:14;;12429:13;;;12422:37;12487:16;;;;12379:10;;12348:169;;;12352:3;;12548:8;12541:5;12537:20;12530:27;;12086:481;-1:-1:-1;12583:3:1;;11065:1527;-1:-1:-1;;;;;;;;;;;11065:1527:1:o;12597:128::-;12637:3;12668:1;12664:6;12661:1;12658:13;12655:39;;;12674:18;;:::i;:::-;-1:-1:-1;12710:9:1;;12597:128::o;12730:127::-;12791:10;12786:3;12782:20;12779:1;12772:31;12822:4;12819:1;12812:15;12846:4;12843:1;12836:15;12862:135;12901:3;12922:17;;;12919:43;;12942:18;;:::i;:::-;-1:-1:-1;12989:1:1;12978:13;;12862:135::o;13409:489::-;-1:-1:-1;;;;;13678:15:1;;;13660:34;;13730:15;;13725:2;13710:18;;13703:43;13777:2;13762:18;;13755:34;;;13825:3;13820:2;13805:18;;13798:31;;;13603:4;;13846:46;;13872:19;;13864:6;13846:46;:::i;:::-;13838:54;13409:489;-1:-1:-1;;;;;;13409:489:1:o;13903:249::-;13972:6;14025:2;14013:9;14004:7;14000:23;13996:32;13993:52;;;14041:1;14038;14031:12;13993:52;14073:9;14067:16;14092:30;14116:5;14092:30;:::i;14157:127::-;14218:10;14213:3;14209:20;14206:1;14199:31;14249:4;14246:1;14239:15;14273:4;14270:1;14263:15;14289:120;14329:1;14355;14345:35;;14360:18;;:::i;:::-;-1:-1:-1;14394:9:1;;14289:120::o;14414:125::-;14454:4;14482:1;14479;14476:8;14473:34;;;14487:18;;:::i;:::-;-1:-1:-1;14524:9:1;;14414:125::o;14544:112::-;14576:1;14602;14592:35;;14607:18;;:::i;:::-;-1:-1:-1;14641:9:1;;14544:112::o
Swarm Source
ipfs://a4a49be51a7225037cf120b2702da72b3d5062792bd48a19cb3efb3c5cda03c9
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.