Contract Overview
Balance:
0 FTM
My Name Tag:
Not Available
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xf54b8004a1c85317f0ed525565ab2adff1829d750c09c410be1b05ec7870b44e | 0x60c06040 | 8574856 | 438 days 21 hrs ago | 0xaf1fd6827c3d388a8cdea8eb259cf3a775ab6594 | IN | Create: TestChilla | 0 FTM | 0.48539574 |
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xf54b8004a1c85317f0ed525565ab2adff1829d750c09c410be1b05ec7870b44e | 8574856 | 438 days 21 hrs ago | 0xaf1fd6827c3d388a8cdea8eb259cf3a775ab6594 | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
TestChilla
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2022-03-26 */ /** *Submitted for verification at FtmScan.com on 2021-12-21 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/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/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/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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/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/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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: @openzeppelin/contracts/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/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/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.7.0 <0.9.0; contract TestChilla is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public cost = 0 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 100; bool public paused = false; bool public onlyWhitelisted = false; mapping(address => uint256) public whitelistedAddresses; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(whitelistedAddresses[msg.sender] > 0, "No More Free Mints"); require(whitelistedAddresses[msg.sender] >= _mintAmount, "To many mints"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { if (whitelistedAddresses[msg.sender] > 0){ whitelistedAddresses[msg.sender]--; } _safeMint(msg.sender, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users, uint256[] calldata _amount) public onlyOwner { for (uint256 i = 0; i < _users.length; i++){ whitelistedAddresses[_users[i]] = _amount[i]; } } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001a2565b506000600d55612710600e556064600f556010805461ffff191690553480156200005157600080fd5b5060405162002b1638038062002b168339810160408190526200007491620002ff565b8251839083906200008d906000906020850190620001a2565b508051620000a3906001906020840190620001a2565b505050620000c0620000ba620000d460201b60201c565b620000d8565b620000cb816200012a565b505050620003e3565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019e90600b906020840190620001a2565b5050565b828054620001b09062000390565b90600052602060002090601f016020900481019282620001d457600085556200021f565b82601f10620001ef57805160ff19168380011785556200021f565b828001600101855582156200021f579182015b828111156200021f57825182559160200191906001019062000202565b506200022d92915062000231565b5090565b5b808211156200022d576000815560010162000232565b600082601f8301126200025a57600080fd5b81516001600160401b0380821115620002775762000277620003cd565b604051601f8301601f19908116603f01168101908282118183101715620002a257620002a2620003cd565b81604052838152602092508683858801011115620002bf57600080fd5b600091505b83821015620002e35785820183015181830184015290820190620002c4565b83821115620002f55760008385830101525b9695505050505050565b6000806000606084860312156200031557600080fd5b83516001600160401b03808211156200032d57600080fd5b6200033b8783880162000248565b945060208601519150808211156200035257600080fd5b620003608783880162000248565b935060408601519150808211156200037757600080fd5b50620003868682870162000248565b9150509250925092565b600181811c90821680620003a557607f821691505b60208210811415620003c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61272380620003f36000396000f3fe60806040526004361061021a5760003560e01c806355f804b3116101235780639c70b512116100ab578063c87b56dd1161006f578063c87b56dd146105ff578063d5abeb011461061f578063da3ef23f14610635578063e985e9c514610655578063f2fde38b1461069e57600080fd5b80639c70b51214610578578063a0712d6814610597578063a22cb465146105aa578063b88d4fde146105ca578063c6682862146105ea57600080fd5b806370a08231116100f257806370a08231146104f0578063715018a6146105105780637f00c7a6146105255780638da5cb5b1461054557806395d89b411461056357600080fd5b806355f804b3146104815780635c975abb146104a15780636352211e146104bb5780636c0360eb146104db57600080fd5b8063239c70ae116101a65780633ccfd60b116101755780633ccfd60b146103ec57806342842e0e146103f4578063438b63001461041457806344a0d68a146104415780634f6ccce71461046157600080fd5b8063239c70ae1461037657806323b872dd1461038c5780632f745c59146103ac5780633c952764146103cc57600080fd5b8063081812fc116101ed578063081812fc146102d3578063095ea7b31461030b57806313faede61461032b57806318160ddd146103415780631973ea061461035657600080fd5b806301ffc9a71461021f57806302329a291461025457806306c933d81461027657806306fdde03146102b1575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612262565b6106be565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004612247565b6106e9565b005b34801561028257600080fd5b506102a3610291366004612081565b60116020526000908152604090205481565b60405190815260200161024b565b3480156102bd57600080fd5b506102c661072f565b60405161024b919061246f565b3480156102df57600080fd5b506102f36102ee3660046122e5565b6107c1565b6040516001600160a01b03909116815260200161024b565b34801561031757600080fd5b506102746103263660046121b1565b610856565b34801561033757600080fd5b506102a3600d5481565b34801561034d57600080fd5b506008546102a3565b34801561036257600080fd5b506102746103713660046121db565b61096c565b34801561038257600080fd5b506102a3600f5481565b34801561039857600080fd5b506102746103a73660046120cf565b610a18565b3480156103b857600080fd5b506102a36103c73660046121b1565b610a49565b3480156103d857600080fd5b506102746103e7366004612247565b610adf565b610274610b23565b34801561040057600080fd5b5061027461040f3660046120cf565b610bc1565b34801561042057600080fd5b5061043461042f366004612081565b610bdc565b60405161024b919061242b565b34801561044d57600080fd5b5061027461045c3660046122e5565b610c7e565b34801561046d57600080fd5b506102a361047c3660046122e5565b610cad565b34801561048d57600080fd5b5061027461049c36600461229c565b610d40565b3480156104ad57600080fd5b5060105461023f9060ff1681565b3480156104c757600080fd5b506102f36104d63660046122e5565b610d81565b3480156104e757600080fd5b506102c6610df8565b3480156104fc57600080fd5b506102a361050b366004612081565b610e86565b34801561051c57600080fd5b50610274610f0d565b34801561053157600080fd5b506102746105403660046122e5565b610f43565b34801561055157600080fd5b50600a546001600160a01b03166102f3565b34801561056f57600080fd5b506102c6610f72565b34801561058457600080fd5b5060105461023f90610100900460ff1681565b6102746105a53660046122e5565b610f81565b3480156105b657600080fd5b506102746105c5366004612187565b61125b565b3480156105d657600080fd5b506102746105e536600461210b565b611320565b3480156105f657600080fd5b506102c6611358565b34801561060b57600080fd5b506102c661061a3660046122e5565b611365565b34801561062b57600080fd5b506102a3600e5481565b34801561064157600080fd5b5061027461065036600461229c565b611443565b34801561066157600080fd5b5061023f61067036600461209c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106aa57600080fd5b506102746106b9366004612081565b611480565b60006001600160e01b0319821663780e9d6360e01b14806106e357506106e382611518565b92915050565b600a546001600160a01b0316331461071c5760405162461bcd60e51b8152600401610713906124d4565b60405180910390fd5b6010805460ff1916911515919091179055565b60606000805461073e906125ff565b80601f016020809104026020016040519081016040528092919081815260200182805461076a906125ff565b80156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661083a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610713565b506000908152600460205260409020546001600160a01b031690565b600061086182610d81565b9050806001600160a01b0316836001600160a01b031614156108cf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610713565b336001600160a01b03821614806108eb57506108eb8133610670565b61095d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610713565b6109678383611568565b505050565b600a546001600160a01b031633146109965760405162461bcd60e51b8152600401610713906124d4565b60005b83811015610a11578282828181106109b3576109b36126ab565b90506020020135601160008787858181106109d0576109d06126ab565b90506020020160208101906109e59190612081565b6001600160a01b0316815260208101919091526040016000205580610a098161263a565b915050610999565b5050505050565b610a2233826115d6565b610a3e5760405162461bcd60e51b815260040161071390612509565b6109678383836116cd565b6000610a5483610e86565b8210610ab65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610713565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b095760405162461bcd60e51b8152600401610713906124d4565b601080549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610b4d5760405162461bcd60e51b8152600401610713906124d4565b6000610b61600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bab576040519150601f19603f3d011682016040523d82523d6000602084013e610bb0565b606091505b5050905080610bbe57600080fd5b50565b61096783838360405180602001604052806000815250611320565b60606000610be983610e86565b905060008167ffffffffffffffff811115610c0657610c066126c1565b604051908082528060200260200182016040528015610c2f578160200160208202803683370190505b50905060005b82811015610c7657610c478582610a49565b828281518110610c5957610c596126ab565b602090810291909101015280610c6e8161263a565b915050610c35565b509392505050565b600a546001600160a01b03163314610ca85760405162461bcd60e51b8152600401610713906124d4565b600d55565b6000610cb860085490565b8210610d1b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610713565b60088281548110610d2e57610d2e6126ab565b90600052602060002001549050919050565b600a546001600160a01b03163314610d6a5760405162461bcd60e51b8152600401610713906124d4565b8051610d7d90600b906020840190611efa565b5050565b6000818152600260205260408120546001600160a01b0316806106e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610713565b600b8054610e05906125ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610e31906125ff565b8015610e7e5780601f10610e5357610100808354040283529160200191610e7e565b820191906000526020600020905b815481529060010190602001808311610e6157829003601f168201915b505050505081565b60006001600160a01b038216610ef15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610713565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f375760405162461bcd60e51b8152600401610713906124d4565b610f416000611878565b565b600a546001600160a01b03163314610f6d5760405162461bcd60e51b8152600401610713906124d4565b600f55565b60606001805461073e906125ff565b60105460ff1615610fcd5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610713565b6000610fd860085490565b90506000821161102a5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610713565b600f548211156110885760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610713565b600e54611095838361255a565b11156110dc5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610713565b600a546001600160a01b031633146111f65760105460ff610100909104161515600114156111a457336000908152601160205260409020546111555760405162461bcd60e51b81526020600482015260126024820152714e6f204d6f72652046726565204d696e747360701b6044820152606401610713565b336000908152601160205260409020548211156111a45760405162461bcd60e51b815260206004820152600d60248201526c546f206d616e79206d696e747360981b6044820152606401610713565b81600d546111b29190612586565b3410156111f65760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610713565b60015b82811161096757336000908152601160205260409020541561123657336000908152601160205260408120805491611230836125e8565b91905055505b61124933611244838561255a565b6118ca565b806112538161263a565b9150506111f9565b6001600160a01b0382163314156112b45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610713565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61132a33836115d6565b6113465760405162461bcd60e51b815260040161071390612509565b611352848484846118e4565b50505050565b600c8054610e05906125ff565b6000818152600260205260409020546060906001600160a01b03166113e45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610713565b60006113ee611917565b9050600081511161140e576040518060200160405280600081525061143c565b8061141884611926565b600c60405160200161142c9392919061232a565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461146d5760405162461bcd60e51b8152600401610713906124d4565b8051610d7d90600c906020840190611efa565b600a546001600160a01b031633146114aa5760405162461bcd60e51b8152600401610713906124d4565b6001600160a01b03811661150f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610713565b610bbe81611878565b60006001600160e01b031982166380ac58cd60e01b148061154957506001600160e01b03198216635b5e139f60e01b145b806106e357506301ffc9a760e01b6001600160e01b03198316146106e3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159d82610d81565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661164f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610713565b600061165a83610d81565b9050806001600160a01b0316846001600160a01b031614806116955750836001600160a01b031661168a846107c1565b6001600160a01b0316145b806116c557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116e082610d81565b6001600160a01b0316146117485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610713565b6001600160a01b0382166117aa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610713565b6117b5838383611a24565b6117c0600082611568565b6001600160a01b03831660009081526003602052604081208054600192906117e99084906125a5565b90915550506001600160a01b038216600090815260036020526040812080546001929061181790849061255a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d7d828260405180602001604052806000815250611adc565b6118ef8484846116cd565b6118fb84848484611b0f565b6113525760405162461bcd60e51b815260040161071390612482565b6060600b805461073e906125ff565b60608161194a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611974578061195e8161263a565b915061196d9050600a83612572565b915061194e565b60008167ffffffffffffffff81111561198f5761198f6126c1565b6040519080825280601f01601f1916602001820160405280156119b9576020820181803683370190505b5090505b84156116c5576119ce6001836125a5565b91506119db600a86612655565b6119e690603061255a565b60f81b8183815181106119fb576119fb6126ab565b60200101906001600160f81b031916908160001a905350611a1d600a86612572565b94506119bd565b6001600160a01b038316611a7f57611a7a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611aa2565b816001600160a01b0316836001600160a01b031614611aa257611aa28382611c1c565b6001600160a01b038216611ab95761096781611cb9565b826001600160a01b0316826001600160a01b031614610967576109678282611d68565b611ae68383611dac565b611af36000848484611b0f565b6109675760405162461bcd60e51b815260040161071390612482565b60006001600160a01b0384163b15611c1157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b539033908990889088906004016123ee565b602060405180830381600087803b158015611b6d57600080fd5b505af1925050508015611b9d575060408051601f3d908101601f19168201909252611b9a9181019061227f565b60015b611bf7573d808015611bcb576040519150601f19603f3d011682016040523d82523d6000602084013e611bd0565b606091505b508051611bef5760405162461bcd60e51b815260040161071390612482565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116c5565b506001949350505050565b60006001611c2984610e86565b611c3391906125a5565b600083815260076020526040902054909150808214611c86576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ccb906001906125a5565b60008381526009602052604081205460088054939450909284908110611cf357611cf36126ab565b906000526020600020015490508060088381548110611d1457611d146126ab565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d4c57611d4c612695565b6001900381819060005260206000200160009055905550505050565b6000611d7383610e86565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610713565b6000818152600260205260409020546001600160a01b031615611e675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610713565b611e7360008383611a24565b6001600160a01b0382166000908152600360205260408120805460019290611e9c90849061255a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f06906125ff565b90600052602060002090601f016020900481019282611f285760008555611f6e565b82601f10611f4157805160ff1916838001178555611f6e565b82800160010185558215611f6e579182015b82811115611f6e578251825591602001919060010190611f53565b50611f7a929150611f7e565b5090565b5b80821115611f7a5760008155600101611f7f565b600067ffffffffffffffff80841115611fae57611fae6126c1565b604051601f8501601f19908116603f01168101908282118183101715611fd657611fd66126c1565b81604052809350858152868686011115611fef57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461202057600080fd5b919050565b60008083601f84011261203757600080fd5b50813567ffffffffffffffff81111561204f57600080fd5b6020830191508360208260051b850101111561206a57600080fd5b9250929050565b8035801515811461202057600080fd5b60006020828403121561209357600080fd5b61143c82612009565b600080604083850312156120af57600080fd5b6120b883612009565b91506120c660208401612009565b90509250929050565b6000806000606084860312156120e457600080fd5b6120ed84612009565b92506120fb60208501612009565b9150604084013590509250925092565b6000806000806080858703121561212157600080fd5b61212a85612009565b935061213860208601612009565b925060408501359150606085013567ffffffffffffffff81111561215b57600080fd5b8501601f8101871361216c57600080fd5b61217b87823560208401611f93565b91505092959194509250565b6000806040838503121561219a57600080fd5b6121a383612009565b91506120c660208401612071565b600080604083850312156121c457600080fd5b6121cd83612009565b946020939093013593505050565b600080600080604085870312156121f157600080fd5b843567ffffffffffffffff8082111561220957600080fd5b61221588838901612025565b9096509450602087013591508082111561222e57600080fd5b5061223b87828801612025565b95989497509550505050565b60006020828403121561225957600080fd5b61143c82612071565b60006020828403121561227457600080fd5b813561143c816126d7565b60006020828403121561229157600080fd5b815161143c816126d7565b6000602082840312156122ae57600080fd5b813567ffffffffffffffff8111156122c557600080fd5b8201601f810184136122d657600080fd5b6116c584823560208401611f93565b6000602082840312156122f757600080fd5b5035919050565b600081518084526123168160208601602086016125bc565b601f01601f19169290920160200192915050565b60008451602061233d8285838a016125bc565b8551918401916123508184848a016125bc565b8554920191600090600181811c908083168061236d57607f831692505b85831081141561238b57634e487b7160e01b85526022600452602485fd5b80801561239f57600181146123b0576123dd565b60ff198516885283880195506123dd565b60008b81526020902060005b858110156123d55781548a8201529084019088016123bc565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612421908301846122fe565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561246357835183529284019291840191600101612447565b50909695505050505050565b60208152600061143c60208301846122fe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561256d5761256d612669565b500190565b6000826125815761258161267f565b500490565b60008160001904831182151516156125a0576125a0612669565b500290565b6000828210156125b7576125b7612669565b500390565b60005b838110156125d75781810151838201526020016125bf565b838111156113525750506000910152565b6000816125f7576125f7612669565b506000190190565b600181811c9082168061261357607f821691505b6020821081141561263457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561264e5761264e612669565b5060010190565b6000826126645761266461267f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bbe57600080fdfea2646970667358221220a86a3d2dbd6804a928414a5355e083416bc4d4643fee03350cc3814094acac7264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000066368696c6c6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000066368696c6c6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): chilla
Arg [1] : _symbol (string): c
Arg [2] : _initBaseURI (string): /
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 6368696c6c610000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 6300000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 2f00000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
43349:3428:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34862:224;;;;;;;;;;-1:-1:-1;34862:224:0;;;;;:::i;:::-;;:::i;:::-;;;8957:14:1;;8950:22;8932:41;;8920:2;8905:18;34862:224:0;;;;;;;;46215:73;;;;;;;;;;-1:-1:-1;46215:73:0;;;;;:::i;:::-;;:::i;:::-;;43685:55;;;;;;;;;;-1:-1:-1;43685:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;19060:25:1;;;19048:2;19033:18;43685:55:0;18914:177:1;22705:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24272:222::-;;;;;;;;;;-1:-1:-1;24272:222:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7618:32:1;;;7600:51;;7588:2;7573:18;24272:222:0;7454:203:1;23792:413:0;;;;;;;;;;-1:-1:-1;23792:413:0;;;;;:::i;:::-;;:::i;43504:29::-;;;;;;;;;;;;;;;;35504:113;;;;;;;;;;-1:-1:-1;35592:10:0;:17;35504:113;;46399:214;;;;;;;;;;-1:-1:-1;46399:214:0;;;;;:::i;:::-;;:::i;43575:34::-;;;;;;;;;;;;;;;;25167:340;;;;;;;;;;-1:-1:-1;25167:340:0;;;;;:::i;:::-;;:::i;35171:256::-;;;;;;;;;;-1:-1:-1;35171:256:0;;;;;:::i;:::-;;:::i;46296:95::-;;;;;;;;;;-1:-1:-1;46296:95:0;;;;;:::i;:::-;;:::i;46620:154::-;;;:::i;25579:185::-;;;;;;;;;;-1:-1:-1;25579:185:0;;;;;:::i;:::-;;:::i;44987:348::-;;;;;;;;;;-1:-1:-1;44987:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45770:80::-;;;;;;;;;;-1:-1:-1;45770:80:0;;;;;:::i;:::-;;:::i;35695:233::-;;;;;;;;;;-1:-1:-1;35695:233:0;;;;;:::i;:::-;;:::i;45980:98::-;;;;;;;;;;-1:-1:-1;45980:98:0;;;;;:::i;:::-;;:::i;43614:26::-;;;;;;;;;;-1:-1:-1;43614:26:0;;;;;;;;22398:239;;;;;;;;;;-1:-1:-1;22398:239:0;;;;;:::i;:::-;;:::i;43436:21::-;;;;;;;;;;;;;:::i;22127:208::-;;;;;;;;;;-1:-1:-1;22127:208:0;;;;;:::i;:::-;;:::i;42675:94::-;;;;;;;;;;;;;:::i;45857:116::-;;;;;;;;;;-1:-1:-1;45857:116:0;;;;;:::i;:::-;;:::i;42022:87::-;;;;;;;;;;-1:-1:-1;42095:6:0;;-1:-1:-1;;;;;42095:6:0;42022:87;;22875:104;;;;;;;;;;;;;:::i;43645:35::-;;;;;;;;;;-1:-1:-1;43645:35:0;;;;;;;;;;;44066:914;;;;;;:::i;:::-;;:::i;24567:296::-;;;;;;;;;;-1:-1:-1;24567:296:0;;;;;:::i;:::-;;:::i;25836:328::-;;;;;;;;;;-1:-1:-1;25836:328:0;;;;;:::i;:::-;;:::i;43462:37::-;;;;;;;;;;;;;:::i;45342:402::-;;;;;;;;;;-1:-1:-1;45342:402:0;;;;;:::i;:::-;;:::i;43538:32::-;;;;;;;;;;;;;;;;46085:122;;;;;;;;;;-1:-1:-1;46085:122:0;;;;;:::i;:::-;;:::i;24935:164::-;;;;;;;;;;-1:-1:-1;24935:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25056:25:0;;;25032:4;25056:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24935:164;42925:192;;;;;;;;;;-1:-1:-1;42925:192:0;;;;;:::i;:::-;;:::i;34862:224::-;34964:4;-1:-1:-1;;;;;;34988:50:0;;-1:-1:-1;;;34988:50:0;;:90;;;35042:36;35066:11;35042:23;:36::i;:::-;34981:97;34862:224;-1:-1:-1;;34862:224:0:o;46215:73::-;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;;;;;;;;;46267:6:::1;:15:::0;;-1:-1:-1;;46267:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46215:73::o;22705:100::-;22759:13;22792:5;22785:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22705:100;:::o;24272:222::-;24348:7;27765:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27765:16:0;24368:73;;;;-1:-1:-1;;;24368:73:0;;14540:2:1;24368:73:0;;;14522:21:1;14579:2;14559:18;;;14552:30;14618:34;14598:18;;;14591:62;-1:-1:-1;;;14669:18:1;;;14662:42;14721:19;;24368:73:0;14338:408:1;24368:73:0;-1:-1:-1;24462:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24462:24:0;;24272:222::o;23792:413::-;23873:13;23889:23;23904:7;23889:14;:23::i;:::-;23873:39;;23937:5;-1:-1:-1;;;;;23931:11:0;:2;-1:-1:-1;;;;;23931:11:0;;;23923:57;;;;-1:-1:-1;;;23923:57:0;;16491:2:1;23923:57:0;;;16473:21:1;16530:2;16510:18;;;16503:30;16569:34;16549:18;;;16542:62;-1:-1:-1;;;16620:18:1;;;16613:31;16661:19;;23923:57:0;16289:397:1;23923:57:0;20300:10;-1:-1:-1;;;;;24016:21:0;;;;:62;;-1:-1:-1;24041:37:0;24058:5;20300:10;24935:164;:::i;24041:37::-;23994:168;;;;-1:-1:-1;;;23994:168:0;;12177:2:1;23994:168:0;;;12159:21:1;12216:2;12196:18;;;12189:30;12255:34;12235:18;;;12228:62;12326:26;12306:18;;;12299:54;12370:19;;23994:168:0;11975:420:1;23994:168:0;24176:21;24185:2;24189:7;24176:8;:21::i;:::-;23862:343;23792:413;;:::o;46399:214::-;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;46507:9:::1;46502:106;46522:17:::0;;::::1;46502:106;;;46590:7;;46598:1;46590:10;;;;;;;:::i;:::-;;;;;;;46556:20;:31;46577:6;;46584:1;46577:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46556:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46556:31:0;:44;46541:3;::::1;::::0;::::1;:::i;:::-;;;;46502:106;;;;46399:214:::0;;;;:::o;25167:340::-;25362:41;20300:10;25395:7;25362:18;:41::i;:::-;25354:103;;;;-1:-1:-1;;;25354:103:0;;;;;;;:::i;:::-;25471:28;25481:4;25487:2;25491:7;25471:9;:28::i;35171:256::-;35268:7;35304:23;35321:5;35304:16;:23::i;:::-;35296:5;:31;35288:87;;;;-1:-1:-1;;;35288:87:0;;9410:2:1;35288:87:0;;;9392:21:1;9449:2;9429:18;;;9422:30;9488:34;9468:18;;;9461:62;-1:-1:-1;;;9539:18:1;;;9532:41;9590:19;;35288:87:0;9208:407:1;35288:87:0;-1:-1:-1;;;;;;35393:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35171:256::o;46296:95::-;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;46361:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;46361:24:0;;::::1;::::0;;;::::1;::::0;;46296:95::o;46620:154::-;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;46676:7:::1;46697;42095:6:::0;;-1:-1:-1;;;;;42095:6:0;;42022:87;46697:7:::1;-1:-1:-1::0;;;;;46689:21:0::1;46718;46689:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46675:69;;;46759:2;46751:11;;;::::0;::::1;;46665:109;46620:154::o:0;25579:185::-;25717:39;25734:4;25740:2;25744:7;25717:39;;;;;;;;;;;;:16;:39::i;44987:348::-;45062:16;45090:23;45116:17;45126:6;45116:9;:17::i;:::-;45090:43;;45140:25;45182:15;45168:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45168:30:0;;45140:58;;45210:9;45205:103;45225:15;45221:1;:19;45205:103;;;45270:30;45290:6;45298:1;45270:19;:30::i;:::-;45256:8;45265:1;45256:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45242:3;;;;:::i;:::-;;;;45205:103;;;-1:-1:-1;45321:8:0;44987:348;-1:-1:-1;;;44987:348:0:o;45770:80::-;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;45829:4:::1;:15:::0;45770:80::o;35695:233::-;35770:7;35806:30;35592:10;:17;;35504:113;35806:30;35798:5;:38;35790:95;;;;-1:-1:-1;;;35790:95:0;;18005:2:1;35790:95:0;;;17987:21:1;18044:2;18024:18;;;18017:30;18083:34;18063:18;;;18056:62;-1:-1:-1;;;18134:18:1;;;18127:42;18186:19;;35790:95:0;17803:408:1;35790:95:0;35903:10;35914:5;35903:17;;;;;;;;:::i;:::-;;;;;;;;;35896:24;;35695:233;;;:::o;45980:98::-;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;46051:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45980:98:::0;:::o;22398:239::-;22470:7;22506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22506:16:0;22541:19;22533:73;;;;-1:-1:-1;;;22533:73:0;;13013:2:1;22533:73:0;;;12995:21:1;13052:2;13032:18;;;13025:30;13091:34;13071:18;;;13064:62;-1:-1:-1;;;13142:18:1;;;13135:39;13191:19;;22533:73:0;12811:405:1;43436:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22127:208::-;22199:7;-1:-1:-1;;;;;22227:19:0;;22219:74;;;;-1:-1:-1;;;22219:74:0;;12602:2:1;22219:74:0;;;12584:21:1;12641:2;12621:18;;;12614:30;12680:34;12660:18;;;12653:62;-1:-1:-1;;;12731:18:1;;;12724:40;12781:19;;22219:74:0;12400:406:1;22219:74:0;-1:-1:-1;;;;;;22311:16:0;;;;;:9;:16;;;;;;;22127:208::o;42675:94::-;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;42740:21:::1;42758:1;42740:9;:21::i;:::-;42675:94::o:0;45857:116::-;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;45934:13:::1;:33:::0;45857:116::o;22875:104::-;22931:13;22964:7;22957:14;;;;;:::i;44066:914::-;44132:6;;;;44131:7;44123:42;;;;-1:-1:-1;;;44123:42:0;;15314:2:1;44123:42:0;;;15296:21:1;15353:2;15333:18;;;15326:30;-1:-1:-1;;;15372:18:1;;;15365:52;15434:18;;44123:42:0;15112:346:1;44123:42:0;44172:14;44189:13;35592:10;:17;;35504:113;44189:13;44172:30;;44231:1;44217:11;:15;44209:55;;;;-1:-1:-1;;;44209:55:0;;18760:2:1;44209:55:0;;;18742:21:1;18799:2;18779:18;;;18772:30;18838:29;18818:18;;;18811:57;18885:18;;44209:55:0;18558:351:1;44209:55:0;44294:13;;44279:11;:28;;44271:77;;;;-1:-1:-1;;;44271:77:0;;13774:2:1;44271:77:0;;;13756:21:1;13813:2;13793:18;;;13786:30;13852:34;13832:18;;;13825:62;-1:-1:-1;;;13903:18:1;;;13896:34;13947:19;;44271:77:0;13572:400:1;44271:77:0;44387:9;;44363:20;44372:11;44363:6;:20;:::i;:::-;:33;;44355:68;;;;-1:-1:-1;;;44355:68:0;;13423:2:1;44355:68:0;;;13405:21:1;13462:2;13442:18;;;13435:30;-1:-1:-1;;;13481:18:1;;;13474:52;13543:18;;44355:68:0;13221:346:1;44355:68:0;42095:6;;-1:-1:-1;;;;;42095:6:0;44437:10;:21;44433:332;;44474:15;;;;;;;;:23;;:15;:23;44471:210;;;44543:10;44557:1;44522:32;;;:20;:32;;;;;;44514:67;;;;-1:-1:-1;;;44514:67:0;;17658:2:1;44514:67:0;;;17640:21:1;17697:2;17677:18;;;17670:30;-1:-1:-1;;;17716:18:1;;;17709:48;17774:18;;44514:67:0;17456:342:1;44514:67:0;44625:10;44604:32;;;;:20;:32;;;;;;:47;-1:-1:-1;44604:47:0;44596:73;;;;-1:-1:-1;;;44596:73:0;;18418:2:1;44596:73:0;;;18400:21:1;18457:2;18437:18;;;18430:30;-1:-1:-1;;;18476:18:1;;;18469:43;18529:18;;44596:73:0;18216:337:1;44596:73:0;44723:11;44716:4;;:18;;;;:::i;:::-;44703:9;:31;;44695:62;;;;-1:-1:-1;;;44695:62:0;;16893:2:1;44695:62:0;;;16875:21:1;16932:2;16912:18;;;16905:30;-1:-1:-1;;;16951:18:1;;;16944:48;17009:18;;44695:62:0;16691:342:1;44695:62:0;44794:1;44777:198;44802:11;44797:1;:16;44777:198;;44855:10;44869:1;44834:32;;;:20;:32;;;;;;:36;44830:96;;44902:10;44881:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;44830:96;44934:33;44944:10;44956;44965:1;44956:6;:10;:::i;:::-;44934:9;:33::i;:::-;44815:3;;;;:::i;:::-;;;;44777:198;;24567:296;-1:-1:-1;;;;;24670:24:0;;20300:10;24670:24;;24662:62;;;;-1:-1:-1;;;24662:62:0;;11410:2:1;24662:62:0;;;11392:21:1;11449:2;11429:18;;;11422:30;11488:27;11468:18;;;11461:55;11533:18;;24662:62:0;11208:349:1;24662:62:0;20300:10;24738:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24738:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24738:53:0;;;;;;;;;;24807:48;;8932:41:1;;;24738:42:0;;20300:10;24807:48;;8905:18:1;24807:48:0;;;;;;;24567:296;;:::o;25836:328::-;26011:41;20300:10;26044:7;26011:18;:41::i;:::-;26003:103;;;;-1:-1:-1;;;26003:103:0;;;;;;;:::i;:::-;26117:39;26131:4;26137:2;26141:7;26150:5;26117:13;:39::i;:::-;25836:328;;;;:::o;43462:37::-;;;;;;;:::i;45342:402::-;27741:4;27765:16;;;:7;:16;;;;;;45415:13;;-1:-1:-1;;;;;27765:16:0;45440:97;;;;-1:-1:-1;;;45440:97:0;;16075:2:1;45440:97:0;;;16057:21:1;16114:2;16094:18;;;16087:30;16153:34;16133:18;;;16126:62;-1:-1:-1;;;16204:18:1;;;16197:45;16259:19;;45440:97:0;15873:411:1;45440:97:0;45550:28;45581:10;:8;:10::i;:::-;45550:41;;45636:1;45611:14;45605:28;:32;:133;;;;;;;;;;;;;;;;;45673:14;45689:18;:7;:16;:18::i;:::-;45709:13;45656:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45605:133;45598:140;45342:402;-1:-1:-1;;;45342:402:0:o;46085:122::-;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;46168:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;42925:192::-:0;42095:6;;-1:-1:-1;;;;;42095:6:0;20300:10;42243:23;42235:68;;;;-1:-1:-1;;;42235:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43014:22:0;::::1;43006:73;;;::::0;-1:-1:-1;;;43006:73:0;;10241:2:1;43006:73:0::1;::::0;::::1;10223:21:1::0;10280:2;10260:18;;;10253:30;10319:34;10299:18;;;10292:62;-1:-1:-1;;;10370:18:1;;;10363:36;10416:19;;43006:73:0::1;10039:402:1::0;43006:73:0::1;43090:19;43100:8;43090:9;:19::i;21757:305::-:0;21859:4;-1:-1:-1;;;;;;21896:40:0;;-1:-1:-1;;;21896:40:0;;:105;;-1:-1:-1;;;;;;;21953:48:0;;-1:-1:-1;;;21953:48:0;21896:105;:158;;;-1:-1:-1;;;;;;;;;;7642:40:0;;;22018:36;7533:157;31676:174;31751:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31751:29:0;-1:-1:-1;;;;;31751:29:0;;;;;;;;:24;;31805:23;31751:24;31805:14;:23::i;:::-;-1:-1:-1;;;;;31796:46:0;;;;;;;;;;;31676:174;;:::o;27971:348::-;28064:4;27765:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27765:16:0;28081:73;;;;-1:-1:-1;;;28081:73:0;;11764:2:1;28081:73:0;;;11746:21:1;11803:2;11783:18;;;11776:30;11842:34;11822:18;;;11815:62;-1:-1:-1;;;11893:18:1;;;11886:42;11945:19;;28081:73:0;11562:408:1;28081:73:0;28165:13;28181:23;28196:7;28181:14;:23::i;:::-;28165:39;;28234:5;-1:-1:-1;;;;;28223:16:0;:7;-1:-1:-1;;;;;28223:16:0;;:51;;;;28267:7;-1:-1:-1;;;;;28243:31:0;:20;28255:7;28243:11;:20::i;:::-;-1:-1:-1;;;;;28243:31:0;;28223:51;:87;;;-1:-1:-1;;;;;;25056:25:0;;;25032:4;25056:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28278:32;28215:96;27971:348;-1:-1:-1;;;;27971:348:0:o;30975:582::-;31134:4;-1:-1:-1;;;;;31107:31:0;:23;31122:7;31107:14;:23::i;:::-;-1:-1:-1;;;;;31107:31:0;;31099:85;;;;-1:-1:-1;;;31099:85:0;;15665:2:1;31099:85:0;;;15647:21:1;15704:2;15684:18;;;15677:30;15743:34;15723:18;;;15716:62;-1:-1:-1;;;15794:18:1;;;15787:39;15843:19;;31099:85:0;15463:405:1;31099:85:0;-1:-1:-1;;;;;31203:16:0;;31195:65;;;;-1:-1:-1;;;31195:65:0;;11005:2:1;31195:65:0;;;10987:21:1;11044:2;11024:18;;;11017:30;11083:34;11063:18;;;11056:62;-1:-1:-1;;;11134:18:1;;;11127:34;11178:19;;31195:65:0;10803:400:1;31195:65:0;31274:39;31295:4;31301:2;31305:7;31274:20;:39::i;:::-;31379:29;31396:1;31400:7;31379:8;:29::i;:::-;-1:-1:-1;;;;;31422:15:0;;;;;;:9;:15;;;;;:20;;31441:1;;31422:15;:20;;31441:1;;31422:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31453:13:0;;;;;;:9;:13;;;;;:18;;31470:1;;31453:13;:18;;31470:1;;31453:18;:::i;:::-;;;;-1:-1:-1;;31482:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31482:21:0;-1:-1:-1;;;;;31482:21:0;;;;;;;;;31522:27;;31482:16;;31522:27;;;;;;;30975:582;;;:::o;43126:173::-;43201:6;;;-1:-1:-1;;;;;43218:17:0;;;-1:-1:-1;;;;;;43218:17:0;;;;;;;43251:40;;43201:6;;;43218:17;43201:6;;43251:40;;43182:16;;43251:40;43171:128;43126:173;:::o;28662:110::-;28738:26;28748:2;28752:7;28738:26;;;;;;;;;;;;:9;:26::i;27047:315::-;27204:28;27214:4;27220:2;27224:7;27204:9;:28::i;:::-;27251:48;27274:4;27280:2;27284:7;27293:5;27251:22;:48::i;:::-;27243:111;;;;-1:-1:-1;;;27243:111:0;;;;;;;:::i;43944:102::-;44004:13;44033:7;44026:14;;;;;:::i;8014:724::-;8070:13;8292:10;8288:53;;-1:-1:-1;;8319:10:0;;;;;;;;;;;;-1:-1:-1;;;8319:10:0;;;;;8014:724::o;8288:53::-;8366:5;8351:12;8407:78;8414:9;;8407:78;;8440:8;;;;:::i;:::-;;-1:-1:-1;8463:10:0;;-1:-1:-1;8471:2:0;8463:10;;:::i;:::-;;;8407:78;;;8495:19;8527:6;8517:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8517:17:0;;8495:39;;8545:154;8552:10;;8545:154;;8579:11;8589:1;8579:11;;:::i;:::-;;-1:-1:-1;8648:10:0;8656:2;8648:5;:10;:::i;:::-;8635:24;;:2;:24;:::i;:::-;8622:39;;8605:6;8612;8605:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8605:56:0;;;;;;;;-1:-1:-1;8676:11:0;8685:2;8676:11;;:::i;:::-;;;8545:154;;36542:590;-1:-1:-1;;;;;36749:18:0;;36745:187;;36784:40;36816:7;37961:10;:17;;37934:24;;;;:15;:24;;;;;:44;;;37989:24;;;;;;;;;;;;37857:164;36784:40;36745:187;;;36854:2;-1:-1:-1;;;;;36846:10:0;:4;-1:-1:-1;;;;;36846:10:0;;36842:90;;36873:47;36906:4;36912:7;36873:32;:47::i;:::-;-1:-1:-1;;;;;36946:16:0;;36942:183;;36979:45;37016:7;36979:36;:45::i;36942:183::-;37052:4;-1:-1:-1;;;;;37046:10:0;:2;-1:-1:-1;;;;;37046:10:0;;37042:83;;37073:40;37101:2;37105:7;37073:27;:40::i;29000:321::-;29130:18;29136:2;29140:7;29130:5;:18::i;:::-;29181:54;29212:1;29216:2;29220:7;29229:5;29181:22;:54::i;:::-;29159:154;;;;-1:-1:-1;;;29159:154:0;;;;;;;:::i;32416:799::-;32571:4;-1:-1:-1;;;;;32592:13:0;;10871:20;10919:8;32588:620;;32628:72;;-1:-1:-1;;;32628:72:0;;-1:-1:-1;;;;;32628:36:0;;;;;:72;;20300:10;;32679:4;;32685:7;;32694:5;;32628:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32628:72:0;;;;;;;;-1:-1:-1;;32628:72:0;;;;;;;;;;;;:::i;:::-;;;32624:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32870:13:0;;32866:272;;32913:60;;-1:-1:-1;;;32913:60:0;;;;;;;:::i;32866:272::-;33088:6;33082:13;33073:6;33069:2;33065:15;33058:38;32624:529;-1:-1:-1;;;;;;32751:51:0;-1:-1:-1;;;32751:51:0;;-1:-1:-1;32744:58:0;;32588:620;-1:-1:-1;33192:4:0;32416:799;;;;;;:::o;38649:992::-;38916:22;38966:1;38941:22;38958:4;38941:16;:22::i;:::-;:26;;;;:::i;:::-;38978:18;38999:26;;;:17;:26;;;;;;38916:51;;-1:-1:-1;39133:28:0;;;39129:329;;-1:-1:-1;;;;;39200:18:0;;39178:19;39200:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39252:30;;;;;;:44;;;39369:30;;:17;:30;;;;;:43;;;39129:329;-1:-1:-1;39555:26:0;;;;:17;:26;;;;;;;;39548:33;;;-1:-1:-1;;;;;39599:18:0;;;;;:12;:18;;;;;:34;;;;;;;39592:41;38649:992::o;39937:1083::-;40216:10;:17;40191:22;;40216:21;;40236:1;;40216:21;:::i;:::-;40248:18;40269:24;;;:15;:24;;;;;;40643:10;:26;;40191:46;;-1:-1:-1;40269:24:0;;40191:46;;40643:26;;;;;;:::i;:::-;;;;;;;;;40621:48;;40708:11;40683:10;40694;40683:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40788:28;;;:15;:28;;;;;;;:41;;;40961:24;;;;;40954:31;40996:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40008:1012;;;39937:1083;:::o;37434:221::-;37519:14;37536:20;37553:2;37536:16;:20::i;:::-;-1:-1:-1;;;;;37567:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37612:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37434:221:0:o;29658:385::-;-1:-1:-1;;;;;29738:16:0;;29730:61;;;;-1:-1:-1;;;29730:61:0;;14179:2:1;29730:61:0;;;14161:21:1;;;14198:18;;;14191:30;14257:34;14237:18;;;14230:62;14309:18;;29730:61:0;13977:356:1;29730:61:0;27741:4;27765:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27765:16:0;:30;29802:58;;;;-1:-1:-1;;;29802:58:0;;10648:2:1;29802:58:0;;;10630:21:1;10687:2;10667:18;;;10660:30;10726;10706:18;;;10699:58;10774:18;;29802:58:0;10446:352:1;29802:58:0;29874:45;29903:1;29907:2;29911:7;29874:20;:45::i;:::-;-1:-1:-1;;;;;29933:13:0;;;;;;:9;:13;;;;;:18;;29950:1;;29933:13;:18;;29950:1;;29933:18;:::i;:::-;;;;-1:-1:-1;;29962:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29962:21:0;-1:-1:-1;;;;;29962:21:0;;;;;;;;30002:33;;29962:16;;;30002:33;;29962:16;;30002:33;29658:385;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;2581:18;2573:6;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:773::-;3465:6;3473;3481;3489;3542:2;3530:9;3521:7;3517:23;3513:32;3510:52;;;3558:1;3555;3548:12;3510:52;3598:9;3585:23;3627:18;3668:2;3660:6;3657:14;3654:34;;;3684:1;3681;3674:12;3654:34;3723:70;3785:7;3776:6;3765:9;3761:22;3723:70;:::i;:::-;3812:8;;-1:-1:-1;3697:96:1;-1:-1:-1;3900:2:1;3885:18;;3872:32;;-1:-1:-1;3916:16:1;;;3913:36;;;3945:1;3942;3935:12;3913:36;;3984:72;4048:7;4037:8;4026:9;4022:24;3984:72;:::i;:::-;3343:773;;;;-1:-1:-1;4075:8:1;-1:-1:-1;;;;3343:773:1:o;4121:180::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:26;4285:9;4269:26;:::i;4306:245::-;4364:6;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:30;4515:5;4491:30;:::i;4556:249::-;4625:6;4678:2;4666:9;4657:7;4653:23;4649:32;4646:52;;;4694:1;4691;4684:12;4646:52;4726:9;4720:16;4745:30;4769:5;4745:30;:::i;4810:450::-;4879:6;4932:2;4920:9;4911:7;4907:23;4903:32;4900:52;;;4948:1;4945;4938:12;4900:52;4988:9;4975:23;5021:18;5013:6;5010:30;5007:50;;;5053:1;5050;5043:12;5007:50;5076:22;;5129:4;5121:13;;5117:27;-1:-1:-1;5107:55:1;;5158:1;5155;5148:12;5107:55;5181:73;5246:7;5241:2;5228:16;5223:2;5219;5215:11;5181:73;:::i;5265:180::-;5324:6;5377:2;5365:9;5356:7;5352:23;5348:32;5345:52;;;5393:1;5390;5383:12;5345:52;-1:-1:-1;5416:23:1;;5265:180;-1:-1:-1;5265:180:1:o;5450:257::-;5491:3;5529:5;5523:12;5556:6;5551:3;5544:19;5572:63;5628:6;5621:4;5616:3;5612:14;5605:4;5598:5;5594:16;5572:63;:::i;:::-;5689:2;5668:15;-1:-1:-1;;5664:29:1;5655:39;;;;5696:4;5651:50;;5450:257;-1:-1:-1;;5450:257:1:o;5712:1527::-;5936:3;5974:6;5968:13;6000:4;6013:51;6057:6;6052:3;6047:2;6039:6;6035:15;6013:51;:::i;:::-;6127:13;;6086:16;;;;6149:55;6127:13;6086:16;6171:15;;;6149:55;:::i;:::-;6293:13;;6226:20;;;6266:1;;6353;6375:18;;;;6428;;;;6455:93;;6533:4;6523:8;6519:19;6507:31;;6455:93;6596:2;6586:8;6583:16;6563:18;6560:40;6557:167;;;-1:-1:-1;;;6623:33:1;;6679:4;6676:1;6669:15;6709:4;6630:3;6697:17;6557:167;6740:18;6767:110;;;;6891:1;6886:328;;;;6733:481;;6767:110;-1:-1:-1;;6802:24:1;;6788:39;;6847:20;;;;-1:-1:-1;6767:110:1;;6886:328;19169:1;19162:14;;;19206:4;19193:18;;6981:1;6995:169;7009:8;7006:1;7003:15;6995:169;;;7091:14;;7076:13;;;7069:37;7134:16;;;;7026:10;;6995:169;;;6999:3;;7195:8;7188:5;7184:20;7177:27;;6733:481;-1:-1:-1;7230:3:1;;5712:1527;-1:-1:-1;;;;;;;;;;;5712:1527:1:o;7662:488::-;-1:-1:-1;;;;;7931:15:1;;;7913:34;;7983:15;;7978:2;7963:18;;7956:43;8030:2;8015:18;;8008:34;;;8078:3;8073:2;8058:18;;8051:31;;;7856:4;;8099:45;;8124:19;;8116:6;8099:45;:::i;:::-;8091:53;7662:488;-1:-1:-1;;;;;;7662:488:1:o;8155:632::-;8326:2;8378:21;;;8448:13;;8351:18;;;8470:22;;;8297:4;;8326:2;8549:15;;;;8523:2;8508:18;;;8297:4;8592:169;8606:6;8603:1;8600:13;8592:169;;;8667:13;;8655:26;;8736:15;;;;8701:12;;;;8628:1;8621:9;8592:169;;;-1:-1:-1;8778:3:1;;8155:632;-1:-1:-1;;;;;;8155:632:1:o;8984:219::-;9133:2;9122:9;9115:21;9096:4;9153:44;9193:2;9182:9;9178:18;9170:6;9153:44;:::i;9620:414::-;9822:2;9804:21;;;9861:2;9841:18;;;9834:30;9900:34;9895:2;9880:18;;9873:62;-1:-1:-1;;;9966:2:1;9951:18;;9944:48;10024:3;10009:19;;9620:414::o;14751:356::-;14953:2;14935:21;;;14972:18;;;14965:30;15031:34;15026:2;15011:18;;15004:62;15098:2;15083:18;;14751:356::o;17038:413::-;17240:2;17222:21;;;17279:2;17259:18;;;17252:30;17318:34;17313:2;17298:18;;17291:62;-1:-1:-1;;;17384:2:1;17369:18;;17362:47;17441:3;17426:19;;17038:413::o;19222:128::-;19262:3;19293:1;19289:6;19286:1;19283:13;19280:39;;;19299:18;;:::i;:::-;-1:-1:-1;19335:9:1;;19222:128::o;19355:120::-;19395:1;19421;19411:35;;19426:18;;:::i;:::-;-1:-1:-1;19460:9:1;;19355:120::o;19480:168::-;19520:7;19586:1;19582;19578:6;19574:14;19571:1;19568:21;19563:1;19556:9;19549:17;19545:45;19542:71;;;19593:18;;:::i;:::-;-1:-1:-1;19633:9:1;;19480:168::o;19653:125::-;19693:4;19721:1;19718;19715:8;19712:34;;;19726:18;;:::i;:::-;-1:-1:-1;19763:9:1;;19653:125::o;19783:258::-;19855:1;19865:113;19879:6;19876:1;19873:13;19865:113;;;19955:11;;;19949:18;19936:11;;;19929:39;19901:2;19894:10;19865:113;;;19996:6;19993:1;19990:13;19987:48;;;-1:-1:-1;;20031:1:1;20013:16;;20006:27;19783:258::o;20046:136::-;20085:3;20113:5;20103:39;;20122:18;;:::i;:::-;-1:-1:-1;;;20158:18:1;;20046:136::o;20187:380::-;20266:1;20262:12;;;;20309;;;20330:61;;20384:4;20376:6;20372:17;20362:27;;20330:61;20437:2;20429:6;20426:14;20406:18;20403:38;20400:161;;;20483:10;20478:3;20474:20;20471:1;20464:31;20518:4;20515:1;20508:15;20546:4;20543:1;20536:15;20400:161;;20187:380;;;:::o;20572:135::-;20611:3;-1:-1:-1;;20632:17:1;;20629:43;;;20652:18;;:::i;:::-;-1:-1:-1;20699:1:1;20688:13;;20572:135::o;20712:112::-;20744:1;20770;20760:35;;20775:18;;:::i;:::-;-1:-1:-1;20809:9:1;;20712:112::o;20829:127::-;20890:10;20885:3;20881:20;20878:1;20871:31;20921:4;20918:1;20911:15;20945:4;20942:1;20935:15;20961:127;21022:10;21017:3;21013:20;21010:1;21003:31;21053:4;21050:1;21043:15;21077:4;21074:1;21067:15;21093:127;21154:10;21149:3;21145:20;21142:1;21135:31;21185:4;21182:1;21175:15;21209:4;21206:1;21199:15;21225:127;21286:10;21281:3;21277:20;21274:1;21267:31;21317:4;21314:1;21307:15;21341:4;21338:1;21331:15;21357:127;21418:10;21413:3;21409:20;21406:1;21399:31;21449:4;21446:1;21439:15;21473:4;21470:1;21463:15;21489:131;-1:-1:-1;;;;;;21563:32:1;;21553:43;;21543:71;;21610:1;21607;21600:12
Swarm Source
ipfs://a86a3d2dbd6804a928414a5355e083416bc4d4643fee03350cc3814094acac72
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|