Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 63 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 18860373 | 802 days ago | IN | 0 ETH | 0.00066157 | ||||
| Withdraw | 16767429 | 1096 days ago | IN | 0 ETH | 0.00084565 | ||||
| Set Approval For... | 16733578 | 1101 days ago | IN | 0 ETH | 0.00110024 | ||||
| Mint | 16733573 | 1101 days ago | IN | 0 ETH | 0.00182057 | ||||
| Mint | 16733457 | 1101 days ago | IN | 0 ETH | 0.00205428 | ||||
| Mint | 16733380 | 1101 days ago | IN | 0.006 ETH | 0.00243871 | ||||
| Mint | 16733337 | 1101 days ago | IN | 0 ETH | 0.00182539 | ||||
| Mint | 16733334 | 1101 days ago | IN | 0 ETH | 0.00209976 | ||||
| Mint | 16733333 | 1101 days ago | IN | 0.01 ETH | 0.0021534 | ||||
| Mint | 16733331 | 1101 days ago | IN | 0 ETH | 0.00204706 | ||||
| Mint | 16733326 | 1101 days ago | IN | 0.006 ETH | 0.00221808 | ||||
| Mint | 16733324 | 1101 days ago | IN | 0 ETH | 0.00212306 | ||||
| Set Public Sale | 16733283 | 1101 days ago | IN | 0 ETH | 0.00116613 | ||||
| Set Free Limit P... | 16733282 | 1101 days ago | IN | 0 ETH | 0.00072252 | ||||
| Set Max Limit Pe... | 16733281 | 1101 days ago | IN | 0 ETH | 0.00067194 | ||||
| Set Price | 16733269 | 1101 days ago | IN | 0 ETH | 0.00124318 | ||||
| Set Public Sale | 16732099 | 1101 days ago | IN | 0 ETH | 0.00043847 | ||||
| Mint | 16729164 | 1102 days ago | IN | 0 ETH | 0.00213927 | ||||
| Mint | 16728887 | 1102 days ago | IN | 0 ETH | 0.0028359 | ||||
| Admin Mint | 16728869 | 1102 days ago | IN | 0 ETH | 0.00368677 | ||||
| Set Max Limit Pe... | 16728867 | 1102 days ago | IN | 0 ETH | 0.0009576 | ||||
| Set Free Limit P... | 16728860 | 1102 days ago | IN | 0 ETH | 0.00076611 | ||||
| Mint | 16728845 | 1102 days ago | IN | 0 ETH | 0.00275509 | ||||
| Set Free Limit P... | 16728845 | 1102 days ago | IN | 0 ETH | 0.00087944 | ||||
| Mint | 16728788 | 1102 days ago | IN | 0 ETH | 0.0030981 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16767429 | 1096 days ago | 0.022 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
IamGroot
Compiler Version
v0.8.8+commit.dddeac2f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-02-28
*/
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: contracts/ERC721A.sol
// Creator: Chiru Labs
pragma solidity ^0.8.4;
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 1;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberMinted);
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberBurned);
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return _addressData[owner].aux;
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
_addressData[owner].aux = aux;
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSender()) revert ApproveToCaller();
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
_transfer(from, to, tokenId);
if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex != end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex != end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 quantity) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex != end);
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
address from = prevOwnership.addr;
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
AddressData storage addressData = _addressData[from];
addressData.balance -= 1;
addressData.numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = from;
currSlot.startTimestamp = uint64(block.timestamp);
currSlot.burned = true;
// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
// File: contracts/CryptoPepenuts.sol
pragma solidity ^0.8.0;
contract IamGroot is ERC721A, Ownable, ReentrancyGuard {
using Address for address;
using Strings for uint;
string public baseTokenURI = "";
uint256 public maxSupply = 2000;
uint256 public MAX_MINTS_PER_TX = 5;
uint256 public PUBLIC_SALE_PRICE = 0.002 ether;
uint256 public NUM_FREE_MINTS = 2000;
uint256 public MAX_FREE_PER_WALLET = 1;
uint256 public freeNFTAlreadyMinted = 0;
bool public isPublicSaleActive = false;
constructor(
) ERC721A("IamGroot", "GROOT") {
}
function mint(uint256 numberOfTokens)
external
payable
{
require(isPublicSaleActive, "Public sale is not open");
require(totalSupply() + numberOfTokens < maxSupply + 1, "No more");
if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){
require(
(PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
"Incorrect ETH value sent"
);
} else {
if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
require(
(PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
"Incorrect ETH value sent"
);
require(
numberOfTokens <= MAX_MINTS_PER_TX,
"Max mints per transaction exceeded"
);
} else {
require(
numberOfTokens <= MAX_FREE_PER_WALLET,
"Max mints per transaction exceeded"
);
freeNFTAlreadyMinted += numberOfTokens;
}
}
_safeMint(msg.sender, numberOfTokens);
}
function setBaseURI(string memory baseURI)
public
onlyOwner
{
baseTokenURI = baseURI;
}
function adminMint(uint quantity)
public
onlyOwner
{
require(
quantity > 0,
"Invalid mint amount"
);
require(
totalSupply() + quantity <= maxSupply,
"Maximum supply exceeded"
);
_safeMint(msg.sender, quantity);
}
function withdraw()
public
onlyOwner
nonReentrant
{
Address.sendValue(payable(msg.sender), address(this).balance);
}
function tokenURI(uint _tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(_tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
return string(abi.encodePacked(baseTokenURI, _tokenId.toString(), ".json"));
}
function _baseURI()
internal
view
virtual
override
returns (string memory)
{
return baseTokenURI;
}
function setPublicSale(bool _isPublicSaleActive)
external
onlyOwner
{
isPublicSaleActive = _isPublicSaleActive;
}
function setNumFreeMints(uint256 _numfreemints)
external
onlyOwner
{
NUM_FREE_MINTS = _numfreemints;
}
function setPrice(uint256 _price)
external
onlyOwner
{
PUBLIC_SALE_PRICE = _price;
}
function setMaxLimitPerTransaction(uint256 _limit)
external
onlyOwner
{
MAX_MINTS_PER_TX = _limit;
}
function setFreeLimitPerWallet(uint256 _limit)
external
onlyOwner
{
MAX_FREE_PER_WALLET = _limit;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b92919062000236565b506107d0600b556005600c5566071afd498d0000600d556107d0600e556001600f5560006010556000601160006101000a81548160ff0219169083151502179055503480156200007a57600080fd5b506040518060400160405280600881526020017f49616d47726f6f740000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47524f4f540000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ff92919062000236565b5080600390805190602001906200011892919062000236565b50620001296200015f60201b60201c565b600081905550505062000151620001456200016860201b60201c565b6200017060201b60201c565b60016009819055506200034b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002449062000315565b90600052602060002090601f016020900481019282620002685760008555620002b4565b82601f106200028357805160ff1916838001178555620002b4565b82800160010185558215620002b4579182015b82811115620002b357825182559160200191906001019062000296565b5b509050620002c39190620002c7565b5090565b5b80821115620002e2576000816000905550600101620002c8565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032e57607f821691505b60208210811415620003455762000344620002e6565b5b50919050565b613d60806200035b6000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106d6578063d547cfb714610713578063d5abeb011461073e578063e985e9c514610769578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c1f2612314610682578063c6a91b42146106ab576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b8063715018a6146104ff5780638da5cb5b1461051657806391b7f5ed1461054157806395d89b411461056a576101f9565b80631e84c4131161019057806342842e0e1161015f57806342842e0e1461040a57806355f804b3146104335780635aca1bb61461045c5780636352211e1461048557806370a08231146104c2576101f9565b80631e84c41314610376578063202f298a146103a157806323b872dd146103ca5780633ccfd60b146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd14610320578063193ad7b41461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c23565b6107cf565b6040516102329190612c6b565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d1f565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d5a565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612da1565b610949565b6040516102c59190612e0f565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e56565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612da1565b610ad0565b005b34801561032c57600080fd5b50610335610b56565b6040516103429190612d5a565b60405180910390f35b34801561035757600080fd5b50610360610b6d565b60405161036d9190612d5a565b60405180910390f35b34801561038257600080fd5b5061038b610b73565b6040516103989190612c6b565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190612da1565b610b86565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612e96565b610c0c565b005b3480156103ff57600080fd5b50610408610c1c565b005b34801561041657600080fd5b50610431600480360381019061042c9190612e96565b610cfa565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061301e565b610d1a565b005b34801561046857600080fd5b50610483600480360381019061047e9190613093565b610db0565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612da1565b610e49565b6040516104b99190612e0f565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906130c0565b610e5f565b6040516104f69190612d5a565b60405180910390f35b34801561050b57600080fd5b50610514610f2f565b005b34801561052257600080fd5b5061052b610fb7565b6040516105389190612e0f565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612da1565b610fe1565b005b34801561057657600080fd5b5061057f611067565b60405161058c9190612d1f565b60405180910390f35b3480156105a157600080fd5b506105aa6110f9565b6040516105b79190612d5a565b60405180910390f35b3480156105cc57600080fd5b506105d56110ff565b6040516105e29190612d5a565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612da1565b611105565b005b61062e60048036038101906106299190612da1565b61118b565b005b34801561063c57600080fd5b50610657600480360381019061065291906130ed565b6113cc565b005b34801561066557600080fd5b50610680600480360381019061067b91906131ce565b611544565b005b34801561068e57600080fd5b506106a960048036038101906106a49190612da1565b6115c0565b005b3480156106b757600080fd5b506106c06116e3565b6040516106cd9190612d5a565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612da1565b6116e9565b60405161070a9190612d1f565b60405180910390f35b34801561071f57600080fd5b50610728611765565b6040516107359190612d1f565b60405180910390f35b34801561074a57600080fd5b506107536117f3565b6040516107609190612d5a565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190613251565b6117f9565b60405161079d9190612c6b565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906130c0565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c0906132c0565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132c0565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610e49565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6117f9565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b610ad8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610af6610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b439061333e565b60405180910390fd5b80600e8190555050565b6000610b60611af7565b6001546000540303905090565b60105481565b601160009054906101000a900460ff1681565b610b8e611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610bac610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf99061333e565b60405180910390fd5b80600f8190555050565b610c17838383611b00565b505050565b610c24611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c42610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f9061333e565b60405180910390fd5b60026009541415610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd5906133aa565b60405180910390fd5b6002600981905550610cf03347611fb6565b6001600981905550565b610d1583838360405180602001604052806000815250611544565b505050565b610d22611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610d40610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d9061333e565b60405180910390fd5b80600a9080519060200190610dac929190612ad1565b5050565b610db8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610dd6610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061333e565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610e54826120aa565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f37611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610f55610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061333e565b60405180910390fd5b610fb56000612339565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fe9611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611007610fb7565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110549061333e565b60405180910390fd5b80600d8190555050565b606060038054611076906132c0565b80601f01602080910402602001604051908101604052809291908181526020018280546110a2906132c0565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110d611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661112b610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061333e565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613416565b60405180910390fd5b6001600b546111e99190613465565b816111f2610b56565b6111fc9190613465565b1061123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613507565b60405180910390fd5b600e548160105461124d9190613465565b11156112a8573481600d546112629190613527565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906135cd565b60405180910390fd5b6113bf565b600f54816112b533610e5f565b6112bf9190613465565b111561135f573481600d546112d49190613527565b1115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906135cd565b60405180910390fd5b600c5481111561135a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113519061365f565b60405180910390fd5b6113be565b600f548111156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b9061365f565b60405180910390fd5b80601060008282546113b69190613465565b925050819055505b5b6113c933826123ff565b50565b6113d4611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611446611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f3611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115389190612c6b565b60405180910390a35050565b61154f848484611b00565b61156e8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611583575061158184848484612440565b155b156115ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6115c8611a3d565b73ffffffffffffffffffffffffffffffffffffffff166115e6610fb7565b73ffffffffffffffffffffffffffffffffffffffff161461163c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116339061333e565b60405180910390fd5b6000811161167f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676906136cb565b60405180910390fd5b600b548161168b610b56565b6116959190613465565b11156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613737565b60405180910390fd5b6116e033826123ff565b50565b600c5481565b60606116f4826119ef565b611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a906137c9565b60405180910390fd5b600a61173e836125a0565b60405160200161174f929190613905565b6040516020818303038152906040529050919050565b600a8054611772906132c0565b80601f016020809104026020016040519081016040528092919081815260200182805461179e906132c0565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b3610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061333e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906139a6565b60405180910390fd5b61198281612339565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120aa565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6117f9565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb88585856001612701565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf8585856001612707565b5050505050565b80471015611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613a12565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201f90613a63565b60006040518083038185875af1925050503d806000811461205c576040519150601f19603f3d011682016040523d82523d6000602084013e612061565b606091505b50509050806120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613aea565b60405180910390fd5b505050565b6120b2612b57565b6000829050806120c0611af7565b111580156120cf575060005481105b15612302576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e4578092505050612334565b5b6001156122ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122fa578092505050612334565b6121e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61241982826040518060200160405280600081525061270d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b81526004016124889493929190613b5f565b602060405180830381600087803b1580156124a257600080fd5b505af19250505080156124d357506040513d601f19601f820116820180604052508101906124d09190613bc0565b60015b61254d573d8060008114612503576040519150601f19603f3d011682016040523d82523d6000602084013e612508565b606091505b50600081511415612545576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fc565b600082905060005b6000821461261a57808061260390613bed565b915050600a826126139190613c65565b91506125f0565b60008167ffffffffffffffff81111561263657612635612ef3565b5b6040519080825280601f01601f1916602001820160405280156126685781602001600182028036833780820191505090505b5090505b600085146126f5576001826126819190613c96565b9150600a856126909190613cca565b603061269c9190613465565b60f81b8183815181106126b2576126b1613cfb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ee9190613c65565b945061266c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c26000858386612701565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129838673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a49575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129f86000878480600101955087612440565b612a2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612989578260005414612a4457600080fd5b612ab5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a4a575b816000819055505050612acb6000858386612707565b50505050565b828054612add906132c0565b90600052602060002090601f016020900481019282612aff5760008555612b46565b82601f10612b1857805160ff1916838001178555612b46565b82800160010185558215612b46579182015b82811115612b45578251825591602001919060010190612b2a565b5b509050612b539190612b9a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bb3576000816000905550600101612b9b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0081612bcb565b8114612c0b57600080fd5b50565b600081359050612c1d81612bf7565b92915050565b600060208284031215612c3957612c38612bc1565b5b6000612c4784828501612c0e565b91505092915050565b60008115159050919050565b612c6581612c50565b82525050565b6000602082019050612c806000830184612c5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cc0578082015181840152602081019050612ca5565b83811115612ccf576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cf182612c86565b612cfb8185612c91565b9350612d0b818560208601612ca2565b612d1481612cd5565b840191505092915050565b60006020820190508181036000830152612d398184612ce6565b905092915050565b6000819050919050565b612d5481612d41565b82525050565b6000602082019050612d6f6000830184612d4b565b92915050565b612d7e81612d41565b8114612d8957600080fd5b50565b600081359050612d9b81612d75565b92915050565b600060208284031215612db757612db6612bc1565b5b6000612dc584828501612d8c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612df982612dce565b9050919050565b612e0981612dee565b82525050565b6000602082019050612e246000830184612e00565b92915050565b612e3381612dee565b8114612e3e57600080fd5b50565b600081359050612e5081612e2a565b92915050565b60008060408385031215612e6d57612e6c612bc1565b5b6000612e7b85828601612e41565b9250506020612e8c85828601612d8c565b9150509250929050565b600080600060608486031215612eaf57612eae612bc1565b5b6000612ebd86828701612e41565b9350506020612ece86828701612e41565b9250506040612edf86828701612d8c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f2b82612cd5565b810181811067ffffffffffffffff82111715612f4a57612f49612ef3565b5b80604052505050565b6000612f5d612bb7565b9050612f698282612f22565b919050565b600067ffffffffffffffff821115612f8957612f88612ef3565b5b612f9282612cd5565b9050602081019050919050565b82818337600083830152505050565b6000612fc1612fbc84612f6e565b612f53565b905082815260208101848484011115612fdd57612fdc612eee565b5b612fe8848285612f9f565b509392505050565b600082601f83011261300557613004612ee9565b5b8135613015848260208601612fae565b91505092915050565b60006020828403121561303457613033612bc1565b5b600082013567ffffffffffffffff81111561305257613051612bc6565b5b61305e84828501612ff0565b91505092915050565b61307081612c50565b811461307b57600080fd5b50565b60008135905061308d81613067565b92915050565b6000602082840312156130a9576130a8612bc1565b5b60006130b78482850161307e565b91505092915050565b6000602082840312156130d6576130d5612bc1565b5b60006130e484828501612e41565b91505092915050565b6000806040838503121561310457613103612bc1565b5b600061311285828601612e41565b92505060206131238582860161307e565b9150509250929050565b600067ffffffffffffffff82111561314857613147612ef3565b5b61315182612cd5565b9050602081019050919050565b600061317161316c8461312d565b612f53565b90508281526020810184848401111561318d5761318c612eee565b5b613198848285612f9f565b509392505050565b600082601f8301126131b5576131b4612ee9565b5b81356131c584826020860161315e565b91505092915050565b600080600080608085870312156131e8576131e7612bc1565b5b60006131f687828801612e41565b945050602061320787828801612e41565b935050604061321887828801612d8c565b925050606085013567ffffffffffffffff81111561323957613238612bc6565b5b613245878288016131a0565b91505092959194509250565b6000806040838503121561326857613267612bc1565b5b600061327685828601612e41565b925050602061328785828601612e41565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132d857607f821691505b602082108114156132ec576132eb613291565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613328602083612c91565b9150613333826132f2565b602082019050919050565b600060208201905081810360008301526133578161331b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613394601f83612c91565b915061339f8261335e565b602082019050919050565b600060208201905081810360008301526133c381613387565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000613400601783612c91565b915061340b826133ca565b602082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347082612d41565b915061347b83612d41565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b0576134af613436565b5b828201905092915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006134f1600783612c91565b91506134fc826134bb565b602082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b600061353282612d41565b915061353d83612d41565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561357657613575613436565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b60006135b7601883612c91565b91506135c282613581565b602082019050919050565b600060208201905081810360008301526135e6816135aa565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613649602283612c91565b9150613654826135ed565b604082019050919050565b600060208201905081810360008301526136788161363c565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006136b5601383612c91565b91506136c08261367f565b602082019050919050565b600060208201905081810360008301526136e4816136a8565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613721601783612c91565b915061372c826136eb565b602082019050919050565b6000602082019050818103600083015261375081613714565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137b3602f83612c91565b91506137be82613757565b604082019050919050565b600060208201905081810360008301526137e2816137a6565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613816816132c0565b61382081866137e9565b9450600182166000811461383b576001811461384c5761387f565b60ff1983168652818601935061387f565b613855856137f4565b60005b8381101561387757815481890152600182019150602081019050613858565b838801955050505b50505092915050565b600061389382612c86565b61389d81856137e9565b93506138ad818560208601612ca2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138ef6005836137e9565b91506138fa826138b9565b600582019050919050565b60006139118285613809565b915061391d8284613888565b9150613928826138e2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613990602683612c91565b915061399b82613934565b604082019050919050565b600060208201905081810360008301526139bf81613983565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006139fc601d83612c91565b9150613a07826139c6565b602082019050919050565b60006020820190508181036000830152613a2b816139ef565b9050919050565b600081905092915050565b50565b6000613a4d600083613a32565b9150613a5882613a3d565b600082019050919050565b6000613a6e82613a40565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613ad4603a83612c91565b9150613adf82613a78565b604082019050919050565b60006020820190508181036000830152613b0381613ac7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b3182613b0a565b613b3b8185613b15565b9350613b4b818560208601612ca2565b613b5481612cd5565b840191505092915050565b6000608082019050613b746000830187612e00565b613b816020830186612e00565b613b8e6040830185612d4b565b8181036060830152613ba08184613b26565b905095945050505050565b600081519050613bba81612bf7565b92915050565b600060208284031215613bd657613bd5612bc1565b5b6000613be484828501613bab565b91505092915050565b6000613bf882612d41565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c2b57613c2a613436565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c7082612d41565b9150613c7b83612d41565b925082613c8b57613c8a613c36565b5b828204905092915050565b6000613ca182612d41565b9150613cac83612d41565b925082821015613cbf57613cbe613436565b5b828203905092915050565b6000613cd582612d41565b9150613ce083612d41565b925082613cf057613cef613c36565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122053145b6c25c7857a266e2c07e74674d979a16e9e5b9573596e7a8eababe8b90464736f6c63430008080033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106d6578063d547cfb714610713578063d5abeb011461073e578063e985e9c514610769578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c1f2612314610682578063c6a91b42146106ab576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b8063715018a6146104ff5780638da5cb5b1461051657806391b7f5ed1461054157806395d89b411461056a576101f9565b80631e84c4131161019057806342842e0e1161015f57806342842e0e1461040a57806355f804b3146104335780635aca1bb61461045c5780636352211e1461048557806370a08231146104c2576101f9565b80631e84c41314610376578063202f298a146103a157806323b872dd146103ca5780633ccfd60b146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd14610320578063193ad7b41461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c23565b6107cf565b6040516102329190612c6b565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d1f565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d5a565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612da1565b610949565b6040516102c59190612e0f565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e56565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612da1565b610ad0565b005b34801561032c57600080fd5b50610335610b56565b6040516103429190612d5a565b60405180910390f35b34801561035757600080fd5b50610360610b6d565b60405161036d9190612d5a565b60405180910390f35b34801561038257600080fd5b5061038b610b73565b6040516103989190612c6b565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190612da1565b610b86565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612e96565b610c0c565b005b3480156103ff57600080fd5b50610408610c1c565b005b34801561041657600080fd5b50610431600480360381019061042c9190612e96565b610cfa565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061301e565b610d1a565b005b34801561046857600080fd5b50610483600480360381019061047e9190613093565b610db0565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612da1565b610e49565b6040516104b99190612e0f565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906130c0565b610e5f565b6040516104f69190612d5a565b60405180910390f35b34801561050b57600080fd5b50610514610f2f565b005b34801561052257600080fd5b5061052b610fb7565b6040516105389190612e0f565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612da1565b610fe1565b005b34801561057657600080fd5b5061057f611067565b60405161058c9190612d1f565b60405180910390f35b3480156105a157600080fd5b506105aa6110f9565b6040516105b79190612d5a565b60405180910390f35b3480156105cc57600080fd5b506105d56110ff565b6040516105e29190612d5a565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612da1565b611105565b005b61062e60048036038101906106299190612da1565b61118b565b005b34801561063c57600080fd5b50610657600480360381019061065291906130ed565b6113cc565b005b34801561066557600080fd5b50610680600480360381019061067b91906131ce565b611544565b005b34801561068e57600080fd5b506106a960048036038101906106a49190612da1565b6115c0565b005b3480156106b757600080fd5b506106c06116e3565b6040516106cd9190612d5a565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612da1565b6116e9565b60405161070a9190612d1f565b60405180910390f35b34801561071f57600080fd5b50610728611765565b6040516107359190612d1f565b60405180910390f35b34801561074a57600080fd5b506107536117f3565b6040516107609190612d5a565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190613251565b6117f9565b60405161079d9190612c6b565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906130c0565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c0906132c0565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132c0565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610e49565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6117f9565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b610ad8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610af6610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b439061333e565b60405180910390fd5b80600e8190555050565b6000610b60611af7565b6001546000540303905090565b60105481565b601160009054906101000a900460ff1681565b610b8e611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610bac610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf99061333e565b60405180910390fd5b80600f8190555050565b610c17838383611b00565b505050565b610c24611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c42610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f9061333e565b60405180910390fd5b60026009541415610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd5906133aa565b60405180910390fd5b6002600981905550610cf03347611fb6565b6001600981905550565b610d1583838360405180602001604052806000815250611544565b505050565b610d22611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610d40610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d9061333e565b60405180910390fd5b80600a9080519060200190610dac929190612ad1565b5050565b610db8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610dd6610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061333e565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610e54826120aa565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f37611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610f55610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061333e565b60405180910390fd5b610fb56000612339565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fe9611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611007610fb7565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110549061333e565b60405180910390fd5b80600d8190555050565b606060038054611076906132c0565b80601f01602080910402602001604051908101604052809291908181526020018280546110a2906132c0565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110d611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661112b610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061333e565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613416565b60405180910390fd5b6001600b546111e99190613465565b816111f2610b56565b6111fc9190613465565b1061123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613507565b60405180910390fd5b600e548160105461124d9190613465565b11156112a8573481600d546112629190613527565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906135cd565b60405180910390fd5b6113bf565b600f54816112b533610e5f565b6112bf9190613465565b111561135f573481600d546112d49190613527565b1115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906135cd565b60405180910390fd5b600c5481111561135a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113519061365f565b60405180910390fd5b6113be565b600f548111156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b9061365f565b60405180910390fd5b80601060008282546113b69190613465565b925050819055505b5b6113c933826123ff565b50565b6113d4611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611446611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f3611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115389190612c6b565b60405180910390a35050565b61154f848484611b00565b61156e8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611583575061158184848484612440565b155b156115ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6115c8611a3d565b73ffffffffffffffffffffffffffffffffffffffff166115e6610fb7565b73ffffffffffffffffffffffffffffffffffffffff161461163c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116339061333e565b60405180910390fd5b6000811161167f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676906136cb565b60405180910390fd5b600b548161168b610b56565b6116959190613465565b11156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613737565b60405180910390fd5b6116e033826123ff565b50565b600c5481565b60606116f4826119ef565b611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a906137c9565b60405180910390fd5b600a61173e836125a0565b60405160200161174f929190613905565b6040516020818303038152906040529050919050565b600a8054611772906132c0565b80601f016020809104026020016040519081016040528092919081815260200182805461179e906132c0565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b3610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061333e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906139a6565b60405180910390fd5b61198281612339565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120aa565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6117f9565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb88585856001612701565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf8585856001612707565b5050505050565b80471015611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613a12565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201f90613a63565b60006040518083038185875af1925050503d806000811461205c576040519150601f19603f3d011682016040523d82523d6000602084013e612061565b606091505b50509050806120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613aea565b60405180910390fd5b505050565b6120b2612b57565b6000829050806120c0611af7565b111580156120cf575060005481105b15612302576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e4578092505050612334565b5b6001156122ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122fa578092505050612334565b6121e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61241982826040518060200160405280600081525061270d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b81526004016124889493929190613b5f565b602060405180830381600087803b1580156124a257600080fd5b505af19250505080156124d357506040513d601f19601f820116820180604052508101906124d09190613bc0565b60015b61254d573d8060008114612503576040519150601f19603f3d011682016040523d82523d6000602084013e612508565b606091505b50600081511415612545576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fc565b600082905060005b6000821461261a57808061260390613bed565b915050600a826126139190613c65565b91506125f0565b60008167ffffffffffffffff81111561263657612635612ef3565b5b6040519080825280601f01601f1916602001820160405280156126685781602001600182028036833780820191505090505b5090505b600085146126f5576001826126819190613c96565b9150600a856126909190613cca565b603061269c9190613465565b60f81b8183815181106126b2576126b1613cfb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ee9190613c65565b945061266c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c26000858386612701565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129838673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a49575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129f86000878480600101955087612440565b612a2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612989578260005414612a4457600080fd5b612ab5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a4a575b816000819055505050612acb6000858386612707565b50505050565b828054612add906132c0565b90600052602060002090601f016020900481019282612aff5760008555612b46565b82601f10612b1857805160ff1916838001178555612b46565b82800160010185558215612b46579182015b82811115612b45578251825591602001919060010190612b2a565b5b509050612b539190612b9a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bb3576000816000905550600101612b9b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0081612bcb565b8114612c0b57600080fd5b50565b600081359050612c1d81612bf7565b92915050565b600060208284031215612c3957612c38612bc1565b5b6000612c4784828501612c0e565b91505092915050565b60008115159050919050565b612c6581612c50565b82525050565b6000602082019050612c806000830184612c5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cc0578082015181840152602081019050612ca5565b83811115612ccf576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cf182612c86565b612cfb8185612c91565b9350612d0b818560208601612ca2565b612d1481612cd5565b840191505092915050565b60006020820190508181036000830152612d398184612ce6565b905092915050565b6000819050919050565b612d5481612d41565b82525050565b6000602082019050612d6f6000830184612d4b565b92915050565b612d7e81612d41565b8114612d8957600080fd5b50565b600081359050612d9b81612d75565b92915050565b600060208284031215612db757612db6612bc1565b5b6000612dc584828501612d8c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612df982612dce565b9050919050565b612e0981612dee565b82525050565b6000602082019050612e246000830184612e00565b92915050565b612e3381612dee565b8114612e3e57600080fd5b50565b600081359050612e5081612e2a565b92915050565b60008060408385031215612e6d57612e6c612bc1565b5b6000612e7b85828601612e41565b9250506020612e8c85828601612d8c565b9150509250929050565b600080600060608486031215612eaf57612eae612bc1565b5b6000612ebd86828701612e41565b9350506020612ece86828701612e41565b9250506040612edf86828701612d8c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f2b82612cd5565b810181811067ffffffffffffffff82111715612f4a57612f49612ef3565b5b80604052505050565b6000612f5d612bb7565b9050612f698282612f22565b919050565b600067ffffffffffffffff821115612f8957612f88612ef3565b5b612f9282612cd5565b9050602081019050919050565b82818337600083830152505050565b6000612fc1612fbc84612f6e565b612f53565b905082815260208101848484011115612fdd57612fdc612eee565b5b612fe8848285612f9f565b509392505050565b600082601f83011261300557613004612ee9565b5b8135613015848260208601612fae565b91505092915050565b60006020828403121561303457613033612bc1565b5b600082013567ffffffffffffffff81111561305257613051612bc6565b5b61305e84828501612ff0565b91505092915050565b61307081612c50565b811461307b57600080fd5b50565b60008135905061308d81613067565b92915050565b6000602082840312156130a9576130a8612bc1565b5b60006130b78482850161307e565b91505092915050565b6000602082840312156130d6576130d5612bc1565b5b60006130e484828501612e41565b91505092915050565b6000806040838503121561310457613103612bc1565b5b600061311285828601612e41565b92505060206131238582860161307e565b9150509250929050565b600067ffffffffffffffff82111561314857613147612ef3565b5b61315182612cd5565b9050602081019050919050565b600061317161316c8461312d565b612f53565b90508281526020810184848401111561318d5761318c612eee565b5b613198848285612f9f565b509392505050565b600082601f8301126131b5576131b4612ee9565b5b81356131c584826020860161315e565b91505092915050565b600080600080608085870312156131e8576131e7612bc1565b5b60006131f687828801612e41565b945050602061320787828801612e41565b935050604061321887828801612d8c565b925050606085013567ffffffffffffffff81111561323957613238612bc6565b5b613245878288016131a0565b91505092959194509250565b6000806040838503121561326857613267612bc1565b5b600061327685828601612e41565b925050602061328785828601612e41565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132d857607f821691505b602082108114156132ec576132eb613291565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613328602083612c91565b9150613333826132f2565b602082019050919050565b600060208201905081810360008301526133578161331b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613394601f83612c91565b915061339f8261335e565b602082019050919050565b600060208201905081810360008301526133c381613387565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000613400601783612c91565b915061340b826133ca565b602082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347082612d41565b915061347b83612d41565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b0576134af613436565b5b828201905092915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006134f1600783612c91565b91506134fc826134bb565b602082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b600061353282612d41565b915061353d83612d41565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561357657613575613436565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b60006135b7601883612c91565b91506135c282613581565b602082019050919050565b600060208201905081810360008301526135e6816135aa565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613649602283612c91565b9150613654826135ed565b604082019050919050565b600060208201905081810360008301526136788161363c565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006136b5601383612c91565b91506136c08261367f565b602082019050919050565b600060208201905081810360008301526136e4816136a8565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613721601783612c91565b915061372c826136eb565b602082019050919050565b6000602082019050818103600083015261375081613714565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137b3602f83612c91565b91506137be82613757565b604082019050919050565b600060208201905081810360008301526137e2816137a6565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613816816132c0565b61382081866137e9565b9450600182166000811461383b576001811461384c5761387f565b60ff1983168652818601935061387f565b613855856137f4565b60005b8381101561387757815481890152600182019150602081019050613858565b838801955050505b50505092915050565b600061389382612c86565b61389d81856137e9565b93506138ad818560208601612ca2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138ef6005836137e9565b91506138fa826138b9565b600582019050919050565b60006139118285613809565b915061391d8284613888565b9150613928826138e2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613990602683612c91565b915061399b82613934565b604082019050919050565b600060208201905081810360008301526139bf81613983565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006139fc601d83612c91565b9150613a07826139c6565b602082019050919050565b60006020820190508181036000830152613a2b816139ef565b9050919050565b600081905092915050565b50565b6000613a4d600083613a32565b9150613a5882613a3d565b600082019050919050565b6000613a6e82613a40565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613ad4603a83612c91565b9150613adf82613a78565b604082019050919050565b60006020820190508181036000830152613b0381613ac7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b3182613b0a565b613b3b8185613b15565b9350613b4b818560208601612ca2565b613b5481612cd5565b840191505092915050565b6000608082019050613b746000830187612e00565b613b816020830186612e00565b613b8e6040830185612d4b565b8181036060830152613ba08184613b26565b905095945050505050565b600081519050613bba81612bf7565b92915050565b600060208284031215613bd657613bd5612bc1565b5b6000613be484828501613bab565b91505092915050565b6000613bf882612d41565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c2b57613c2a613436565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c7082612d41565b9150613c7b83612d41565b925082613c8b57613c8a613c36565b5b828204905092915050565b6000613ca182612d41565b9150613cac83612d41565b925082821015613cbf57613cbe613436565b5b828203905092915050565b6000613cd582612d41565b9150613ce083612d41565b925082613cf057613cef613c36565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122053145b6c25c7857a266e2c07e74674d979a16e9e5b9573596e7a8eababe8b90464736f6c63430008080033
Deployed Bytecode Sourcemap
48648:3247:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29756:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48886:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34372:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33935:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51381:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29005:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49024:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49068:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51766:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35237:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50633:142;;;;;;;;;;;;;:::i;:::-;;35478:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50232:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51235:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32677:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30125:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51516:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33038:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48938:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48980:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51633:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49178:1048;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34648:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35734:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50346:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48845:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50781:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48769:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48807;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35006:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29756:305;29858:4;29910:25;29895:40;;;:11;:40;;;;:105;;;;29967:33;29952:48;;;:11;:48;;;;29895:105;:158;;;;30017:36;30041:11;30017:23;:36::i;:::-;29895:158;29875:178;;29756:305;;;:::o;32869:100::-;32923:13;32956:5;32949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32869:100;:::o;48886:47::-;;;;:::o;34372:204::-;34440:7;34465:16;34473:7;34465;:16::i;:::-;34460:64;;34490:34;;;;;;;;;;;;;;34460:64;34544:15;:24;34560:7;34544:24;;;;;;;;;;;;;;;;;;;;;34537:31;;34372:204;;;:::o;33935:371::-;34008:13;34024:24;34040:7;34024:15;:24::i;:::-;34008:40;;34069:5;34063:11;;:2;:11;;;34059:48;;;34083:24;;;;;;;;;;;;;;34059:48;34140:5;34124:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34150:37;34167:5;34174:12;:10;:12::i;:::-;34150:16;:37::i;:::-;34149:38;34124:63;34120:138;;;34211:35;;;;;;;;;;;;;;34120:138;34270:28;34279:2;34283:7;34292:5;34270:8;:28::i;:::-;33997:309;33935:371;;:::o;51381:129::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51491:13:::1;51474:14;:30;;;;51381:129:::0;:::o;29005:303::-;29049:7;29274:15;:13;:15::i;:::-;29259:12;;29243:13;;:28;:46;29236:53;;29005:303;:::o;49024:39::-;;;;:::o;49068:38::-;;;;;;;;;;;;;:::o;51766:126::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51880:6:::1;51858:19;:28;;;;51766:126:::0;:::o;35237:170::-;35371:28;35381:4;35387:2;35391:7;35371:9;:28::i;:::-;35237:170;;;:::o;50633:142::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;50708:61:::2;50734:10;50747:21;50708:17;:61::i;:::-;1801:1:::1;2755:7;:22;;;;50633:142::o:0;35478:185::-;35616:39;35633:4;35639:2;35643:7;35616:39;;;;;;;;;;;;:16;:39::i;:::-;35478:185;;;:::o;50232:108::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50327:7:::1;50312:12;:22;;;;;;;;;;;;:::i;:::-;;50232:108:::0;:::o;51235:140::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51350:19:::1;51329:18;;:40;;;;;;;;;;;;;;;;;;51235:140:::0;:::o;32677:125::-;32741:7;32768:21;32781:7;32768:12;:21::i;:::-;:26;;;32761:33;;32677:125;;;:::o;30125:206::-;30189:7;30230:1;30213:19;;:5;:19;;;30209:60;;;30241:28;;;;;;;;;;;;;;30209:60;30295:12;:19;30308:5;30295:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30287:36;;30280:43;;30125:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;51516:111::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51615:6:::1;51595:17;:26;;;;51516:111:::0;:::o;33038:104::-;33094:13;33127:7;33120:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33038:104;:::o;48938:37::-;;;;:::o;48980:39::-;;;;:::o;51633:127::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51748:6:::1;51729:16;:25;;;;51633:127:::0;:::o;49178:1048::-;49265:18;;;;;;;;;;;49257:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49371:1;49359:9;;:13;;;;:::i;:::-;49342:14;49326:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;49318:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49436:14;;49419;49396:20;;:37;;;;:::i;:::-;:54;49393:784;;;49524:9;49505:14;49485:17;;:34;;;;:::i;:::-;49484:49;;49462:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49393:784;;;49655:19;;49638:14;49614:21;49624:10;49614:9;:21::i;:::-;:38;;;;:::i;:::-;:60;49610:560;;;49749:9;49730:14;49710:17;;:34;;;;:::i;:::-;49709:49;;49687:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49861:16;;49843:14;:34;;49821:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49610:560;;;50016:19;;49998:14;:37;;49972:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;50144:14;50120:20;;:38;;;;;;;:::i;:::-;;;;;;;;49610:560;49393:784;50183:37;50193:10;50205:14;50183:9;:37::i;:::-;49178:1048;:::o;34648:287::-;34759:12;:10;:12::i;:::-;34747:24;;:8;:24;;;34743:54;;;34780:17;;;;;;;;;;;;;;34743:54;34855:8;34810:18;:32;34829:12;:10;:12::i;:::-;34810:32;;;;;;;;;;;;;;;:42;34843:8;34810:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34908:8;34879:48;;34894:12;:10;:12::i;:::-;34879:48;;;34918:8;34879:48;;;;;;:::i;:::-;;;;;;;;34648:287;;:::o;35734:369::-;35901:28;35911:4;35917:2;35921:7;35901:9;:28::i;:::-;35944:15;:2;:13;;;:15::i;:::-;:76;;;;;35964:56;35995:4;36001:2;36005:7;36014:5;35964:30;:56::i;:::-;35963:57;35944:76;35940:156;;;36044:40;;;;;;;;;;;;;;35940:156;35734:369;;;;:::o;50346:281::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50444:1:::1;50433:8;:12;50417:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50533:9;;50521:8;50505:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;50489:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50590:31;50600:10;50612:8;50590:9;:31::i;:::-;50346:281:::0;:::o;48845:36::-;;;;:::o;50781:307::-;50877:13;50918:17;50926:8;50918:7;:17::i;:::-;50902:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51038:12;51052:19;:8;:17;:19::i;:::-;51021:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51007:75;;50781:307;;;:::o;48769:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48807:::-;;;;:::o;35006:164::-;35103:4;35127:18;:25;35146:5;35127:25;;;;;;;;;;;;;;;:35;35153:8;35127:35;;;;;;;;;;;;;;;;;;;;;;;;;35120:42;;35006:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;;;7861:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;19655:157::-;19740:4;19779:25;19764:40;;;:11;:40;;;;19757:47;;19655:157;;;:::o;36358:174::-;36415:4;36458:7;36439:15;:13;:15::i;:::-;:26;;:53;;;;;36479:13;;36469:7;:23;36439:53;:85;;;;;36497:11;:20;36509:7;36497:20;;;;;;;;;;;:27;;;;;;;;;;;;36496:28;36439:85;36432:92;;36358:174;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;45584:196::-;45726:2;45699:15;:24;45715:7;45699:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45764:7;45760:2;45744:28;;45753:5;45744:28;;;;;;;;;;;;45584:196;;;:::o;28779:92::-;28835:7;28862:1;28855:8;;28779:92;:::o;40532:2130::-;40647:35;40685:21;40698:7;40685:12;:21::i;:::-;40647:59;;40745:4;40723:26;;:13;:18;;;:26;;;40719:67;;40758:28;;;;;;;;;;;;;;40719:67;40799:22;40841:4;40825:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40862:36;40879:4;40885:12;:10;:12::i;:::-;40862:16;:36::i;:::-;40825:73;:126;;;;40939:12;:10;:12::i;:::-;40915:36;;:20;40927:7;40915:11;:20::i;:::-;:36;;;40825:126;40799:153;;40970:17;40965:66;;40996:35;;;;;;;;;;;;;;40965:66;41060:1;41046:16;;:2;:16;;;41042:52;;;41071:23;;;;;;;;;;;;;;41042:52;41107:43;41129:4;41135:2;41139:7;41148:1;41107:21;:43::i;:::-;41215:35;41232:1;41236:7;41245:4;41215:8;:35::i;:::-;41576:1;41546:12;:18;41559:4;41546:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41620:1;41592:12;:16;41605:2;41592:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41638:31;41672:11;:20;41684:7;41672:20;;;;;;;;;;;41638:54;;41723:2;41707:8;:13;;;:18;;;;;;;;;;;;;;;;;;41773:15;41740:8;:23;;;:49;;;;;;;;;;;;;;;;;;42041:19;42073:1;42063:7;:11;42041:33;;42089:31;42123:11;:24;42135:11;42123:24;;;;;;;;;;;42089:58;;42191:1;42166:27;;:8;:13;;;;;;;;;;;;:27;;;42162:384;;;42376:13;;42361:11;:28;42357:174;;42430:4;42414:8;:13;;;:20;;;;;;;;;;;;;;;;;;42483:13;:28;;;42457:8;:23;;;:54;;;;;;;;;;;;;;;;;;42357:174;42162:384;41521:1036;;;42593:7;42589:2;42574:27;;42583:4;42574:27;;;;;;;;;;;;42612:42;42633:4;42639:2;42643:7;42652:1;42612:20;:42::i;:::-;40636:2026;;40532:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11002:12;11020:9;:14;;11042:6;11020:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:246;10833:317;;:::o;31506:1109::-;31568:21;;:::i;:::-;31602:12;31617:7;31602:22;;31685:4;31666:15;:13;:15::i;:::-;:23;;:47;;;;;31700:13;;31693:4;:20;31666:47;31662:886;;;31734:31;31768:11;:17;31780:4;31768:17;;;;;;;;;;;31734:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31809:9;:16;;;31804:729;;31880:1;31854:28;;:9;:14;;;:28;;;31850:101;;31918:9;31911:16;;;;;;31850:101;32253:261;32260:4;32253:261;;;32293:6;;;;;;;;32338:11;:17;32350:4;32338:17;;;;;;;;;;;32326:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32412:1;32386:28;;:9;:14;;;:28;;;32382:109;;32454:9;32447:16;;;;;;32382:109;32253:261;;;31804:729;31715:833;31662:886;32576:31;;;;;;;;;;;;;;31506:1109;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;36616:104::-;36685:27;36695:2;36699:8;36685:27;;;;;;;;;;;;:9;:27::i;:::-;36616:104;;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;46272:667::-;46435:4;46472:2;46456:36;;;46493:12;:10;:12::i;:::-;46507:4;46513:7;46522:5;46456:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46452:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46707:1;46690:6;:13;:18;46686:235;;;46736:40;;;;;;;;;;;;;;46686:235;46879:6;46873:13;46864:6;46860:2;46856:15;46849:38;46452:480;46585:45;;;46575:55;;;:6;:55;;;;46568:62;;;46272:667;;;;;;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;47587:159::-;;;;;:::o;48405:158::-;;;;;:::o;37094:1751::-;37217:20;37240:13;;37217:36;;37282:1;37268:16;;:2;:16;;;37264:48;;;37293:19;;;;;;;;;;;;;;37264:48;37339:1;37327:8;:13;37323:44;;;37349:18;;;;;;;;;;;;;;37323:44;37380:61;37410:1;37414:2;37418:12;37432:8;37380:21;:61::i;:::-;37753:8;37718:12;:16;37731:2;37718:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37817:8;37777:12;:16;37790:2;37777:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37876:2;37843:11;:25;37855:12;37843:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37943:15;37893:11;:25;37905:12;37893:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37976:20;37999:12;37976:35;;38026:11;38055:8;38040:12;:23;38026:37;;38084:15;:2;:13;;;:15::i;:::-;38080:633;;;38120:314;38176:12;38172:2;38151:38;;38168:1;38151:38;;;;;;;;;;;;38217:69;38256:1;38260:2;38264:14;;;;;;38280:5;38217:30;:69::i;:::-;38212:174;;38322:40;;;;;;;;;;;;;;38212:174;38429:3;38413:12;:19;;38120:314;;38515:12;38498:13;;:29;38494:43;;38529:8;;;38494:43;38080:633;;;38578:120;38634:14;;;;;;38630:2;38609:40;;38626:1;38609:40;;;;;;;;;;;;38693:3;38677:12;:19;;38578:120;;38080:633;38743:12;38727:13;:28;;;;37693:1074;;38777:60;38806:1;38810:2;38814:12;38828:8;38777:20;:60::i;:::-;37206:1639;37094:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:116::-;8606:21;8621:5;8606:21;:::i;:::-;8599:5;8596:32;8586:60;;8642:1;8639;8632:12;8586:60;8536:116;:::o;8658:133::-;8701:5;8739:6;8726:20;8717:29;;8755:30;8779:5;8755:30;:::i;:::-;8658:133;;;;:::o;8797:323::-;8853:6;8902:2;8890:9;8881:7;8877:23;8873:32;8870:119;;;8908:79;;:::i;:::-;8870:119;9028:1;9053:50;9095:7;9086:6;9075:9;9071:22;9053:50;:::i;:::-;9043:60;;8999:114;8797:323;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:181::-;14087:33;14083:1;14075:6;14071:14;14064:57;13947:181;:::o;14134:366::-;14276:3;14297:67;14361:2;14356:3;14297:67;:::i;:::-;14290:74;;14373:93;14462:3;14373:93;:::i;:::-;14491:2;14486:3;14482:12;14475:19;;14134:366;;;:::o;14506:419::-;14672:4;14710:2;14699:9;14695:18;14687:26;;14759:9;14753:4;14749:20;14745:1;14734:9;14730:17;14723:47;14787:131;14913:4;14787:131;:::i;:::-;14779:139;;14506:419;;;:::o;14931:173::-;15071:25;15067:1;15059:6;15055:14;15048:49;14931:173;:::o;15110:366::-;15252:3;15273:67;15337:2;15332:3;15273:67;:::i;:::-;15266:74;;15349:93;15438:3;15349:93;:::i;:::-;15467:2;15462:3;15458:12;15451:19;;15110:366;;;:::o;15482:419::-;15648:4;15686:2;15675:9;15671:18;15663:26;;15735:9;15729:4;15725:20;15721:1;15710:9;15706:17;15699:47;15763:131;15889:4;15763:131;:::i;:::-;15755:139;;15482:419;;;:::o;15907:180::-;15955:77;15952:1;15945:88;16052:4;16049:1;16042:15;16076:4;16073:1;16066:15;16093:305;16133:3;16152:20;16170:1;16152:20;:::i;:::-;16147:25;;16186:20;16204:1;16186:20;:::i;:::-;16181:25;;16340:1;16272:66;16268:74;16265:1;16262:81;16259:107;;;16346:18;;:::i;:::-;16259:107;16390:1;16387;16383:9;16376:16;;16093:305;;;;:::o;16404:157::-;16544:9;16540:1;16532:6;16528:14;16521:33;16404:157;:::o;16567:365::-;16709:3;16730:66;16794:1;16789:3;16730:66;:::i;:::-;16723:73;;16805:93;16894:3;16805:93;:::i;:::-;16923:2;16918:3;16914:12;16907:19;;16567:365;;;:::o;16938:419::-;17104:4;17142:2;17131:9;17127:18;17119:26;;17191:9;17185:4;17181:20;17177:1;17166:9;17162:17;17155:47;17219:131;17345:4;17219:131;:::i;:::-;17211:139;;16938:419;;;:::o;17363:348::-;17403:7;17426:20;17444:1;17426:20;:::i;:::-;17421:25;;17460:20;17478:1;17460:20;:::i;:::-;17455:25;;17648:1;17580:66;17576:74;17573:1;17570:81;17565:1;17558:9;17551:17;17547:105;17544:131;;;17655:18;;:::i;:::-;17544:131;17703:1;17700;17696:9;17685:20;;17363:348;;;;:::o;17717:174::-;17857:26;17853:1;17845:6;17841:14;17834:50;17717:174;:::o;17897:366::-;18039:3;18060:67;18124:2;18119:3;18060:67;:::i;:::-;18053:74;;18136:93;18225:3;18136:93;:::i;:::-;18254:2;18249:3;18245:12;18238:19;;17897:366;;;:::o;18269:419::-;18435:4;18473:2;18462:9;18458:18;18450:26;;18522:9;18516:4;18512:20;18508:1;18497:9;18493:17;18486:47;18550:131;18676:4;18550:131;:::i;:::-;18542:139;;18269:419;;;:::o;18694:221::-;18834:34;18830:1;18822:6;18818:14;18811:58;18903:4;18898:2;18890:6;18886:15;18879:29;18694:221;:::o;18921:366::-;19063:3;19084:67;19148:2;19143:3;19084:67;:::i;:::-;19077:74;;19160:93;19249:3;19160:93;:::i;:::-;19278:2;19273:3;19269:12;19262:19;;18921:366;;;:::o;19293:419::-;19459:4;19497:2;19486:9;19482:18;19474:26;;19546:9;19540:4;19536:20;19532:1;19521:9;19517:17;19510:47;19574:131;19700:4;19574:131;:::i;:::-;19566:139;;19293:419;;;:::o;19718:169::-;19858:21;19854:1;19846:6;19842:14;19835:45;19718:169;:::o;19893:366::-;20035:3;20056:67;20120:2;20115:3;20056:67;:::i;:::-;20049:74;;20132:93;20221:3;20132:93;:::i;:::-;20250:2;20245:3;20241:12;20234:19;;19893:366;;;:::o;20265:419::-;20431:4;20469:2;20458:9;20454:18;20446:26;;20518:9;20512:4;20508:20;20504:1;20493:9;20489:17;20482:47;20546:131;20672:4;20546:131;:::i;:::-;20538:139;;20265:419;;;:::o;20690:173::-;20830:25;20826:1;20818:6;20814:14;20807:49;20690:173;:::o;20869:366::-;21011:3;21032:67;21096:2;21091:3;21032:67;:::i;:::-;21025:74;;21108:93;21197:3;21108:93;:::i;:::-;21226:2;21221:3;21217:12;21210:19;;20869:366;;;:::o;21241:419::-;21407:4;21445:2;21434:9;21430:18;21422:26;;21494:9;21488:4;21484:20;21480:1;21469:9;21465:17;21458:47;21522:131;21648:4;21522:131;:::i;:::-;21514:139;;21241:419;;;:::o;21666:234::-;21806:34;21802:1;21794:6;21790:14;21783:58;21875:17;21870:2;21862:6;21858:15;21851:42;21666:234;:::o;21906:366::-;22048:3;22069:67;22133:2;22128:3;22069:67;:::i;:::-;22062:74;;22145:93;22234:3;22145:93;:::i;:::-;22263:2;22258:3;22254:12;22247:19;;21906:366;;;:::o;22278:419::-;22444:4;22482:2;22471:9;22467:18;22459:26;;22531:9;22525:4;22521:20;22517:1;22506:9;22502:17;22495:47;22559:131;22685:4;22559:131;:::i;:::-;22551:139;;22278:419;;;:::o;22703:148::-;22805:11;22842:3;22827:18;;22703:148;;;;:::o;22857:141::-;22906:4;22929:3;22921:11;;22952:3;22949:1;22942:14;22986:4;22983:1;22973:18;22965:26;;22857:141;;;:::o;23028:845::-;23131:3;23168:5;23162:12;23197:36;23223:9;23197:36;:::i;:::-;23249:89;23331:6;23326:3;23249:89;:::i;:::-;23242:96;;23369:1;23358:9;23354:17;23385:1;23380:137;;;;23531:1;23526:341;;;;23347:520;;23380:137;23464:4;23460:9;23449;23445:25;23440:3;23433:38;23500:6;23495:3;23491:16;23484:23;;23380:137;;23526:341;23593:38;23625:5;23593:38;:::i;:::-;23653:1;23667:154;23681:6;23678:1;23675:13;23667:154;;;23755:7;23749:14;23745:1;23740:3;23736:11;23729:35;23805:1;23796:7;23792:15;23781:26;;23703:4;23700:1;23696:12;23691:17;;23667:154;;;23850:6;23845:3;23841:16;23834:23;;23533:334;;23347:520;;23135:738;;23028:845;;;;:::o;23879:377::-;23985:3;24013:39;24046:5;24013:39;:::i;:::-;24068:89;24150:6;24145:3;24068:89;:::i;:::-;24061:96;;24166:52;24211:6;24206:3;24199:4;24192:5;24188:16;24166:52;:::i;:::-;24243:6;24238:3;24234:16;24227:23;;23989:267;23879:377;;;;:::o;24262:155::-;24402:7;24398:1;24390:6;24386:14;24379:31;24262:155;:::o;24423:400::-;24583:3;24604:84;24686:1;24681:3;24604:84;:::i;:::-;24597:91;;24697:93;24786:3;24697:93;:::i;:::-;24815:1;24810:3;24806:11;24799:18;;24423:400;;;:::o;24829:695::-;25107:3;25129:92;25217:3;25208:6;25129:92;:::i;:::-;25122:99;;25238:95;25329:3;25320:6;25238:95;:::i;:::-;25231:102;;25350:148;25494:3;25350:148;:::i;:::-;25343:155;;25515:3;25508:10;;24829:695;;;;;:::o;25530:225::-;25670:34;25666:1;25658:6;25654:14;25647:58;25739:8;25734:2;25726:6;25722:15;25715:33;25530:225;:::o;25761:366::-;25903:3;25924:67;25988:2;25983:3;25924:67;:::i;:::-;25917:74;;26000:93;26089:3;26000:93;:::i;:::-;26118:2;26113:3;26109:12;26102:19;;25761:366;;;:::o;26133:419::-;26299:4;26337:2;26326:9;26322:18;26314:26;;26386:9;26380:4;26376:20;26372:1;26361:9;26357:17;26350:47;26414:131;26540:4;26414:131;:::i;:::-;26406:139;;26133:419;;;:::o;26558:179::-;26698:31;26694:1;26686:6;26682:14;26675:55;26558:179;:::o;26743:366::-;26885:3;26906:67;26970:2;26965:3;26906:67;:::i;:::-;26899:74;;26982:93;27071:3;26982:93;:::i;:::-;27100:2;27095:3;27091:12;27084:19;;26743:366;;;:::o;27115:419::-;27281:4;27319:2;27308:9;27304:18;27296:26;;27368:9;27362:4;27358:20;27354:1;27343:9;27339:17;27332:47;27396:131;27522:4;27396:131;:::i;:::-;27388:139;;27115:419;;;:::o;27540:147::-;27641:11;27678:3;27663:18;;27540:147;;;;:::o;27693:114::-;;:::o;27813:398::-;27972:3;27993:83;28074:1;28069:3;27993:83;:::i;:::-;27986:90;;28085:93;28174:3;28085:93;:::i;:::-;28203:1;28198:3;28194:11;28187:18;;27813:398;;;:::o;28217:379::-;28401:3;28423:147;28566:3;28423:147;:::i;:::-;28416:154;;28587:3;28580:10;;28217:379;;;:::o;28602:245::-;28742:34;28738:1;28730:6;28726:14;28719:58;28811:28;28806:2;28798:6;28794:15;28787:53;28602:245;:::o;28853:366::-;28995:3;29016:67;29080:2;29075:3;29016:67;:::i;:::-;29009:74;;29092:93;29181:3;29092:93;:::i;:::-;29210:2;29205:3;29201:12;29194:19;;28853:366;;;:::o;29225:419::-;29391:4;29429:2;29418:9;29414:18;29406:26;;29478:9;29472:4;29468:20;29464:1;29453:9;29449:17;29442:47;29506:131;29632:4;29506:131;:::i;:::-;29498:139;;29225:419;;;:::o;29650:98::-;29701:6;29735:5;29729:12;29719:22;;29650:98;;;:::o;29754:168::-;29837:11;29871:6;29866:3;29859:19;29911:4;29906:3;29902:14;29887:29;;29754:168;;;;:::o;29928:360::-;30014:3;30042:38;30074:5;30042:38;:::i;:::-;30096:70;30159:6;30154:3;30096:70;:::i;:::-;30089:77;;30175:52;30220:6;30215:3;30208:4;30201:5;30197:16;30175:52;:::i;:::-;30252:29;30274:6;30252:29;:::i;:::-;30247:3;30243:39;30236:46;;30018:270;29928:360;;;;:::o;30294:640::-;30489:4;30527:3;30516:9;30512:19;30504:27;;30541:71;30609:1;30598:9;30594:17;30585:6;30541:71;:::i;:::-;30622:72;30690:2;30679:9;30675:18;30666:6;30622:72;:::i;:::-;30704;30772:2;30761:9;30757:18;30748:6;30704:72;:::i;:::-;30823:9;30817:4;30813:20;30808:2;30797:9;30793:18;30786:48;30851:76;30922:4;30913:6;30851:76;:::i;:::-;30843:84;;30294:640;;;;;;;:::o;30940:141::-;30996:5;31027:6;31021:13;31012:22;;31043:32;31069:5;31043:32;:::i;:::-;30940:141;;;;:::o;31087:349::-;31156:6;31205:2;31193:9;31184:7;31180:23;31176:32;31173:119;;;31211:79;;:::i;:::-;31173:119;31331:1;31356:63;31411:7;31402:6;31391:9;31387:22;31356:63;:::i;:::-;31346:73;;31302:127;31087:349;;;;:::o;31442:233::-;31481:3;31504:24;31522:5;31504:24;:::i;:::-;31495:33;;31550:66;31543:5;31540:77;31537:103;;;31620:18;;:::i;:::-;31537:103;31667:1;31660:5;31656:13;31649:20;;31442:233;;;:::o;31681:180::-;31729:77;31726:1;31719:88;31826:4;31823:1;31816:15;31850:4;31847:1;31840:15;31867:185;31907:1;31924:20;31942:1;31924:20;:::i;:::-;31919:25;;31958:20;31976:1;31958:20;:::i;:::-;31953:25;;31997:1;31987:35;;32002:18;;:::i;:::-;31987:35;32044:1;32041;32037:9;32032:14;;31867:185;;;;:::o;32058:191::-;32098:4;32118:20;32136:1;32118:20;:::i;:::-;32113:25;;32152:20;32170:1;32152:20;:::i;:::-;32147:25;;32191:1;32188;32185:8;32182:34;;;32196:18;;:::i;:::-;32182:34;32241:1;32238;32234:9;32226:17;;32058:191;;;;:::o;32255:176::-;32287:1;32304:20;32322:1;32304:20;:::i;:::-;32299:25;;32338:20;32356:1;32338:20;:::i;:::-;32333:25;;32377:1;32367:35;;32382:18;;:::i;:::-;32367:35;32423:1;32420;32416:9;32411:14;;32255:176;;;;:::o;32437:180::-;32485:77;32482:1;32475:88;32582:4;32579:1;32572:15;32606:4;32603:1;32596:15
Swarm Source
ipfs://53145b6c25c7857a266e2c07e74674d979a16e9e5b9573596e7a8eababe8b904
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.