ERC-721
Overview
Max Total Supply
527 KBPX
Holders
27
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 KBPXLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KeeperBirds
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-03 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/keeperbirds.sol pragma solidity ^0.8.7; contract KeeperBirds is Ownable, ERC721 { using SafeMath for uint256; uint public maxPerTransaction = 20; uint public supplyLimit = 10000; uint public freeSupply = 500; bool public publicSaleActive = false; uint256 public totalSupply; string public baseURI; uint256 public tokenPrice = 12000000000000000; constructor(string memory name, string memory symbol, string memory baseURIinput) ERC721(name, symbol) { baseURI = baseURIinput; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string calldata newBaseUri) external onlyOwner { baseURI = newBaseUri; } function togglePublicSaleActive() external onlyOwner { publicSaleActive = !publicSaleActive; } function mint(uint _count) public payable{ if (totalSupply <= 1000) { tokenPrice = 12000000000000000; } else if (totalSupply <= 2000) { tokenPrice = 14000000000000000; } else if (totalSupply <= 3000) { tokenPrice = 16000000000000000; } else if (totalSupply <= 4000) { tokenPrice = 18000000000000000; } else if (totalSupply <= 5000) { tokenPrice = 20000000000000000; } else if (totalSupply <= 6000) { tokenPrice = 22000000000000000; } else if (totalSupply <= 7000) { tokenPrice = 24000000000000000; } else if (totalSupply <= 8000) { tokenPrice = 26000000000000000; } else if (totalSupply <= 9000) { tokenPrice = 28000000000000000; } else if (totalSupply <= 10000) { tokenPrice = 30000000000000000; } else { tokenPrice = 32000000000000000; } require(_count <= maxPerTransaction, "Invalid token count"); require(tokenPrice.mul(_count) <= msg.value,"Ether value sent is not correct"); require(publicSaleActive == true, "Sale is Paused."); require((totalSupply + _count) <= supplyLimit, "Supply reached"); uint256 newId = totalSupply; for(uint i = 0; i < _count; i++){ newId+=1; _safeMint(msg.sender, newId); } totalSupply = newId; } function freeMint(uint256 numberOfTokens) public { require(totalSupply <= freeSupply, "Free supply is over!"); require(publicSaleActive == true, "Sale is Paused."); require(numberOfTokens <= maxPerTransaction, "Over max per transaction!"); uint256 newId = totalSupply; for (uint i = 0; i < numberOfTokens; i++) { newId+=1; _safeMint(msg.sender, newId); } totalSupply = newId; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIinput","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","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":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","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":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260146007556127106008556101f46009556000600a60006101000a81548160ff021916908315150217905550662aa1efb94e0000600d553480156200004857600080fd5b5060405162003ecd38038062003ecd83398181016040528101906200006e9190620002e0565b82826200009062000084620000e660201b60201c565b620000ee60201b60201c565b8160019080519060200190620000a8929190620001b2565b508060029080519060200190620000c1929190620001b2565b50505080600c9080519060200190620000dc929190620001b2565b505050506200051d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c0906200042e565b90600052602060002090601f016020900481019282620001e4576000855562000230565b82601f10620001ff57805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200022f57825182559160200191906001019062000212565b5b5090506200023f919062000243565b5090565b5b808211156200025e57600081600090555060010162000244565b5090565b6000620002796200027384620003c2565b62000399565b905082815260208101848484011115620002985762000297620004fd565b5b620002a5848285620003f8565b509392505050565b600082601f830112620002c557620002c4620004f8565b5b8151620002d784826020860162000262565b91505092915050565b600080600060608486031215620002fc57620002fb62000507565b5b600084015167ffffffffffffffff8111156200031d576200031c62000502565b5b6200032b86828701620002ad565b935050602084015167ffffffffffffffff8111156200034f576200034e62000502565b5b6200035d86828701620002ad565b925050604084015167ffffffffffffffff81111562000381576200038062000502565b5b6200038f86828701620002ad565b9150509250925092565b6000620003a5620003b8565b9050620003b3828262000464565b919050565b6000604051905090565b600067ffffffffffffffff821115620003e057620003df620004c9565b5b620003eb826200050c565b9050602081019050919050565b60005b8381101562000418578082015181840152602081019050620003fb565b8381111562000428576000848401525b50505050565b600060028204905060018216806200044757607f821691505b602082108114156200045e576200045d6200049a565b5b50919050565b6200046f826200050c565b810181811067ffffffffffffffff82111715620004915762000490620004c9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6139a0806200052d6000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a0712d681161008a578063bc8893b411610064578063bc8893b4146105b3578063c87b56dd146105de578063e985e9c51461061b578063f2fde38b14610658576101b7565b8063a0712d6814610545578063a22cb46514610561578063b88d4fde1461058a576101b7565b80637c928fe9116100c65780637c928fe91461049b5780637ff9b596146104c45780638da5cb5b146104ef57806395d89b411461051a576101b7565b80636c0360eb1461041c57806370a0823114610447578063715018a614610484576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103625780634b980d671461038b57806355f804b3146103b65780636352211e146103df576101b7565b806323b872dd146102f757806324a6ab0c146103205780633ccfd60b1461034b576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461028a57806318160ddd146102a157806319d1997a146102cc576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061271c565b610681565b6040516101f09190612c4d565b60405180910390f35b34801561020557600080fd5b5061020e610763565b60405161021b9190612c68565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906127c3565b6107f5565b6040516102589190612be6565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906126dc565b61087a565b005b34801561029657600080fd5b5061029f610992565b005b3480156102ad57600080fd5b506102b6610a3a565b6040516102c39190612f4a565b60405180910390f35b3480156102d857600080fd5b506102e1610a40565b6040516102ee9190612f4a565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906125c6565b610a46565b005b34801561032c57600080fd5b50610335610aa6565b6040516103429190612f4a565b60405180910390f35b34801561035757600080fd5b50610360610aac565b005b34801561036e57600080fd5b50610389600480360381019061038491906125c6565b610b77565b005b34801561039757600080fd5b506103a0610b97565b6040516103ad9190612f4a565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612776565b610b9d565b005b3480156103eb57600080fd5b50610406600480360381019061040191906127c3565b610c2f565b6040516104139190612be6565b60405180910390f35b34801561042857600080fd5b50610431610ce1565b60405161043e9190612c68565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612559565b610d6f565b60405161047b9190612f4a565b60405180910390f35b34801561049057600080fd5b50610499610e27565b005b3480156104a757600080fd5b506104c260048036038101906104bd91906127c3565b610eaf565b005b3480156104d057600080fd5b506104d9610fdb565b6040516104e69190612f4a565b60405180910390f35b3480156104fb57600080fd5b50610504610fe1565b6040516105119190612be6565b60405180910390f35b34801561052657600080fd5b5061052f61100a565b60405161053c9190612c68565b60405180910390f35b61055f600480360381019061055a91906127c3565b61109c565b005b34801561056d57600080fd5b506105886004803603810190610583919061269c565b61136e565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612619565b6114ef565b005b3480156105bf57600080fd5b506105c8611551565b6040516105d59190612c4d565b60405180910390f35b3480156105ea57600080fd5b50610605600480360381019061060091906127c3565b611564565b6040516106129190612c68565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612586565b61160b565b60405161064f9190612c4d565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612559565b61169f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075c575061075b82611797565b5b9050919050565b606060018054610772906131c9565b80601f016020809104026020016040519081016040528092919081815260200182805461079e906131c9565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b600061080082611801565b61083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690612e2a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088582610c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90612eaa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091561186d565b73ffffffffffffffffffffffffffffffffffffffff16148061094457506109438161093e61186d565b61160b565b5b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90612d8a565b60405180910390fd5b61098d8383611875565b505050565b61099a61186d565b73ffffffffffffffffffffffffffffffffffffffff166109b8610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612e4a565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600b5481565b60085481565b610a57610a5161186d565b8261192e565b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612eca565b60405180910390fd5b610aa1838383611a0c565b505050565b60095481565b610ab461186d565b73ffffffffffffffffffffffffffffffffffffffff16610ad2610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90612e4a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b73573d6000803e3d6000fd5b5050565b610b92838383604051806020016040528060008152506114ef565b505050565b60075481565b610ba561186d565b73ffffffffffffffffffffffffffffffffffffffff16610bc3610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090612e4a565b60405180910390fd5b8181600c9190610c2a929190612387565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90612dca565b60405180910390fd5b80915050919050565b600c8054610cee906131c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a906131c9565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790612daa565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e2f61186d565b73ffffffffffffffffffffffffffffffffffffffff16610e4d610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90612e4a565b60405180910390fd5b610ead6000611c68565b565b600954600b541115610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90612eea565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390612f2a565b60405180910390fd5b600754811115610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612dea565b60405180910390fd5b6000600b54905060005b82811015610fcf57600182610fb09190612ffe565b9150610fbc3383611d2c565b8080610fc79061322c565b915050610f9b565b5080600b819055505050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611019906131c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611045906131c9565b80156110925780601f1061106757610100808354040283529160200191611092565b820191906000526020600020905b81548152906001019060200180831161107557829003601f168201915b5050505050905090565b6103e8600b54116110ba57662aa1efb94e0000600d819055506111e0565b6107d0600b54116110d8576631bced02db0000600d819055506111df565b610bb8600b54116110f6576638d7ea4c680000600d819055506111de565b610fa0600b541161111457663ff2e795f50000600d819055506111dd565b611388600b54116111325766470de4df820000600d819055506111dc565b611770600b541161115057664e28e2290f0000600d819055506111db565b611b58600b541161116e57665543df729c0000600d819055506111da565b611f40600b541161118c57665c5edcbc290000600d819055506111d9565b612328600b54116111aa57666379da05b60000600d819055506111d8565b612710600b54116111c857666a94d74f430000600d819055506111d7565b6671afd498d00000600d819055505b5b5b5b5b5b5b5b5b5b600754811115611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90612c8a565b60405180910390fd5b3461123b82600d54611d4a90919063ffffffff16565b111561127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612d4a565b60405180910390fd5b60011515600a60009054906101000a900460ff161515146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990612f2a565b60405180910390fd5b60085481600b546112e39190612ffe565b1115611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90612f0a565b60405180910390fd5b6000600b54905060005b82811015611362576001826113439190612ffe565b915061134f3383611d2c565b808061135a9061322c565b91505061132e565b5080600b819055505050565b61137661186d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90612d2a565b60405180910390fd5b80600660006113f161186d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149e61186d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e39190612c4d565b60405180910390a35050565b6115006114fa61186d565b8361192e565b61153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690612eca565b60405180910390fd5b61154b84848484611d60565b50505050565b600a60009054906101000a900460ff1681565b606061156f82611801565b6115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590612e8a565b60405180910390fd5b60006115b8611dbc565b905060008151116115d85760405180602001604052806000815250611603565b806115e284611e4e565b6040516020016115f3929190612bc2565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a761186d565b73ffffffffffffffffffffffffffffffffffffffff166116c5610fe1565b73ffffffffffffffffffffffffffffffffffffffff161461171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290612e4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290612cca565b60405180910390fd5b61179481611c68565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118e883610c2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061193982611801565b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90612d6a565b60405180910390fd5b600061198383610c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119f257508373ffffffffffffffffffffffffffffffffffffffff166119da846107f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a035750611a02818561160b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a2c82610c2f565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990612e6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990612d0a565b60405180910390fd5b611afd838383611faf565b611b08600082611875565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5891906130df565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611baf9190612ffe565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d46828260405180602001604052806000815250611fb4565b5050565b60008183611d589190613085565b905092915050565b611d6b848484611a0c565b611d778484848461200f565b611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90612caa565b60405180910390fd5b50505050565b6060600c8054611dcb906131c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611df7906131c9565b8015611e445780601f10611e1957610100808354040283529160200191611e44565b820191906000526020600020905b815481529060010190602001808311611e2757829003601f168201915b5050505050905090565b60606000821415611e96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611faa565b600082905060005b60008214611ec8578080611eb19061322c565b915050600a82611ec19190613054565b9150611e9e565b60008167ffffffffffffffff811115611ee457611ee3613362565b5b6040519080825280601f01601f191660200182016040528015611f165781602001600182028036833780820191505090505b5090505b60008514611fa357600182611f2f91906130df565b9150600a85611f3e9190613275565b6030611f4a9190612ffe565b60f81b818381518110611f6057611f5f613333565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f9c9190613054565b9450611f1a565b8093505050505b919050565b505050565b611fbe83836121a6565b611fcb600084848461200f565b61200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190612caa565b60405180910390fd5b505050565b60006120308473ffffffffffffffffffffffffffffffffffffffff16612374565b15612199578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261205961186d565b8786866040518563ffffffff1660e01b815260040161207b9493929190612c01565b602060405180830381600087803b15801561209557600080fd5b505af19250505080156120c657506040513d601f19601f820116820180604052508101906120c39190612749565b60015b612149573d80600081146120f6576040519150601f19603f3d011682016040523d82523d6000602084013e6120fb565b606091505b50600081511415612141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213890612caa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061219e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90612e0a565b60405180910390fd5b61221f81611801565b1561225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690612cea565b60405180910390fd5b61226b60008383611faf565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122bb9190612ffe565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612393906131c9565b90600052602060002090601f0160209004810192826123b557600085556123fc565b82601f106123ce57803560ff19168380011785556123fc565b828001600101855582156123fc579182015b828111156123fb5782358255916020019190600101906123e0565b5b509050612409919061240d565b5090565b5b8082111561242657600081600090555060010161240e565b5090565b600061243d61243884612f8a565b612f65565b905082815260208101848484011115612459576124586133a0565b5b612464848285613187565b509392505050565b60008135905061247b8161390e565b92915050565b60008135905061249081613925565b92915050565b6000813590506124a58161393c565b92915050565b6000815190506124ba8161393c565b92915050565b600082601f8301126124d5576124d4613396565b5b81356124e584826020860161242a565b91505092915050565b60008083601f84011261250457612503613396565b5b8235905067ffffffffffffffff81111561252157612520613391565b5b60208301915083600182028301111561253d5761253c61339b565b5b9250929050565b60008135905061255381613953565b92915050565b60006020828403121561256f5761256e6133aa565b5b600061257d8482850161246c565b91505092915050565b6000806040838503121561259d5761259c6133aa565b5b60006125ab8582860161246c565b92505060206125bc8582860161246c565b9150509250929050565b6000806000606084860312156125df576125de6133aa565b5b60006125ed8682870161246c565b93505060206125fe8682870161246c565b925050604061260f86828701612544565b9150509250925092565b60008060008060808587031215612633576126326133aa565b5b60006126418782880161246c565b94505060206126528782880161246c565b935050604061266387828801612544565b925050606085013567ffffffffffffffff811115612684576126836133a5565b5b612690878288016124c0565b91505092959194509250565b600080604083850312156126b3576126b26133aa565b5b60006126c18582860161246c565b92505060206126d285828601612481565b9150509250929050565b600080604083850312156126f3576126f26133aa565b5b60006127018582860161246c565b925050602061271285828601612544565b9150509250929050565b600060208284031215612732576127316133aa565b5b600061274084828501612496565b91505092915050565b60006020828403121561275f5761275e6133aa565b5b600061276d848285016124ab565b91505092915050565b6000806020838503121561278d5761278c6133aa565b5b600083013567ffffffffffffffff8111156127ab576127aa6133a5565b5b6127b7858286016124ee565b92509250509250929050565b6000602082840312156127d9576127d86133aa565b5b60006127e784828501612544565b91505092915050565b6127f981613113565b82525050565b61280881613125565b82525050565b600061281982612fbb565b6128238185612fd1565b9350612833818560208601613196565b61283c816133af565b840191505092915050565b600061285282612fc6565b61285c8185612fe2565b935061286c818560208601613196565b612875816133af565b840191505092915050565b600061288b82612fc6565b6128958185612ff3565b93506128a5818560208601613196565b80840191505092915050565b60006128be601383612fe2565b91506128c9826133c0565b602082019050919050565b60006128e1603283612fe2565b91506128ec826133e9565b604082019050919050565b6000612904602683612fe2565b915061290f82613438565b604082019050919050565b6000612927601c83612fe2565b915061293282613487565b602082019050919050565b600061294a602483612fe2565b9150612955826134b0565b604082019050919050565b600061296d601983612fe2565b9150612978826134ff565b602082019050919050565b6000612990601f83612fe2565b915061299b82613528565b602082019050919050565b60006129b3602c83612fe2565b91506129be82613551565b604082019050919050565b60006129d6603883612fe2565b91506129e1826135a0565b604082019050919050565b60006129f9602a83612fe2565b9150612a04826135ef565b604082019050919050565b6000612a1c602983612fe2565b9150612a278261363e565b604082019050919050565b6000612a3f601983612fe2565b9150612a4a8261368d565b602082019050919050565b6000612a62602083612fe2565b9150612a6d826136b6565b602082019050919050565b6000612a85602c83612fe2565b9150612a90826136df565b604082019050919050565b6000612aa8602083612fe2565b9150612ab38261372e565b602082019050919050565b6000612acb602983612fe2565b9150612ad682613757565b604082019050919050565b6000612aee602f83612fe2565b9150612af9826137a6565b604082019050919050565b6000612b11602183612fe2565b9150612b1c826137f5565b604082019050919050565b6000612b34603183612fe2565b9150612b3f82613844565b604082019050919050565b6000612b57601483612fe2565b9150612b6282613893565b602082019050919050565b6000612b7a600e83612fe2565b9150612b85826138bc565b602082019050919050565b6000612b9d600f83612fe2565b9150612ba8826138e5565b602082019050919050565b612bbc8161317d565b82525050565b6000612bce8285612880565b9150612bda8284612880565b91508190509392505050565b6000602082019050612bfb60008301846127f0565b92915050565b6000608082019050612c1660008301876127f0565b612c2360208301866127f0565b612c306040830185612bb3565b8181036060830152612c42818461280e565b905095945050505050565b6000602082019050612c6260008301846127ff565b92915050565b60006020820190508181036000830152612c828184612847565b905092915050565b60006020820190508181036000830152612ca3816128b1565b9050919050565b60006020820190508181036000830152612cc3816128d4565b9050919050565b60006020820190508181036000830152612ce3816128f7565b9050919050565b60006020820190508181036000830152612d038161291a565b9050919050565b60006020820190508181036000830152612d238161293d565b9050919050565b60006020820190508181036000830152612d4381612960565b9050919050565b60006020820190508181036000830152612d6381612983565b9050919050565b60006020820190508181036000830152612d83816129a6565b9050919050565b60006020820190508181036000830152612da3816129c9565b9050919050565b60006020820190508181036000830152612dc3816129ec565b9050919050565b60006020820190508181036000830152612de381612a0f565b9050919050565b60006020820190508181036000830152612e0381612a32565b9050919050565b60006020820190508181036000830152612e2381612a55565b9050919050565b60006020820190508181036000830152612e4381612a78565b9050919050565b60006020820190508181036000830152612e6381612a9b565b9050919050565b60006020820190508181036000830152612e8381612abe565b9050919050565b60006020820190508181036000830152612ea381612ae1565b9050919050565b60006020820190508181036000830152612ec381612b04565b9050919050565b60006020820190508181036000830152612ee381612b27565b9050919050565b60006020820190508181036000830152612f0381612b4a565b9050919050565b60006020820190508181036000830152612f2381612b6d565b9050919050565b60006020820190508181036000830152612f4381612b90565b9050919050565b6000602082019050612f5f6000830184612bb3565b92915050565b6000612f6f612f80565b9050612f7b82826131fb565b919050565b6000604051905090565b600067ffffffffffffffff821115612fa557612fa4613362565b5b612fae826133af565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130098261317d565b91506130148361317d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613049576130486132a6565b5b828201905092915050565b600061305f8261317d565b915061306a8361317d565b92508261307a576130796132d5565b5b828204905092915050565b60006130908261317d565b915061309b8361317d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130d4576130d36132a6565b5b828202905092915050565b60006130ea8261317d565b91506130f58361317d565b925082821015613108576131076132a6565b5b828203905092915050565b600061311e8261315d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131b4578082015181840152602081019050613199565b838111156131c3576000848401525b50505050565b600060028204905060018216806131e157607f821691505b602082108114156131f5576131f4613304565b5b50919050565b613204826133af565b810181811067ffffffffffffffff8211171561322357613222613362565b5b80604052505050565b60006132378261317d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561326a576132696132a6565b5b600182019050919050565b60006132808261317d565b915061328b8361317d565b92508261329b5761329a6132d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c696420746f6b656e20636f756e7400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f766572206d617820706572207472616e73616374696f6e2100000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4672656520737570706c79206973206f76657221000000000000000000000000600082015250565b7f537570706c792072656163686564000000000000000000000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b61391781613113565b811461392257600080fd5b50565b61392e81613125565b811461393957600080fd5b50565b61394581613131565b811461395057600080fd5b50565b61395c8161317d565b811461396757600080fd5b5056fea2646970667358221220b8f94fe61063628eb5249b1df8c8733eb1b99162c3599348f0081b29d75a01ad64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000164b65657065722042697264732050726f6a65637420580000000000000000000000000000000000000000000000000000000000000000000000000000000000044b42505800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d636e564d56367550613568347568685a48766b4c7474727147504361677a48335273444d4d706b784d58465a2f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a0712d681161008a578063bc8893b411610064578063bc8893b4146105b3578063c87b56dd146105de578063e985e9c51461061b578063f2fde38b14610658576101b7565b8063a0712d6814610545578063a22cb46514610561578063b88d4fde1461058a576101b7565b80637c928fe9116100c65780637c928fe91461049b5780637ff9b596146104c45780638da5cb5b146104ef57806395d89b411461051a576101b7565b80636c0360eb1461041c57806370a0823114610447578063715018a614610484576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103625780634b980d671461038b57806355f804b3146103b65780636352211e146103df576101b7565b806323b872dd146102f757806324a6ab0c146103205780633ccfd60b1461034b576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461028a57806318160ddd146102a157806319d1997a146102cc576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061271c565b610681565b6040516101f09190612c4d565b60405180910390f35b34801561020557600080fd5b5061020e610763565b60405161021b9190612c68565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906127c3565b6107f5565b6040516102589190612be6565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906126dc565b61087a565b005b34801561029657600080fd5b5061029f610992565b005b3480156102ad57600080fd5b506102b6610a3a565b6040516102c39190612f4a565b60405180910390f35b3480156102d857600080fd5b506102e1610a40565b6040516102ee9190612f4a565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906125c6565b610a46565b005b34801561032c57600080fd5b50610335610aa6565b6040516103429190612f4a565b60405180910390f35b34801561035757600080fd5b50610360610aac565b005b34801561036e57600080fd5b50610389600480360381019061038491906125c6565b610b77565b005b34801561039757600080fd5b506103a0610b97565b6040516103ad9190612f4a565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612776565b610b9d565b005b3480156103eb57600080fd5b50610406600480360381019061040191906127c3565b610c2f565b6040516104139190612be6565b60405180910390f35b34801561042857600080fd5b50610431610ce1565b60405161043e9190612c68565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612559565b610d6f565b60405161047b9190612f4a565b60405180910390f35b34801561049057600080fd5b50610499610e27565b005b3480156104a757600080fd5b506104c260048036038101906104bd91906127c3565b610eaf565b005b3480156104d057600080fd5b506104d9610fdb565b6040516104e69190612f4a565b60405180910390f35b3480156104fb57600080fd5b50610504610fe1565b6040516105119190612be6565b60405180910390f35b34801561052657600080fd5b5061052f61100a565b60405161053c9190612c68565b60405180910390f35b61055f600480360381019061055a91906127c3565b61109c565b005b34801561056d57600080fd5b506105886004803603810190610583919061269c565b61136e565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612619565b6114ef565b005b3480156105bf57600080fd5b506105c8611551565b6040516105d59190612c4d565b60405180910390f35b3480156105ea57600080fd5b50610605600480360381019061060091906127c3565b611564565b6040516106129190612c68565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612586565b61160b565b60405161064f9190612c4d565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612559565b61169f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075c575061075b82611797565b5b9050919050565b606060018054610772906131c9565b80601f016020809104026020016040519081016040528092919081815260200182805461079e906131c9565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b600061080082611801565b61083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690612e2a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088582610c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90612eaa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091561186d565b73ffffffffffffffffffffffffffffffffffffffff16148061094457506109438161093e61186d565b61160b565b5b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90612d8a565b60405180910390fd5b61098d8383611875565b505050565b61099a61186d565b73ffffffffffffffffffffffffffffffffffffffff166109b8610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612e4a565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600b5481565b60085481565b610a57610a5161186d565b8261192e565b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612eca565b60405180910390fd5b610aa1838383611a0c565b505050565b60095481565b610ab461186d565b73ffffffffffffffffffffffffffffffffffffffff16610ad2610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90612e4a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b73573d6000803e3d6000fd5b5050565b610b92838383604051806020016040528060008152506114ef565b505050565b60075481565b610ba561186d565b73ffffffffffffffffffffffffffffffffffffffff16610bc3610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090612e4a565b60405180910390fd5b8181600c9190610c2a929190612387565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90612dca565b60405180910390fd5b80915050919050565b600c8054610cee906131c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a906131c9565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790612daa565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e2f61186d565b73ffffffffffffffffffffffffffffffffffffffff16610e4d610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90612e4a565b60405180910390fd5b610ead6000611c68565b565b600954600b541115610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90612eea565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390612f2a565b60405180910390fd5b600754811115610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612dea565b60405180910390fd5b6000600b54905060005b82811015610fcf57600182610fb09190612ffe565b9150610fbc3383611d2c565b8080610fc79061322c565b915050610f9b565b5080600b819055505050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611019906131c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611045906131c9565b80156110925780601f1061106757610100808354040283529160200191611092565b820191906000526020600020905b81548152906001019060200180831161107557829003601f168201915b5050505050905090565b6103e8600b54116110ba57662aa1efb94e0000600d819055506111e0565b6107d0600b54116110d8576631bced02db0000600d819055506111df565b610bb8600b54116110f6576638d7ea4c680000600d819055506111de565b610fa0600b541161111457663ff2e795f50000600d819055506111dd565b611388600b54116111325766470de4df820000600d819055506111dc565b611770600b541161115057664e28e2290f0000600d819055506111db565b611b58600b541161116e57665543df729c0000600d819055506111da565b611f40600b541161118c57665c5edcbc290000600d819055506111d9565b612328600b54116111aa57666379da05b60000600d819055506111d8565b612710600b54116111c857666a94d74f430000600d819055506111d7565b6671afd498d00000600d819055505b5b5b5b5b5b5b5b5b5b600754811115611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90612c8a565b60405180910390fd5b3461123b82600d54611d4a90919063ffffffff16565b111561127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612d4a565b60405180910390fd5b60011515600a60009054906101000a900460ff161515146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990612f2a565b60405180910390fd5b60085481600b546112e39190612ffe565b1115611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90612f0a565b60405180910390fd5b6000600b54905060005b82811015611362576001826113439190612ffe565b915061134f3383611d2c565b808061135a9061322c565b91505061132e565b5080600b819055505050565b61137661186d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90612d2a565b60405180910390fd5b80600660006113f161186d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149e61186d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e39190612c4d565b60405180910390a35050565b6115006114fa61186d565b8361192e565b61153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690612eca565b60405180910390fd5b61154b84848484611d60565b50505050565b600a60009054906101000a900460ff1681565b606061156f82611801565b6115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590612e8a565b60405180910390fd5b60006115b8611dbc565b905060008151116115d85760405180602001604052806000815250611603565b806115e284611e4e565b6040516020016115f3929190612bc2565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a761186d565b73ffffffffffffffffffffffffffffffffffffffff166116c5610fe1565b73ffffffffffffffffffffffffffffffffffffffff161461171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290612e4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290612cca565b60405180910390fd5b61179481611c68565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118e883610c2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061193982611801565b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90612d6a565b60405180910390fd5b600061198383610c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119f257508373ffffffffffffffffffffffffffffffffffffffff166119da846107f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a035750611a02818561160b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a2c82610c2f565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990612e6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990612d0a565b60405180910390fd5b611afd838383611faf565b611b08600082611875565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5891906130df565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611baf9190612ffe565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d46828260405180602001604052806000815250611fb4565b5050565b60008183611d589190613085565b905092915050565b611d6b848484611a0c565b611d778484848461200f565b611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90612caa565b60405180910390fd5b50505050565b6060600c8054611dcb906131c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611df7906131c9565b8015611e445780601f10611e1957610100808354040283529160200191611e44565b820191906000526020600020905b815481529060010190602001808311611e2757829003601f168201915b5050505050905090565b60606000821415611e96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611faa565b600082905060005b60008214611ec8578080611eb19061322c565b915050600a82611ec19190613054565b9150611e9e565b60008167ffffffffffffffff811115611ee457611ee3613362565b5b6040519080825280601f01601f191660200182016040528015611f165781602001600182028036833780820191505090505b5090505b60008514611fa357600182611f2f91906130df565b9150600a85611f3e9190613275565b6030611f4a9190612ffe565b60f81b818381518110611f6057611f5f613333565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f9c9190613054565b9450611f1a565b8093505050505b919050565b505050565b611fbe83836121a6565b611fcb600084848461200f565b61200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190612caa565b60405180910390fd5b505050565b60006120308473ffffffffffffffffffffffffffffffffffffffff16612374565b15612199578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261205961186d565b8786866040518563ffffffff1660e01b815260040161207b9493929190612c01565b602060405180830381600087803b15801561209557600080fd5b505af19250505080156120c657506040513d601f19601f820116820180604052508101906120c39190612749565b60015b612149573d80600081146120f6576040519150601f19603f3d011682016040523d82523d6000602084013e6120fb565b606091505b50600081511415612141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213890612caa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061219e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90612e0a565b60405180910390fd5b61221f81611801565b1561225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690612cea565b60405180910390fd5b61226b60008383611faf565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122bb9190612ffe565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612393906131c9565b90600052602060002090601f0160209004810192826123b557600085556123fc565b82601f106123ce57803560ff19168380011785556123fc565b828001600101855582156123fc579182015b828111156123fb5782358255916020019190600101906123e0565b5b509050612409919061240d565b5090565b5b8082111561242657600081600090555060010161240e565b5090565b600061243d61243884612f8a565b612f65565b905082815260208101848484011115612459576124586133a0565b5b612464848285613187565b509392505050565b60008135905061247b8161390e565b92915050565b60008135905061249081613925565b92915050565b6000813590506124a58161393c565b92915050565b6000815190506124ba8161393c565b92915050565b600082601f8301126124d5576124d4613396565b5b81356124e584826020860161242a565b91505092915050565b60008083601f84011261250457612503613396565b5b8235905067ffffffffffffffff81111561252157612520613391565b5b60208301915083600182028301111561253d5761253c61339b565b5b9250929050565b60008135905061255381613953565b92915050565b60006020828403121561256f5761256e6133aa565b5b600061257d8482850161246c565b91505092915050565b6000806040838503121561259d5761259c6133aa565b5b60006125ab8582860161246c565b92505060206125bc8582860161246c565b9150509250929050565b6000806000606084860312156125df576125de6133aa565b5b60006125ed8682870161246c565b93505060206125fe8682870161246c565b925050604061260f86828701612544565b9150509250925092565b60008060008060808587031215612633576126326133aa565b5b60006126418782880161246c565b94505060206126528782880161246c565b935050604061266387828801612544565b925050606085013567ffffffffffffffff811115612684576126836133a5565b5b612690878288016124c0565b91505092959194509250565b600080604083850312156126b3576126b26133aa565b5b60006126c18582860161246c565b92505060206126d285828601612481565b9150509250929050565b600080604083850312156126f3576126f26133aa565b5b60006127018582860161246c565b925050602061271285828601612544565b9150509250929050565b600060208284031215612732576127316133aa565b5b600061274084828501612496565b91505092915050565b60006020828403121561275f5761275e6133aa565b5b600061276d848285016124ab565b91505092915050565b6000806020838503121561278d5761278c6133aa565b5b600083013567ffffffffffffffff8111156127ab576127aa6133a5565b5b6127b7858286016124ee565b92509250509250929050565b6000602082840312156127d9576127d86133aa565b5b60006127e784828501612544565b91505092915050565b6127f981613113565b82525050565b61280881613125565b82525050565b600061281982612fbb565b6128238185612fd1565b9350612833818560208601613196565b61283c816133af565b840191505092915050565b600061285282612fc6565b61285c8185612fe2565b935061286c818560208601613196565b612875816133af565b840191505092915050565b600061288b82612fc6565b6128958185612ff3565b93506128a5818560208601613196565b80840191505092915050565b60006128be601383612fe2565b91506128c9826133c0565b602082019050919050565b60006128e1603283612fe2565b91506128ec826133e9565b604082019050919050565b6000612904602683612fe2565b915061290f82613438565b604082019050919050565b6000612927601c83612fe2565b915061293282613487565b602082019050919050565b600061294a602483612fe2565b9150612955826134b0565b604082019050919050565b600061296d601983612fe2565b9150612978826134ff565b602082019050919050565b6000612990601f83612fe2565b915061299b82613528565b602082019050919050565b60006129b3602c83612fe2565b91506129be82613551565b604082019050919050565b60006129d6603883612fe2565b91506129e1826135a0565b604082019050919050565b60006129f9602a83612fe2565b9150612a04826135ef565b604082019050919050565b6000612a1c602983612fe2565b9150612a278261363e565b604082019050919050565b6000612a3f601983612fe2565b9150612a4a8261368d565b602082019050919050565b6000612a62602083612fe2565b9150612a6d826136b6565b602082019050919050565b6000612a85602c83612fe2565b9150612a90826136df565b604082019050919050565b6000612aa8602083612fe2565b9150612ab38261372e565b602082019050919050565b6000612acb602983612fe2565b9150612ad682613757565b604082019050919050565b6000612aee602f83612fe2565b9150612af9826137a6565b604082019050919050565b6000612b11602183612fe2565b9150612b1c826137f5565b604082019050919050565b6000612b34603183612fe2565b9150612b3f82613844565b604082019050919050565b6000612b57601483612fe2565b9150612b6282613893565b602082019050919050565b6000612b7a600e83612fe2565b9150612b85826138bc565b602082019050919050565b6000612b9d600f83612fe2565b9150612ba8826138e5565b602082019050919050565b612bbc8161317d565b82525050565b6000612bce8285612880565b9150612bda8284612880565b91508190509392505050565b6000602082019050612bfb60008301846127f0565b92915050565b6000608082019050612c1660008301876127f0565b612c2360208301866127f0565b612c306040830185612bb3565b8181036060830152612c42818461280e565b905095945050505050565b6000602082019050612c6260008301846127ff565b92915050565b60006020820190508181036000830152612c828184612847565b905092915050565b60006020820190508181036000830152612ca3816128b1565b9050919050565b60006020820190508181036000830152612cc3816128d4565b9050919050565b60006020820190508181036000830152612ce3816128f7565b9050919050565b60006020820190508181036000830152612d038161291a565b9050919050565b60006020820190508181036000830152612d238161293d565b9050919050565b60006020820190508181036000830152612d4381612960565b9050919050565b60006020820190508181036000830152612d6381612983565b9050919050565b60006020820190508181036000830152612d83816129a6565b9050919050565b60006020820190508181036000830152612da3816129c9565b9050919050565b60006020820190508181036000830152612dc3816129ec565b9050919050565b60006020820190508181036000830152612de381612a0f565b9050919050565b60006020820190508181036000830152612e0381612a32565b9050919050565b60006020820190508181036000830152612e2381612a55565b9050919050565b60006020820190508181036000830152612e4381612a78565b9050919050565b60006020820190508181036000830152612e6381612a9b565b9050919050565b60006020820190508181036000830152612e8381612abe565b9050919050565b60006020820190508181036000830152612ea381612ae1565b9050919050565b60006020820190508181036000830152612ec381612b04565b9050919050565b60006020820190508181036000830152612ee381612b27565b9050919050565b60006020820190508181036000830152612f0381612b4a565b9050919050565b60006020820190508181036000830152612f2381612b6d565b9050919050565b60006020820190508181036000830152612f4381612b90565b9050919050565b6000602082019050612f5f6000830184612bb3565b92915050565b6000612f6f612f80565b9050612f7b82826131fb565b919050565b6000604051905090565b600067ffffffffffffffff821115612fa557612fa4613362565b5b612fae826133af565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130098261317d565b91506130148361317d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613049576130486132a6565b5b828201905092915050565b600061305f8261317d565b915061306a8361317d565b92508261307a576130796132d5565b5b828204905092915050565b60006130908261317d565b915061309b8361317d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130d4576130d36132a6565b5b828202905092915050565b60006130ea8261317d565b91506130f58361317d565b925082821015613108576131076132a6565b5b828203905092915050565b600061311e8261315d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131b4578082015181840152602081019050613199565b838111156131c3576000848401525b50505050565b600060028204905060018216806131e157607f821691505b602082108114156131f5576131f4613304565b5b50919050565b613204826133af565b810181811067ffffffffffffffff8211171561322357613222613362565b5b80604052505050565b60006132378261317d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561326a576132696132a6565b5b600182019050919050565b60006132808261317d565b915061328b8361317d565b92508261329b5761329a6132d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c696420746f6b656e20636f756e7400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f766572206d617820706572207472616e73616374696f6e2100000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4672656520737570706c79206973206f76657221000000000000000000000000600082015250565b7f537570706c792072656163686564000000000000000000000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b61391781613113565b811461392257600080fd5b50565b61392e81613125565b811461393957600080fd5b50565b61394581613131565b811461395057600080fd5b50565b61395c8161317d565b811461396757600080fd5b5056fea2646970667358221220b8f94fe61063628eb5249b1df8c8733eb1b99162c3599348f0081b29d75a01ad64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000164b65657065722042697264732050726f6a65637420580000000000000000000000000000000000000000000000000000000000000000000000000000000000044b42505800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d636e564d56367550613568347568685a48766b4c7474727147504361677a48335273444d4d706b784d58465a2f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Keeper Birds Project X
Arg [1] : symbol (string): KBPX
Arg [2] : baseURIinput (string): https://gateway.pinata.cloud/ipfs/QmcnVMV6uPa5h4uhhZHvkLttrqGPCagzH3RsDMMpkxMXFZ/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 4b65657065722042697264732050726f6a656374205800000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4b42505800000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d636e564d56367550613568347568685a48766b4c7474727147504361
Arg [10] : 677a48335273444d4d706b784d58465a2f000000000000000000000000000000
Deployed Bytecode Sourcemap
42684:2870:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30494:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31439:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32998:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32521:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43382:102;;;;;;;;;;;;;:::i;:::-;;42913:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42803:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33888:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42839:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45408:143;;;;;;;;;;;;;:::i;:::-;;34298:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42764:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43276:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31133:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42944:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30863:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11758:94;;;;;;;;;;;;;:::i;:::-;;44959:443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42970:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11107:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31608:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43490:1463;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33291:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34554:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42872:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31783:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33657:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12007:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30494:305;30596:4;30648:25;30633:40;;;:11;:40;;;;:105;;;;30705:33;30690:48;;;:11;:48;;;;30633:105;:158;;;;30755:36;30779:11;30755:23;:36::i;:::-;30633:158;30613:178;;30494:305;;;:::o;31439:100::-;31493:13;31526:5;31519:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31439:100;:::o;32998:221::-;33074:7;33102:16;33110:7;33102;:16::i;:::-;33094:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33187:15;:24;33203:7;33187:24;;;;;;;;;;;;;;;;;;;;;33180:31;;32998:221;;;:::o;32521:411::-;32602:13;32618:23;32633:7;32618:14;:23::i;:::-;32602:39;;32666:5;32660:11;;:2;:11;;;;32652:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32760:5;32744:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32769:37;32786:5;32793:12;:10;:12::i;:::-;32769:16;:37::i;:::-;32744:62;32722:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32903:21;32912:2;32916:7;32903:8;:21::i;:::-;32591:341;32521:411;;:::o;43382:102::-;11338:12;:10;:12::i;:::-;11327:23;;:7;:5;:7::i;:::-;:23;;;11319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43462:16:::1;;;;;;;;;;;43461:17;43442:16;;:36;;;;;;;;;;;;;;;;;;43382:102::o:0;42913:26::-;;;;:::o;42803:31::-;;;;:::o;33888:339::-;34083:41;34102:12;:10;:12::i;:::-;34116:7;34083:18;:41::i;:::-;34075:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34191:28;34201:4;34207:2;34211:7;34191:9;:28::i;:::-;33888:339;;;:::o;42839:28::-;;;;:::o;45408:143::-;11338:12;:10;:12::i;:::-;11327:23;;:7;:5;:7::i;:::-;:23;;;11319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45456:15:::1;45474:21;45456:39;;45514:10;45506:28;;:37;45535:7;45506:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45445:106;45408:143::o:0;34298:185::-;34436:39;34453:4;34459:2;34463:7;34436:39;;;;;;;;;;;;:16;:39::i;:::-;34298:185;;;:::o;42764:34::-;;;;:::o;43276:100::-;11338:12;:10;:12::i;:::-;11327:23;;:7;:5;:7::i;:::-;:23;;;11319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43360:10:::1;;43350:7;:20;;;;;;;:::i;:::-;;43276:100:::0;;:::o;31133:239::-;31205:7;31225:13;31241:7;:16;31249:7;31241:16;;;;;;;;;;;;;;;;;;;;;31225:32;;31293:1;31276:19;;:5;:19;;;;31268:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31359:5;31352:12;;;31133:239;;;:::o;42944:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30863:208::-;30935:7;30980:1;30963:19;;:5;:19;;;;30955:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31047:9;:16;31057:5;31047:16;;;;;;;;;;;;;;;;31040:23;;30863:208;;;:::o;11758:94::-;11338:12;:10;:12::i;:::-;11327:23;;:7;:5;:7::i;:::-;:23;;;11319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11823:21:::1;11841:1;11823:9;:21::i;:::-;11758:94::o:0;44959:443::-;45038:10;;45023:11;;:25;;45015:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45108:4;45088:24;;:16;;;;;;;;;;;:24;;;45080:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;45165:17;;45147:14;:35;;45139:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45221:13;45237:11;;45221:27;;45264:6;45259:112;45280:14;45276:1;:18;45259:112;;;45319:1;45312:8;;;;;:::i;:::-;;;45331:28;45341:10;45353:5;45331:9;:28::i;:::-;45296:3;;;;;:::i;:::-;;;;45259:112;;;;45391:5;45377:11;:19;;;;45008:394;44959:443;:::o;42970:45::-;;;;:::o;11107:87::-;11153:7;11180:6;;;;;;;;;;;11173:13;;11107:87;:::o;31608:104::-;31664:13;31697:7;31690:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31608:104;:::o;43490:1463::-;43560:4;43545:11;;:19;43541:938;;43594:17;43581:10;:30;;;;43541:938;;;43648:4;43633:11;;:19;43629:850;;43682:17;43669:10;:30;;;;43629:850;;;43736:4;43721:11;;:19;43717:762;;43770:17;43757:10;:30;;;;43717:762;;;43824:4;43809:11;;:19;43805:674;;43858:17;43845:10;:30;;;;43805:674;;;43912:4;43897:11;;:19;43893:586;;43946:17;43933:10;:30;;;;43893:586;;;44000:4;43985:11;;:19;43981:498;;44034:17;44021:10;:30;;;;43981:498;;;44088:4;44073:11;;:19;44069:410;;44122:17;44109:10;:30;;;;44069:410;;;44176:4;44161:11;;:19;44157:322;;44210:17;44197:10;:30;;;;44157:322;;;44264:4;44249:11;;:19;44245:234;;44298:17;44285:10;:30;;;;44245:234;;;44352:5;44337:11;;:20;44333:146;;44387:17;44374:10;:30;;;;44333:146;;;44450:17;44437:10;:30;;;;44333:146;44245:234;44157:322;44069:410;43981:498;43893:586;43805:674;43717:762;43629:850;43541:938;44505:17;;44495:6;:27;;44487:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;44587:9;44561:22;44576:6;44561:10;;:14;;:22;;;;:::i;:::-;:35;;44553:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;44666:4;44646:24;;:16;;;;;;;;;;;:24;;;44638:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;44731:11;;44720:6;44706:11;;:20;;;;:::i;:::-;44705:37;;44697:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44770:13;44786:11;;44770:27;;44814:6;44810:110;44830:6;44826:1;:10;44810:110;;;44864:1;44857:8;;;;;:::i;:::-;;;44880:28;44890:10;44902:5;44880:9;:28::i;:::-;44838:3;;;;;:::i;:::-;;;;44810:110;;;;44942:5;44928:11;:19;;;;43531:1422;43490:1463;:::o;33291:295::-;33406:12;:10;:12::i;:::-;33394:24;;:8;:24;;;;33386:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33506:8;33461:18;:32;33480:12;:10;:12::i;:::-;33461:32;;;;;;;;;;;;;;;:42;33494:8;33461:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33559:8;33530:48;;33545:12;:10;:12::i;:::-;33530:48;;;33569:8;33530:48;;;;;;:::i;:::-;;;;;;;;33291:295;;:::o;34554:328::-;34729:41;34748:12;:10;:12::i;:::-;34762:7;34729:18;:41::i;:::-;34721:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34835:39;34849:4;34855:2;34859:7;34868:5;34835:13;:39::i;:::-;34554:328;;;;:::o;42872:36::-;;;;;;;;;;;;;:::o;31783:334::-;31856:13;31890:16;31898:7;31890;:16::i;:::-;31882:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31971:21;31995:10;:8;:10::i;:::-;31971:34;;32047:1;32029:7;32023:21;:25;:86;;;;;;;;;;;;;;;;;32075:7;32084:18;:7;:16;:18::i;:::-;32058:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32023:86;32016:93;;;31783:334;;;:::o;33657:164::-;33754:4;33778:18;:25;33797:5;33778:25;;;;;;;;;;;;;;;:35;33804:8;33778:35;;;;;;;;;;;;;;;;;;;;;;;;;33771:42;;33657:164;;;;:::o;12007:192::-;11338:12;:10;:12::i;:::-;11327:23;;:7;:5;:7::i;:::-;:23;;;11319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12116:1:::1;12096:22;;:8;:22;;;;12088:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12172:19;12182:8;12172:9;:19::i;:::-;12007:192:::0;:::o;23305:157::-;23390:4;23429:25;23414:40;;;:11;:40;;;;23407:47;;23305:157;;;:::o;36392:127::-;36457:4;36509:1;36481:30;;:7;:16;36489:7;36481:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36474:37;;36392:127;;;:::o;9842:98::-;9895:7;9922:10;9915:17;;9842:98;:::o;40374:174::-;40476:2;40449:15;:24;40465:7;40449:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40532:7;40528:2;40494:46;;40503:23;40518:7;40503:14;:23::i;:::-;40494:46;;;;;;;;;;;;40374:174;;:::o;36686:348::-;36779:4;36804:16;36812:7;36804;:16::i;:::-;36796:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36880:13;36896:23;36911:7;36896:14;:23::i;:::-;36880:39;;36949:5;36938:16;;:7;:16;;;:51;;;;36982:7;36958:31;;:20;36970:7;36958:11;:20::i;:::-;:31;;;36938:51;:87;;;;36993:32;37010:5;37017:7;36993:16;:32::i;:::-;36938:87;36930:96;;;36686:348;;;;:::o;39678:578::-;39837:4;39810:31;;:23;39825:7;39810:14;:23::i;:::-;:31;;;39802:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39920:1;39906:16;;:2;:16;;;;39898:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39976:39;39997:4;40003:2;40007:7;39976:20;:39::i;:::-;40080:29;40097:1;40101:7;40080:8;:29::i;:::-;40141:1;40122:9;:15;40132:4;40122:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40170:1;40153:9;:13;40163:2;40153:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40201:2;40182:7;:16;40190:7;40182:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40240:7;40236:2;40221:27;;40230:4;40221:27;;;;;;;;;;;;39678:578;;;:::o;12207:173::-;12263:16;12282:6;;;;;;;;;;;12263:25;;12308:8;12299:6;;:17;;;;;;;;;;;;;;;;;;12363:8;12332:40;;12353:8;12332:40;;;;;;;;;;;;12252:128;12207:173;:::o;37376:110::-;37452:26;37462:2;37466:7;37452:26;;;;;;;;;;;;:9;:26::i;:::-;37376:110;;:::o;3614:98::-;3672:7;3703:1;3699;:5;;;;:::i;:::-;3692:12;;3614:98;;;;:::o;35764:315::-;35921:28;35931:4;35937:2;35941:7;35921:9;:28::i;:::-;35968:48;35991:4;35997:2;36001:7;36010:5;35968:22;:48::i;:::-;35960:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35764:315;;;;:::o;43176:94::-;43228:13;43257:7;43250:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43176:94;:::o;7405:723::-;7461:13;7691:1;7682:5;:10;7678:53;;;7709:10;;;;;;;;;;;;;;;;;;;;;7678:53;7741:12;7756:5;7741:20;;7772:14;7797:78;7812:1;7804:4;:9;7797:78;;7830:8;;;;;:::i;:::-;;;;7861:2;7853:10;;;;;:::i;:::-;;;7797:78;;;7885:19;7917:6;7907:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7885:39;;7935:154;7951:1;7942:5;:10;7935:154;;7979:1;7969:11;;;;;:::i;:::-;;;8046:2;8038:5;:10;;;;:::i;:::-;8025:2;:24;;;;:::i;:::-;8012:39;;7995:6;8002;7995:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8075:2;8066:11;;;;;:::i;:::-;;;7935:154;;;8113:6;8099:21;;;;;7405:723;;;;:::o;42484:126::-;;;;:::o;37713:321::-;37843:18;37849:2;37853:7;37843:5;:18::i;:::-;37894:54;37925:1;37929:2;37933:7;37942:5;37894:22;:54::i;:::-;37872:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37713:321;;;:::o;41113:799::-;41268:4;41289:15;:2;:13;;;:15::i;:::-;41285:620;;;41341:2;41325:36;;;41362:12;:10;:12::i;:::-;41376:4;41382:7;41391:5;41325:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41321:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41584:1;41567:6;:13;:18;41563:272;;;41610:60;;;;;;;;;;:::i;:::-;;;;;;;;41563:272;41785:6;41779:13;41770:6;41766:2;41762:15;41755:38;41321:529;41458:41;;;41448:51;;;:6;:51;;;;41441:58;;;;;41285:620;41889:4;41882:11;;41113:799;;;;;;;:::o;38370:382::-;38464:1;38450:16;;:2;:16;;;;38442:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38523:16;38531:7;38523;:16::i;:::-;38522:17;38514:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38585:45;38614:1;38618:2;38622:7;38585:20;:45::i;:::-;38660:1;38643:9;:13;38653:2;38643:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38691:2;38672:7;:16;38680:7;38672:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38736:7;38732:2;38711:33;;38728:1;38711:33;;;;;;;;;;;;38370:382;;:::o;13206:387::-;13266:4;13474:12;13541:7;13529:20;13521:28;;13584:1;13577:4;:8;13570:15;;;13206:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:::-;12937:3;12958:67;13022:2;13017:3;12958:67;:::i;:::-;12951:74;;13034:93;13123:3;13034:93;:::i;:::-;13152:2;13147:3;13143:12;13136:19;;12795:366;;;:::o;13167:::-;13309:3;13330:67;13394:2;13389:3;13330:67;:::i;:::-;13323:74;;13406:93;13495:3;13406:93;:::i;:::-;13524:2;13519:3;13515:12;13508:19;;13167:366;;;:::o;13539:::-;13681:3;13702:67;13766:2;13761:3;13702:67;:::i;:::-;13695:74;;13778:93;13867:3;13778:93;:::i;:::-;13896:2;13891:3;13887:12;13880:19;;13539:366;;;:::o;13911:::-;14053:3;14074:67;14138:2;14133:3;14074:67;:::i;:::-;14067:74;;14150:93;14239:3;14150:93;:::i;:::-;14268:2;14263:3;14259:12;14252:19;;13911:366;;;:::o;14283:::-;14425:3;14446:67;14510:2;14505:3;14446:67;:::i;:::-;14439:74;;14522:93;14611:3;14522:93;:::i;:::-;14640:2;14635:3;14631:12;14624:19;;14283:366;;;:::o;14655:::-;14797:3;14818:67;14882:2;14877:3;14818:67;:::i;:::-;14811:74;;14894:93;14983:3;14894:93;:::i;:::-;15012:2;15007:3;15003:12;14996:19;;14655:366;;;:::o;15027:::-;15169:3;15190:67;15254:2;15249:3;15190:67;:::i;:::-;15183:74;;15266:93;15355:3;15266:93;:::i;:::-;15384:2;15379:3;15375:12;15368:19;;15027:366;;;:::o;15399:::-;15541:3;15562:67;15626:2;15621:3;15562:67;:::i;:::-;15555:74;;15638:93;15727:3;15638:93;:::i;:::-;15756:2;15751:3;15747:12;15740:19;;15399:366;;;:::o;15771:::-;15913:3;15934:67;15998:2;15993:3;15934:67;:::i;:::-;15927:74;;16010:93;16099:3;16010:93;:::i;:::-;16128:2;16123:3;16119:12;16112:19;;15771:366;;;:::o;16143:::-;16285:3;16306:67;16370:2;16365:3;16306:67;:::i;:::-;16299:74;;16382:93;16471:3;16382:93;:::i;:::-;16500:2;16495:3;16491:12;16484:19;;16143:366;;;:::o;16515:118::-;16602:24;16620:5;16602:24;:::i;:::-;16597:3;16590:37;16515:118;;:::o;16639:435::-;16819:3;16841:95;16932:3;16923:6;16841:95;:::i;:::-;16834:102;;16953:95;17044:3;17035:6;16953:95;:::i;:::-;16946:102;;17065:3;17058:10;;16639:435;;;;;:::o;17080:222::-;17173:4;17211:2;17200:9;17196:18;17188:26;;17224:71;17292:1;17281:9;17277:17;17268:6;17224:71;:::i;:::-;17080:222;;;;:::o;17308:640::-;17503:4;17541:3;17530:9;17526:19;17518:27;;17555:71;17623:1;17612:9;17608:17;17599:6;17555:71;:::i;:::-;17636:72;17704:2;17693:9;17689:18;17680:6;17636:72;:::i;:::-;17718;17786:2;17775:9;17771:18;17762:6;17718:72;:::i;:::-;17837:9;17831:4;17827:20;17822:2;17811:9;17807:18;17800:48;17865:76;17936:4;17927:6;17865:76;:::i;:::-;17857:84;;17308:640;;;;;;;:::o;17954:210::-;18041:4;18079:2;18068:9;18064:18;18056:26;;18092:65;18154:1;18143:9;18139:17;18130:6;18092:65;:::i;:::-;17954:210;;;;:::o;18170:313::-;18283:4;18321:2;18310:9;18306:18;18298:26;;18370:9;18364:4;18360:20;18356:1;18345:9;18341:17;18334:47;18398:78;18471:4;18462:6;18398:78;:::i;:::-;18390:86;;18170:313;;;;:::o;18489:419::-;18655:4;18693:2;18682:9;18678:18;18670:26;;18742:9;18736:4;18732:20;18728:1;18717:9;18713:17;18706:47;18770:131;18896:4;18770:131;:::i;:::-;18762:139;;18489:419;;;:::o;18914:::-;19080:4;19118:2;19107:9;19103:18;19095:26;;19167:9;19161:4;19157:20;19153:1;19142:9;19138:17;19131:47;19195:131;19321:4;19195:131;:::i;:::-;19187:139;;18914:419;;;:::o;19339:::-;19505:4;19543:2;19532:9;19528:18;19520:26;;19592:9;19586:4;19582:20;19578:1;19567:9;19563:17;19556:47;19620:131;19746:4;19620:131;:::i;:::-;19612:139;;19339:419;;;:::o;19764:::-;19930:4;19968:2;19957:9;19953:18;19945:26;;20017:9;20011:4;20007:20;20003:1;19992:9;19988:17;19981:47;20045:131;20171:4;20045:131;:::i;:::-;20037:139;;19764:419;;;:::o;20189:::-;20355:4;20393:2;20382:9;20378:18;20370:26;;20442:9;20436:4;20432:20;20428:1;20417:9;20413:17;20406:47;20470:131;20596:4;20470:131;:::i;:::-;20462:139;;20189:419;;;:::o;20614:::-;20780:4;20818:2;20807:9;20803:18;20795:26;;20867:9;20861:4;20857:20;20853:1;20842:9;20838:17;20831:47;20895:131;21021:4;20895:131;:::i;:::-;20887:139;;20614:419;;;:::o;21039:::-;21205:4;21243:2;21232:9;21228:18;21220:26;;21292:9;21286:4;21282:20;21278:1;21267:9;21263:17;21256:47;21320:131;21446:4;21320:131;:::i;:::-;21312:139;;21039:419;;;:::o;21464:::-;21630:4;21668:2;21657:9;21653:18;21645:26;;21717:9;21711:4;21707:20;21703:1;21692:9;21688:17;21681:47;21745:131;21871:4;21745:131;:::i;:::-;21737:139;;21464:419;;;:::o;21889:::-;22055:4;22093:2;22082:9;22078:18;22070:26;;22142:9;22136:4;22132:20;22128:1;22117:9;22113:17;22106:47;22170:131;22296:4;22170:131;:::i;:::-;22162:139;;21889:419;;;:::o;22314:::-;22480:4;22518:2;22507:9;22503:18;22495:26;;22567:9;22561:4;22557:20;22553:1;22542:9;22538:17;22531:47;22595:131;22721:4;22595:131;:::i;:::-;22587:139;;22314:419;;;:::o;22739:::-;22905:4;22943:2;22932:9;22928:18;22920:26;;22992:9;22986:4;22982:20;22978:1;22967:9;22963:17;22956:47;23020:131;23146:4;23020:131;:::i;:::-;23012:139;;22739:419;;;:::o;23164:::-;23330:4;23368:2;23357:9;23353:18;23345:26;;23417:9;23411:4;23407:20;23403:1;23392:9;23388:17;23381:47;23445:131;23571:4;23445:131;:::i;:::-;23437:139;;23164:419;;;:::o;23589:::-;23755:4;23793:2;23782:9;23778:18;23770:26;;23842:9;23836:4;23832:20;23828:1;23817:9;23813:17;23806:47;23870:131;23996:4;23870:131;:::i;:::-;23862:139;;23589:419;;;:::o;24014:::-;24180:4;24218:2;24207:9;24203:18;24195:26;;24267:9;24261:4;24257:20;24253:1;24242:9;24238:17;24231:47;24295:131;24421:4;24295:131;:::i;:::-;24287:139;;24014:419;;;:::o;24439:::-;24605:4;24643:2;24632:9;24628:18;24620:26;;24692:9;24686:4;24682:20;24678:1;24667:9;24663:17;24656:47;24720:131;24846:4;24720:131;:::i;:::-;24712:139;;24439:419;;;:::o;24864:::-;25030:4;25068:2;25057:9;25053:18;25045:26;;25117:9;25111:4;25107:20;25103:1;25092:9;25088:17;25081:47;25145:131;25271:4;25145:131;:::i;:::-;25137:139;;24864:419;;;:::o;25289:::-;25455:4;25493:2;25482:9;25478:18;25470:26;;25542:9;25536:4;25532:20;25528:1;25517:9;25513:17;25506:47;25570:131;25696:4;25570:131;:::i;:::-;25562:139;;25289:419;;;:::o;25714:::-;25880:4;25918:2;25907:9;25903:18;25895:26;;25967:9;25961:4;25957:20;25953:1;25942:9;25938:17;25931:47;25995:131;26121:4;25995:131;:::i;:::-;25987:139;;25714:419;;;:::o;26139:::-;26305:4;26343:2;26332:9;26328:18;26320:26;;26392:9;26386:4;26382:20;26378:1;26367:9;26363:17;26356:47;26420:131;26546:4;26420:131;:::i;:::-;26412:139;;26139:419;;;:::o;26564:::-;26730:4;26768:2;26757:9;26753:18;26745:26;;26817:9;26811:4;26807:20;26803:1;26792:9;26788:17;26781:47;26845:131;26971:4;26845:131;:::i;:::-;26837:139;;26564:419;;;:::o;26989:::-;27155:4;27193:2;27182:9;27178:18;27170:26;;27242:9;27236:4;27232:20;27228:1;27217:9;27213:17;27206:47;27270:131;27396:4;27270:131;:::i;:::-;27262:139;;26989:419;;;:::o;27414:::-;27580:4;27618:2;27607:9;27603:18;27595:26;;27667:9;27661:4;27657:20;27653:1;27642:9;27638:17;27631:47;27695:131;27821:4;27695:131;:::i;:::-;27687:139;;27414:419;;;:::o;27839:222::-;27932:4;27970:2;27959:9;27955:18;27947:26;;27983:71;28051:1;28040:9;28036:17;28027:6;27983:71;:::i;:::-;27839:222;;;;:::o;28067:129::-;28101:6;28128:20;;:::i;:::-;28118:30;;28157:33;28185:4;28177:6;28157:33;:::i;:::-;28067:129;;;:::o;28202:75::-;28235:6;28268:2;28262:9;28252:19;;28202:75;:::o;28283:307::-;28344:4;28434:18;28426:6;28423:30;28420:56;;;28456:18;;:::i;:::-;28420:56;28494:29;28516:6;28494:29;:::i;:::-;28486:37;;28578:4;28572;28568:15;28560:23;;28283:307;;;:::o;28596:98::-;28647:6;28681:5;28675:12;28665:22;;28596:98;;;:::o;28700:99::-;28752:6;28786:5;28780:12;28770:22;;28700:99;;;:::o;28805:168::-;28888:11;28922:6;28917:3;28910:19;28962:4;28957:3;28953:14;28938:29;;28805:168;;;;:::o;28979:169::-;29063:11;29097:6;29092:3;29085:19;29137:4;29132:3;29128:14;29113:29;;28979:169;;;;:::o;29154:148::-;29256:11;29293:3;29278:18;;29154:148;;;;:::o;29308:305::-;29348:3;29367:20;29385:1;29367:20;:::i;:::-;29362:25;;29401:20;29419:1;29401:20;:::i;:::-;29396:25;;29555:1;29487:66;29483:74;29480:1;29477:81;29474:107;;;29561:18;;:::i;:::-;29474:107;29605:1;29602;29598:9;29591:16;;29308:305;;;;:::o;29619:185::-;29659:1;29676:20;29694:1;29676:20;:::i;:::-;29671:25;;29710:20;29728:1;29710:20;:::i;:::-;29705:25;;29749:1;29739:35;;29754:18;;:::i;:::-;29739:35;29796:1;29793;29789:9;29784:14;;29619:185;;;;:::o;29810:348::-;29850:7;29873:20;29891:1;29873:20;:::i;:::-;29868:25;;29907:20;29925:1;29907:20;:::i;:::-;29902:25;;30095:1;30027:66;30023:74;30020:1;30017:81;30012:1;30005:9;29998:17;29994:105;29991:131;;;30102:18;;:::i;:::-;29991:131;30150:1;30147;30143:9;30132:20;;29810:348;;;;:::o;30164:191::-;30204:4;30224:20;30242:1;30224:20;:::i;:::-;30219:25;;30258:20;30276:1;30258:20;:::i;:::-;30253:25;;30297:1;30294;30291:8;30288:34;;;30302:18;;:::i;:::-;30288:34;30347:1;30344;30340:9;30332:17;;30164:191;;;;:::o;30361:96::-;30398:7;30427:24;30445:5;30427:24;:::i;:::-;30416:35;;30361:96;;;:::o;30463:90::-;30497:7;30540:5;30533:13;30526:21;30515:32;;30463:90;;;:::o;30559:149::-;30595:7;30635:66;30628:5;30624:78;30613:89;;30559:149;;;:::o;30714:126::-;30751:7;30791:42;30784:5;30780:54;30769:65;;30714:126;;;:::o;30846:77::-;30883:7;30912:5;30901:16;;30846:77;;;:::o;30929:154::-;31013:6;31008:3;31003;30990:30;31075:1;31066:6;31061:3;31057:16;31050:27;30929:154;;;:::o;31089:307::-;31157:1;31167:113;31181:6;31178:1;31175:13;31167:113;;;31266:1;31261:3;31257:11;31251:18;31247:1;31242:3;31238:11;31231:39;31203:2;31200:1;31196:10;31191:15;;31167:113;;;31298:6;31295:1;31292:13;31289:101;;;31378:1;31369:6;31364:3;31360:16;31353:27;31289:101;31138:258;31089:307;;;:::o;31402:320::-;31446:6;31483:1;31477:4;31473:12;31463:22;;31530:1;31524:4;31520:12;31551:18;31541:81;;31607:4;31599:6;31595:17;31585:27;;31541:81;31669:2;31661:6;31658:14;31638:18;31635:38;31632:84;;;31688:18;;:::i;:::-;31632:84;31453:269;31402:320;;;:::o;31728:281::-;31811:27;31833:4;31811:27;:::i;:::-;31803:6;31799:40;31941:6;31929:10;31926:22;31905:18;31893:10;31890:34;31887:62;31884:88;;;31952:18;;:::i;:::-;31884:88;31992:10;31988:2;31981:22;31771:238;31728:281;;:::o;32015:233::-;32054:3;32077:24;32095:5;32077:24;:::i;:::-;32068:33;;32123:66;32116:5;32113:77;32110:103;;;32193:18;;:::i;:::-;32110:103;32240:1;32233:5;32229:13;32222:20;;32015:233;;;:::o;32254:176::-;32286:1;32303:20;32321:1;32303:20;:::i;:::-;32298:25;;32337:20;32355:1;32337:20;:::i;:::-;32332:25;;32376:1;32366:35;;32381:18;;:::i;:::-;32366:35;32422:1;32419;32415:9;32410:14;;32254:176;;;;:::o;32436:180::-;32484:77;32481:1;32474:88;32581:4;32578:1;32571:15;32605:4;32602:1;32595:15;32622:180;32670:77;32667:1;32660:88;32767:4;32764:1;32757:15;32791:4;32788:1;32781:15;32808:180;32856:77;32853:1;32846:88;32953:4;32950:1;32943:15;32977:4;32974:1;32967:15;32994:180;33042:77;33039:1;33032:88;33139:4;33136:1;33129:15;33163:4;33160:1;33153:15;33180:180;33228:77;33225:1;33218:88;33325:4;33322:1;33315:15;33349:4;33346:1;33339:15;33366:117;33475:1;33472;33465:12;33489:117;33598:1;33595;33588:12;33612:117;33721:1;33718;33711:12;33735:117;33844:1;33841;33834:12;33858:117;33967:1;33964;33957:12;33981:117;34090:1;34087;34080:12;34104:102;34145:6;34196:2;34192:7;34187:2;34180:5;34176:14;34172:28;34162:38;;34104:102;;;:::o;34212:169::-;34352:21;34348:1;34340:6;34336:14;34329:45;34212:169;:::o;34387:237::-;34527:34;34523:1;34515:6;34511:14;34504:58;34596:20;34591:2;34583:6;34579:15;34572:45;34387:237;:::o;34630:225::-;34770:34;34766:1;34758:6;34754:14;34747:58;34839:8;34834:2;34826:6;34822:15;34815:33;34630:225;:::o;34861:178::-;35001:30;34997:1;34989:6;34985:14;34978:54;34861:178;:::o;35045:223::-;35185:34;35181:1;35173:6;35169:14;35162:58;35254:6;35249:2;35241:6;35237:15;35230:31;35045:223;:::o;35274:175::-;35414:27;35410:1;35402:6;35398:14;35391:51;35274:175;:::o;35455:181::-;35595:33;35591:1;35583:6;35579:14;35572:57;35455:181;:::o;35642:231::-;35782:34;35778:1;35770:6;35766:14;35759:58;35851:14;35846:2;35838:6;35834:15;35827:39;35642:231;:::o;35879:243::-;36019:34;36015:1;36007:6;36003:14;35996:58;36088:26;36083:2;36075:6;36071:15;36064:51;35879:243;:::o;36128:229::-;36268:34;36264:1;36256:6;36252:14;36245:58;36337:12;36332:2;36324:6;36320:15;36313:37;36128:229;:::o;36363:228::-;36503:34;36499:1;36491:6;36487:14;36480:58;36572:11;36567:2;36559:6;36555:15;36548:36;36363:228;:::o;36597:175::-;36737:27;36733:1;36725:6;36721:14;36714:51;36597:175;:::o;36778:182::-;36918:34;36914:1;36906:6;36902:14;36895:58;36778:182;:::o;36966:231::-;37106:34;37102:1;37094:6;37090:14;37083:58;37175:14;37170:2;37162:6;37158:15;37151:39;36966:231;:::o;37203:182::-;37343:34;37339:1;37331:6;37327:14;37320:58;37203:182;:::o;37391:228::-;37531:34;37527:1;37519:6;37515:14;37508:58;37600:11;37595:2;37587:6;37583:15;37576:36;37391:228;:::o;37625:234::-;37765:34;37761:1;37753:6;37749:14;37742:58;37834:17;37829:2;37821:6;37817:15;37810:42;37625:234;:::o;37865:220::-;38005:34;38001:1;37993:6;37989:14;37982:58;38074:3;38069:2;38061:6;38057:15;38050:28;37865:220;:::o;38091:236::-;38231:34;38227:1;38219:6;38215:14;38208:58;38300:19;38295:2;38287:6;38283:15;38276:44;38091:236;:::o;38333:170::-;38473:22;38469:1;38461:6;38457:14;38450:46;38333:170;:::o;38509:164::-;38649:16;38645:1;38637:6;38633:14;38626:40;38509:164;:::o;38679:165::-;38819:17;38815:1;38807:6;38803:14;38796:41;38679:165;:::o;38850:122::-;38923:24;38941:5;38923:24;:::i;:::-;38916:5;38913:35;38903:63;;38962:1;38959;38952:12;38903:63;38850:122;:::o;38978:116::-;39048:21;39063:5;39048:21;:::i;:::-;39041:5;39038:32;39028:60;;39084:1;39081;39074:12;39028:60;38978:116;:::o;39100:120::-;39172:23;39189:5;39172:23;:::i;:::-;39165:5;39162:34;39152:62;;39210:1;39207;39200:12;39152:62;39100:120;:::o;39226:122::-;39299:24;39317:5;39299:24;:::i;:::-;39292:5;39289:35;39279:63;;39338:1;39335;39328:12;39279:63;39226:122;:::o
Swarm Source
ipfs://b8f94fe61063628eb5249b1df8c8733eb1b99162c3599348f0081b29d75a01ad
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.