Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,000 GB
Holders
464
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
50 GBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GalaxyBirds
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-30 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/Galaxy birds.sol pragma solidity ^0.8.4; contract GalaxyBirds is ERC721A, Ownable { uint256 MAX_MINTS = 50; uint256 MAX_SUPPLY = 10000; uint256 public mintRate = 0.015 ether; string public baseURI = "ipfs://QmQuopAatrEgf5DbXu41FL14Q6eRfWEDvAU8xRscnZ3anL/"; constructor() ERC721A("Galaxy Birds", "GB") {} function mint(uint256 quantity) external payable { // _safeMint's second argument now takes in a quantity, not a tokenId. require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); require(msg.value >= (mintRate * quantity), "Not enough ether sent"); _safeMint(msg.sender, quantity); } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function setMintRate(uint256 _mintRate) public onlyOwner { mintRate = _mintRate; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526032600955612710600a5566354a6ba7a18000600b556040518060600160405280603681526020016200325b60369139600c90805190602001906200004b92919062000209565b503480156200005957600080fd5b506040518060400160405280600c81526020017f47616c61787920426972647300000000000000000000000000000000000000008152506040518060400160405280600281526020017f47420000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000de92919062000209565b508060039080519060200190620000f792919062000209565b50620001086200013660201b60201c565b600081905550505062000130620001246200013b60201b60201c565b6200014360201b60201c565b6200031e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021790620002b9565b90600052602060002090601f0160209004810192826200023b576000855562000287565b82601f106200025657805160ff191683800117855562000287565b8280016001018555821562000287579182015b828111156200028657825182559160200191906001019062000269565b5b5090506200029691906200029a565b5090565b5b80821115620002b55760008160009055506001016200029b565b5090565b60006002820490506001821680620002d257607f821691505b60208210811415620002e957620002e8620002ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612f2d806200032e6000396000f3fe6080604052600436106101355760003560e01c8063715018a6116100ab578063b88d4fde1161006f578063b88d4fde146103e6578063c87b56dd1461040f578063ca0dcf161461044c578063dbe2193f14610477578063e985e9c5146104a0578063f2fde38b146104dd57610135565b8063715018a6146103345780638da5cb5b1461034b57806395d89b4114610376578063a0712d68146103a1578063a22cb465146103bd57610135565b806323b872dd116100fd57806323b872dd146102335780633ccfd60b1461025c57806342842e0e146102665780636352211e1461028f5780636c0360eb146102cc57806370a08231146102f757610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c91906125ce565b610506565b60405161016e919061285f565b60405180910390f35b34801561018357600080fd5b5061018c6105e8565b604051610199919061287a565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190612628565b61067a565b6040516101d691906127f8565b60405180910390f35b3480156101eb57600080fd5b506102066004803603810190610201919061258e565b6106f6565b005b34801561021457600080fd5b5061021d610801565b60405161022a919061293c565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190612478565b610818565b005b610264610828565b005b34801561027257600080fd5b5061028d60048036038101906102889190612478565b6108f4565b005b34801561029b57600080fd5b506102b660048036038101906102b19190612628565b610914565b6040516102c391906127f8565b60405180910390f35b3480156102d857600080fd5b506102e161092a565b6040516102ee919061287a565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061240b565b6109b8565b60405161032b919061293c565b60405180910390f35b34801561034057600080fd5b50610349610a88565b005b34801561035757600080fd5b50610360610b10565b60405161036d91906127f8565b60405180910390f35b34801561038257600080fd5b5061038b610b3a565b604051610398919061287a565b60405180910390f35b6103bb60048036038101906103b69190612628565b610bcc565b005b3480156103c957600080fd5b506103e460048036038101906103df919061254e565b610cd8565b005b3480156103f257600080fd5b5061040d600480360381019061040891906124cb565b610e50565b005b34801561041b57600080fd5b5061043660048036038101906104319190612628565b610ecc565b604051610443919061287a565b60405180910390f35b34801561045857600080fd5b50610461610f6b565b60405161046e919061293c565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612628565b610f71565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612438565b610ff7565b6040516104d4919061285f565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff919061240b565b61108b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e157506105e082611183565b5b9050919050565b6060600280546105f790612bbb565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612bbb565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b6000610685826111ed565b6106bb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070182610914565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610769576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661078861123b565b73ffffffffffffffffffffffffffffffffffffffff16141580156107ba57506107b8816107b361123b565b610ff7565b155b156107f1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107fc838383611243565b505050565b600061080b6112f5565b6001546000540303905090565b6108238383836112fa565b505050565b61083061123b565b73ffffffffffffffffffffffffffffffffffffffff1661084e610b10565b73ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b906128fc565b60405180910390fd5b6108ac610b10565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156108f1573d6000803e3d6000fd5b50565b61090f83838360405180602001604052806000815250610e50565b505050565b600061091f826117b0565b600001519050919050565b600c805461093790612bbb565b80601f016020809104026020016040519081016040528092919081815260200182805461096390612bbb565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a20576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610a9061123b565b73ffffffffffffffffffffffffffffffffffffffff16610aae610b10565b73ffffffffffffffffffffffffffffffffffffffff1614610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb906128fc565b60405180910390fd5b610b0e6000611a3f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b4990612bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7590612bbb565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b5050505050905090565b600954610bd833611b05565b82610be391906129f0565b1115610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b906128bc565b60405180910390fd5b600a5481610c30610801565b610c3a91906129f0565b1115610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c72906128dc565b60405180910390fd5b80600b54610c899190612a77565b341015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc29061291c565b60405180910390fd5b610cd53382611b6f565b50565b610ce061123b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d45576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d5261123b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dff61123b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e44919061285f565b60405180910390a35050565b610e5b8484846112fa565b610e7a8373ffffffffffffffffffffffffffffffffffffffff16611b8d565b8015610e8f5750610e8d84848484611bb0565b155b15610ec6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610ed7826111ed565b610f0d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f17611d10565b9050600081511415610f385760405180602001604052806000815250610f63565b80610f4284611da2565b604051602001610f539291906127d4565b6040516020818303038152906040525b915050919050565b600b5481565b610f7961123b565b73ffffffffffffffffffffffffffffffffffffffff16610f97610b10565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe4906128fc565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61109361123b565b73ffffffffffffffffffffffffffffffffffffffff166110b1610b10565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe906128fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e9061289c565b60405180910390fd5b61118081611a3f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816111f86112f5565b11158015611207575060005482105b8015611234575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611305826117b0565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611370576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661139161123b565b73ffffffffffffffffffffffffffffffffffffffff1614806113c057506113bf856113ba61123b565b610ff7565b5b8061140557506113ce61123b565b73ffffffffffffffffffffffffffffffffffffffff166113ed8461067a565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061143e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114a5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114b28585856001611f03565b6114be60008487611243565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561173e57600054821461173d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117a98585856001611f09565b5050505050565b6117b86122ef565b6000829050806117c66112f5565b111580156117d5575060005481105b15611a08576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a0657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118ea578092505050611a3a565b5b600115611a0557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a00578092505050611a3a565b6118eb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611b89828260405180602001604052806000815250611f0f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd661123b565b8786866040518563ffffffff1660e01b8152600401611bf89493929190612813565b602060405180830381600087803b158015611c1257600080fd5b505af1925050508015611c4357506040513d601f19601f82011682018060405250810190611c4091906125fb565b60015b611cbd573d8060008114611c73576040519150601f19603f3d011682016040523d82523d6000602084013e611c78565b606091505b50600081511415611cb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611d1f90612bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4b90612bbb565b8015611d985780601f10611d6d57610100808354040283529160200191611d98565b820191906000526020600020905b815481529060010190602001808311611d7b57829003601f168201915b5050505050905090565b60606000821415611dea576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611efe565b600082905060005b60008214611e1c578080611e0590612c1e565b915050600a82611e159190612a46565b9150611df2565b60008167ffffffffffffffff811115611e3857611e37612d54565b5b6040519080825280601f01601f191660200182016040528015611e6a5781602001600182028036833780820191505090505b5090505b60008514611ef757600182611e839190612ad1565b9150600a85611e929190612c67565b6030611e9e91906129f0565b60f81b818381518110611eb457611eb3612d25565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ef09190612a46565b9450611e6e565b8093505050505b919050565b50505050565b50505050565b611f1c8383836001611f21565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611fc9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fd66000868387611f03565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156121a0575061219f8773ffffffffffffffffffffffffffffffffffffffff16611b8d565b5b15612266575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122156000888480600101955088611bb0565b61224b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156121a657826000541461226157600080fd5b6122d2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612267575b8160008190555050506122e86000868387611f09565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b60006123456123408461297c565b612957565b90508281526020810184848401111561236157612360612d88565b5b61236c848285612b79565b509392505050565b60008135905061238381612e9b565b92915050565b60008135905061239881612eb2565b92915050565b6000813590506123ad81612ec9565b92915050565b6000815190506123c281612ec9565b92915050565b600082601f8301126123dd576123dc612d83565b5b81356123ed848260208601612332565b91505092915050565b60008135905061240581612ee0565b92915050565b60006020828403121561242157612420612d92565b5b600061242f84828501612374565b91505092915050565b6000806040838503121561244f5761244e612d92565b5b600061245d85828601612374565b925050602061246e85828601612374565b9150509250929050565b60008060006060848603121561249157612490612d92565b5b600061249f86828701612374565b93505060206124b086828701612374565b92505060406124c1868287016123f6565b9150509250925092565b600080600080608085870312156124e5576124e4612d92565b5b60006124f387828801612374565b945050602061250487828801612374565b9350506040612515878288016123f6565b925050606085013567ffffffffffffffff81111561253657612535612d8d565b5b612542878288016123c8565b91505092959194509250565b6000806040838503121561256557612564612d92565b5b600061257385828601612374565b925050602061258485828601612389565b9150509250929050565b600080604083850312156125a5576125a4612d92565b5b60006125b385828601612374565b92505060206125c4858286016123f6565b9150509250929050565b6000602082840312156125e4576125e3612d92565b5b60006125f28482850161239e565b91505092915050565b60006020828403121561261157612610612d92565b5b600061261f848285016123b3565b91505092915050565b60006020828403121561263e5761263d612d92565b5b600061264c848285016123f6565b91505092915050565b61265e81612b05565b82525050565b61266d81612b17565b82525050565b600061267e826129ad565b61268881856129c3565b9350612698818560208601612b88565b6126a181612d97565b840191505092915050565b60006126b7826129b8565b6126c181856129d4565b93506126d1818560208601612b88565b6126da81612d97565b840191505092915050565b60006126f0826129b8565b6126fa81856129e5565b935061270a818560208601612b88565b80840191505092915050565b60006127236026836129d4565b915061272e82612da8565b604082019050919050565b60006127466012836129d4565b915061275182612df7565b602082019050919050565b60006127696016836129d4565b915061277482612e20565b602082019050919050565b600061278c6020836129d4565b915061279782612e49565b602082019050919050565b60006127af6015836129d4565b91506127ba82612e72565b602082019050919050565b6127ce81612b6f565b82525050565b60006127e082856126e5565b91506127ec82846126e5565b91508190509392505050565b600060208201905061280d6000830184612655565b92915050565b60006080820190506128286000830187612655565b6128356020830186612655565b61284260408301856127c5565b81810360608301526128548184612673565b905095945050505050565b60006020820190506128746000830184612664565b92915050565b6000602082019050818103600083015261289481846126ac565b905092915050565b600060208201905081810360008301526128b581612716565b9050919050565b600060208201905081810360008301526128d581612739565b9050919050565b600060208201905081810360008301526128f58161275c565b9050919050565b600060208201905081810360008301526129158161277f565b9050919050565b60006020820190508181036000830152612935816127a2565b9050919050565b600060208201905061295160008301846127c5565b92915050565b6000612961612972565b905061296d8282612bed565b919050565b6000604051905090565b600067ffffffffffffffff82111561299757612996612d54565b5b6129a082612d97565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129fb82612b6f565b9150612a0683612b6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a3b57612a3a612c98565b5b828201905092915050565b6000612a5182612b6f565b9150612a5c83612b6f565b925082612a6c57612a6b612cc7565b5b828204905092915050565b6000612a8282612b6f565b9150612a8d83612b6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ac657612ac5612c98565b5b828202905092915050565b6000612adc82612b6f565b9150612ae783612b6f565b925082821015612afa57612af9612c98565b5b828203905092915050565b6000612b1082612b4f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ba6578082015181840152602081019050612b8b565b83811115612bb5576000848401525b50505050565b60006002820490506001821680612bd357607f821691505b60208210811415612be757612be6612cf6565b5b50919050565b612bf682612d97565b810181811067ffffffffffffffff82111715612c1557612c14612d54565b5b80604052505050565b6000612c2982612b6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c5c57612c5b612c98565b5b600182019050919050565b6000612c7282612b6f565b9150612c7d83612b6f565b925082612c8d57612c8c612cc7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b612ea481612b05565b8114612eaf57600080fd5b50565b612ebb81612b17565b8114612ec657600080fd5b50565b612ed281612b23565b8114612edd57600080fd5b50565b612ee981612b6f565b8114612ef457600080fd5b5056fea2646970667358221220287eefd9ea5c992208773242e05d55c0f5f6a326c214e155838958af94327cb364736f6c63430008070033697066733a2f2f516d51756f704161747245676635446258753431464c3134513665526657454476415538785273636e5a33616e4c2f
Deployed Bytecode
0x6080604052600436106101355760003560e01c8063715018a6116100ab578063b88d4fde1161006f578063b88d4fde146103e6578063c87b56dd1461040f578063ca0dcf161461044c578063dbe2193f14610477578063e985e9c5146104a0578063f2fde38b146104dd57610135565b8063715018a6146103345780638da5cb5b1461034b57806395d89b4114610376578063a0712d68146103a1578063a22cb465146103bd57610135565b806323b872dd116100fd57806323b872dd146102335780633ccfd60b1461025c57806342842e0e146102665780636352211e1461028f5780636c0360eb146102cc57806370a08231146102f757610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c91906125ce565b610506565b60405161016e919061285f565b60405180910390f35b34801561018357600080fd5b5061018c6105e8565b604051610199919061287a565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190612628565b61067a565b6040516101d691906127f8565b60405180910390f35b3480156101eb57600080fd5b506102066004803603810190610201919061258e565b6106f6565b005b34801561021457600080fd5b5061021d610801565b60405161022a919061293c565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190612478565b610818565b005b610264610828565b005b34801561027257600080fd5b5061028d60048036038101906102889190612478565b6108f4565b005b34801561029b57600080fd5b506102b660048036038101906102b19190612628565b610914565b6040516102c391906127f8565b60405180910390f35b3480156102d857600080fd5b506102e161092a565b6040516102ee919061287a565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061240b565b6109b8565b60405161032b919061293c565b60405180910390f35b34801561034057600080fd5b50610349610a88565b005b34801561035757600080fd5b50610360610b10565b60405161036d91906127f8565b60405180910390f35b34801561038257600080fd5b5061038b610b3a565b604051610398919061287a565b60405180910390f35b6103bb60048036038101906103b69190612628565b610bcc565b005b3480156103c957600080fd5b506103e460048036038101906103df919061254e565b610cd8565b005b3480156103f257600080fd5b5061040d600480360381019061040891906124cb565b610e50565b005b34801561041b57600080fd5b5061043660048036038101906104319190612628565b610ecc565b604051610443919061287a565b60405180910390f35b34801561045857600080fd5b50610461610f6b565b60405161046e919061293c565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612628565b610f71565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612438565b610ff7565b6040516104d4919061285f565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff919061240b565b61108b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e157506105e082611183565b5b9050919050565b6060600280546105f790612bbb565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612bbb565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b6000610685826111ed565b6106bb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070182610914565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610769576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661078861123b565b73ffffffffffffffffffffffffffffffffffffffff16141580156107ba57506107b8816107b361123b565b610ff7565b155b156107f1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107fc838383611243565b505050565b600061080b6112f5565b6001546000540303905090565b6108238383836112fa565b505050565b61083061123b565b73ffffffffffffffffffffffffffffffffffffffff1661084e610b10565b73ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b906128fc565b60405180910390fd5b6108ac610b10565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156108f1573d6000803e3d6000fd5b50565b61090f83838360405180602001604052806000815250610e50565b505050565b600061091f826117b0565b600001519050919050565b600c805461093790612bbb565b80601f016020809104026020016040519081016040528092919081815260200182805461096390612bbb565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a20576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610a9061123b565b73ffffffffffffffffffffffffffffffffffffffff16610aae610b10565b73ffffffffffffffffffffffffffffffffffffffff1614610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb906128fc565b60405180910390fd5b610b0e6000611a3f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b4990612bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7590612bbb565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b5050505050905090565b600954610bd833611b05565b82610be391906129f0565b1115610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b906128bc565b60405180910390fd5b600a5481610c30610801565b610c3a91906129f0565b1115610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c72906128dc565b60405180910390fd5b80600b54610c899190612a77565b341015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc29061291c565b60405180910390fd5b610cd53382611b6f565b50565b610ce061123b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d45576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d5261123b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dff61123b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e44919061285f565b60405180910390a35050565b610e5b8484846112fa565b610e7a8373ffffffffffffffffffffffffffffffffffffffff16611b8d565b8015610e8f5750610e8d84848484611bb0565b155b15610ec6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610ed7826111ed565b610f0d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f17611d10565b9050600081511415610f385760405180602001604052806000815250610f63565b80610f4284611da2565b604051602001610f539291906127d4565b6040516020818303038152906040525b915050919050565b600b5481565b610f7961123b565b73ffffffffffffffffffffffffffffffffffffffff16610f97610b10565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe4906128fc565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61109361123b565b73ffffffffffffffffffffffffffffffffffffffff166110b1610b10565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe906128fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e9061289c565b60405180910390fd5b61118081611a3f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816111f86112f5565b11158015611207575060005482105b8015611234575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611305826117b0565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611370576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661139161123b565b73ffffffffffffffffffffffffffffffffffffffff1614806113c057506113bf856113ba61123b565b610ff7565b5b8061140557506113ce61123b565b73ffffffffffffffffffffffffffffffffffffffff166113ed8461067a565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061143e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114a5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114b28585856001611f03565b6114be60008487611243565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561173e57600054821461173d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117a98585856001611f09565b5050505050565b6117b86122ef565b6000829050806117c66112f5565b111580156117d5575060005481105b15611a08576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a0657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118ea578092505050611a3a565b5b600115611a0557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a00578092505050611a3a565b6118eb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611b89828260405180602001604052806000815250611f0f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd661123b565b8786866040518563ffffffff1660e01b8152600401611bf89493929190612813565b602060405180830381600087803b158015611c1257600080fd5b505af1925050508015611c4357506040513d601f19601f82011682018060405250810190611c4091906125fb565b60015b611cbd573d8060008114611c73576040519150601f19603f3d011682016040523d82523d6000602084013e611c78565b606091505b50600081511415611cb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611d1f90612bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4b90612bbb565b8015611d985780601f10611d6d57610100808354040283529160200191611d98565b820191906000526020600020905b815481529060010190602001808311611d7b57829003601f168201915b5050505050905090565b60606000821415611dea576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611efe565b600082905060005b60008214611e1c578080611e0590612c1e565b915050600a82611e159190612a46565b9150611df2565b60008167ffffffffffffffff811115611e3857611e37612d54565b5b6040519080825280601f01601f191660200182016040528015611e6a5781602001600182028036833780820191505090505b5090505b60008514611ef757600182611e839190612ad1565b9150600a85611e929190612c67565b6030611e9e91906129f0565b60f81b818381518110611eb457611eb3612d25565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ef09190612a46565b9450611e6e565b8093505050505b919050565b50505050565b50505050565b611f1c8383836001611f21565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611fc9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fd66000868387611f03565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156121a0575061219f8773ffffffffffffffffffffffffffffffffffffffff16611b8d565b5b15612266575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122156000888480600101955088611bb0565b61224b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156121a657826000541461226157600080fd5b6122d2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612267575b8160008190555050506122e86000868387611f09565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b60006123456123408461297c565b612957565b90508281526020810184848401111561236157612360612d88565b5b61236c848285612b79565b509392505050565b60008135905061238381612e9b565b92915050565b60008135905061239881612eb2565b92915050565b6000813590506123ad81612ec9565b92915050565b6000815190506123c281612ec9565b92915050565b600082601f8301126123dd576123dc612d83565b5b81356123ed848260208601612332565b91505092915050565b60008135905061240581612ee0565b92915050565b60006020828403121561242157612420612d92565b5b600061242f84828501612374565b91505092915050565b6000806040838503121561244f5761244e612d92565b5b600061245d85828601612374565b925050602061246e85828601612374565b9150509250929050565b60008060006060848603121561249157612490612d92565b5b600061249f86828701612374565b93505060206124b086828701612374565b92505060406124c1868287016123f6565b9150509250925092565b600080600080608085870312156124e5576124e4612d92565b5b60006124f387828801612374565b945050602061250487828801612374565b9350506040612515878288016123f6565b925050606085013567ffffffffffffffff81111561253657612535612d8d565b5b612542878288016123c8565b91505092959194509250565b6000806040838503121561256557612564612d92565b5b600061257385828601612374565b925050602061258485828601612389565b9150509250929050565b600080604083850312156125a5576125a4612d92565b5b60006125b385828601612374565b92505060206125c4858286016123f6565b9150509250929050565b6000602082840312156125e4576125e3612d92565b5b60006125f28482850161239e565b91505092915050565b60006020828403121561261157612610612d92565b5b600061261f848285016123b3565b91505092915050565b60006020828403121561263e5761263d612d92565b5b600061264c848285016123f6565b91505092915050565b61265e81612b05565b82525050565b61266d81612b17565b82525050565b600061267e826129ad565b61268881856129c3565b9350612698818560208601612b88565b6126a181612d97565b840191505092915050565b60006126b7826129b8565b6126c181856129d4565b93506126d1818560208601612b88565b6126da81612d97565b840191505092915050565b60006126f0826129b8565b6126fa81856129e5565b935061270a818560208601612b88565b80840191505092915050565b60006127236026836129d4565b915061272e82612da8565b604082019050919050565b60006127466012836129d4565b915061275182612df7565b602082019050919050565b60006127696016836129d4565b915061277482612e20565b602082019050919050565b600061278c6020836129d4565b915061279782612e49565b602082019050919050565b60006127af6015836129d4565b91506127ba82612e72565b602082019050919050565b6127ce81612b6f565b82525050565b60006127e082856126e5565b91506127ec82846126e5565b91508190509392505050565b600060208201905061280d6000830184612655565b92915050565b60006080820190506128286000830187612655565b6128356020830186612655565b61284260408301856127c5565b81810360608301526128548184612673565b905095945050505050565b60006020820190506128746000830184612664565b92915050565b6000602082019050818103600083015261289481846126ac565b905092915050565b600060208201905081810360008301526128b581612716565b9050919050565b600060208201905081810360008301526128d581612739565b9050919050565b600060208201905081810360008301526128f58161275c565b9050919050565b600060208201905081810360008301526129158161277f565b9050919050565b60006020820190508181036000830152612935816127a2565b9050919050565b600060208201905061295160008301846127c5565b92915050565b6000612961612972565b905061296d8282612bed565b919050565b6000604051905090565b600067ffffffffffffffff82111561299757612996612d54565b5b6129a082612d97565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129fb82612b6f565b9150612a0683612b6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a3b57612a3a612c98565b5b828201905092915050565b6000612a5182612b6f565b9150612a5c83612b6f565b925082612a6c57612a6b612cc7565b5b828204905092915050565b6000612a8282612b6f565b9150612a8d83612b6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ac657612ac5612c98565b5b828202905092915050565b6000612adc82612b6f565b9150612ae783612b6f565b925082821015612afa57612af9612c98565b5b828203905092915050565b6000612b1082612b4f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ba6578082015181840152602081019050612b8b565b83811115612bb5576000848401525b50505050565b60006002820490506001821680612bd357607f821691505b60208210811415612be757612be6612cf6565b5b50919050565b612bf682612d97565b810181811067ffffffffffffffff82111715612c1557612c14612d54565b5b80604052505050565b6000612c2982612b6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c5c57612c5b612c98565b5b600182019050919050565b6000612c7282612b6f565b9150612c7d83612b6f565b925082612c8d57612c8c612cc7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b612ea481612b05565b8114612eaf57600080fd5b50565b612ebb81612b17565b8114612ec657600080fd5b50565b612ed281612b23565b8114612edd57600080fd5b50565b612ee981612b6f565b8114612ef457600080fd5b5056fea2646970667358221220287eefd9ea5c992208773242e05d55c0f5f6a326c214e155838958af94327cb364736f6c63430008070033
Deployed Bytecode Sourcemap
44860:1069:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27043:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30156:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31659:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31222:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26292:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32524:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45600:114;;;:::i;:::-;;32765:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29964:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45016:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27412:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;;;;;;;;;;;:::i;:::-;;4112:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30325:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45159:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31935:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33021:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30500:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44970:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45830:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32293:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5021:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27043:305;27145:4;27197:25;27182:40;;;:11;:40;;;;:105;;;;27254:33;27239:48;;;:11;:48;;;;27182:105;:158;;;;27304:36;27328:11;27304:23;:36::i;:::-;27182:158;27162:178;;27043:305;;;:::o;30156:100::-;30210:13;30243:5;30236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30156:100;:::o;31659:204::-;31727:7;31752:16;31760:7;31752;:16::i;:::-;31747:64;;31777:34;;;;;;;;;;;;;;31747:64;31831:15;:24;31847:7;31831:24;;;;;;;;;;;;;;;;;;;;;31824:31;;31659:204;;;:::o;31222:371::-;31295:13;31311:24;31327:7;31311:15;:24::i;:::-;31295:40;;31356:5;31350:11;;:2;:11;;;31346:48;;;31370:24;;;;;;;;;;;;;;31346:48;31427:5;31411:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31437:37;31454:5;31461:12;:10;:12::i;:::-;31437:16;:37::i;:::-;31436:38;31411:63;31407:138;;;31498:35;;;;;;;;;;;;;;31407:138;31557:28;31566:2;31570:7;31579:5;31557:8;:28::i;:::-;31284:309;31222:371;;:::o;26292:303::-;26336:7;26561:15;:13;:15::i;:::-;26546:12;;26530:13;;:28;:46;26523:53;;26292:303;:::o;32524:170::-;32658:28;32668:4;32674:2;32678:7;32658:9;:28::i;:::-;32524:170;;;:::o;45600:114::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45666:7:::1;:5;:7::i;:::-;45658:25;;:48;45684:21;45658:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45600:114::o:0;32765:185::-;32903:39;32920:4;32926:2;32930:7;32903:39;;;;;;;;;;;;:16;:39::i;:::-;32765:185;;;:::o;29964:125::-;30028:7;30055:21;30068:7;30055:12;:21::i;:::-;:26;;;30048:33;;29964:125;;;:::o;45016:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27412:206::-;27476:7;27517:1;27500:19;;:5;:19;;;27496:60;;;27528:28;;;;;;;;;;;;;;27496:60;27582:12;:19;27595:5;27582:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27574:36;;27567:43;;27412:206;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;30325:104::-;30381:13;30414:7;30407:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30325:104;:::o;45159:433::-;45347:9;;45318:25;45332:10;45318:13;:25::i;:::-;45307:8;:36;;;;:::i;:::-;:49;;45299:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45426:10;;45414:8;45398:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;45390:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45507:8;45496;;:19;;;;:::i;:::-;45482:9;:34;;45474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45553:31;45563:10;45575:8;45553:9;:31::i;:::-;45159:433;:::o;31935:287::-;32046:12;:10;:12::i;:::-;32034:24;;:8;:24;;;32030:54;;;32067:17;;;;;;;;;;;;;;32030:54;32142:8;32097:18;:32;32116:12;:10;:12::i;:::-;32097:32;;;;;;;;;;;;;;;:42;32130:8;32097:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32195:8;32166:48;;32181:12;:10;:12::i;:::-;32166:48;;;32205:8;32166:48;;;;;;:::i;:::-;;;;;;;;31935:287;;:::o;33021:369::-;33188:28;33198:4;33204:2;33208:7;33188:9;:28::i;:::-;33231:15;:2;:13;;;:15::i;:::-;:76;;;;;33251:56;33282:4;33288:2;33292:7;33301:5;33251:30;:56::i;:::-;33250:57;33231:76;33227:156;;;33331:40;;;;;;;;;;;;;;33227:156;33021:369;;;;:::o;30500:318::-;30573:13;30604:16;30612:7;30604;:16::i;:::-;30599:59;;30629:29;;;;;;;;;;;;;;30599:59;30671:21;30695:10;:8;:10::i;:::-;30671:34;;30748:1;30729:7;30723:21;:26;;:87;;;;;;;;;;;;;;;;;30776:7;30785:18;:7;:16;:18::i;:::-;30759:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30723:87;30716:94;;;30500:318;;;:::o;44970:37::-;;;;:::o;45830:96::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45909:9:::1;45898:8;:20;;;;45830:96:::0;:::o;32293:164::-;32390:4;32414:18;:25;32433:5;32414:25;;;;;;;;;;;;;;;:35;32440:8;32414:35;;;;;;;;;;;;;;;;;;;;;;;;;32407:42;;32293:164;;;;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;;;5102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;16919:157::-;17004:4;17043:25;17028:40;;;:11;:40;;;;17021:47;;16919:157;;;:::o;33645:174::-;33702:4;33745:7;33726:15;:13;:15::i;:::-;:26;;:53;;;;;33766:13;;33756:7;:23;33726:53;:85;;;;;33784:11;:20;33796:7;33784:20;;;;;;;;;;;:27;;;;;;;;;;;;33783:28;33726:85;33719:92;;33645:174;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;41802:196::-;41944:2;41917:15;:24;41933:7;41917:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41982:7;41978:2;41962:28;;41971:5;41962:28;;;;;;;;;;;;41802:196;;;:::o;26066:92::-;26122:7;26066:92;:::o;36745:2130::-;36860:35;36898:21;36911:7;36898:12;:21::i;:::-;36860:59;;36958:4;36936:26;;:13;:18;;;:26;;;36932:67;;36971:28;;;;;;;;;;;;;;36932:67;37012:22;37054:4;37038:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37075:36;37092:4;37098:12;:10;:12::i;:::-;37075:16;:36::i;:::-;37038:73;:126;;;;37152:12;:10;:12::i;:::-;37128:36;;:20;37140:7;37128:11;:20::i;:::-;:36;;;37038:126;37012:153;;37183:17;37178:66;;37209:35;;;;;;;;;;;;;;37178:66;37273:1;37259:16;;:2;:16;;;37255:52;;;37284:23;;;;;;;;;;;;;;37255:52;37320:43;37342:4;37348:2;37352:7;37361:1;37320:21;:43::i;:::-;37428:35;37445:1;37449:7;37458:4;37428:8;:35::i;:::-;37789:1;37759:12;:18;37772:4;37759:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37833:1;37805:12;:16;37818:2;37805:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37851:31;37885:11;:20;37897:7;37885:20;;;;;;;;;;;37851:54;;37936:2;37920:8;:13;;;:18;;;;;;;;;;;;;;;;;;37986:15;37953:8;:23;;;:49;;;;;;;;;;;;;;;;;;38254:19;38286:1;38276:7;:11;38254:33;;38302:31;38336:11;:24;38348:11;38336:24;;;;;;;;;;;38302:58;;38404:1;38379:27;;:8;:13;;;;;;;;;;;;:27;;;38375:384;;;38589:13;;38574:11;:28;38570:174;;38643:4;38627:8;:13;;;:20;;;;;;;;;;;;;;;;;;38696:13;:28;;;38670:8;:23;;;:54;;;;;;;;;;;;;;;;;;38570:174;38375:384;37734:1036;;;38806:7;38802:2;38787:27;;38796:4;38787:27;;;;;;;;;;;;38825:42;38846:4;38852:2;38856:7;38865:1;38825:20;:42::i;:::-;36849:2026;;36745:2130;;;:::o;28793:1109::-;28855:21;;:::i;:::-;28889:12;28904:7;28889:22;;28972:4;28953:15;:13;:15::i;:::-;:23;;:47;;;;;28987:13;;28980:4;:20;28953:47;28949:886;;;29021:31;29055:11;:17;29067:4;29055:17;;;;;;;;;;;29021:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29096:9;:16;;;29091:729;;29167:1;29141:28;;:9;:14;;;:28;;;29137:101;;29205:9;29198:16;;;;;;29137:101;29540:261;29547:4;29540:261;;;29580:6;;;;;;;;29625:11;:17;29637:4;29625:17;;;;;;;;;;;29613:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29699:1;29673:28;;:9;:14;;;:28;;;29669:109;;29741:9;29734:16;;;;;;29669:109;29540:261;;;29091:729;29002:833;28949:886;29863:31;;;;;;;;;;;;;;28793:1109;;;;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5445:128;5382:191;:::o;27700:137::-;27761:7;27796:12;:19;27809:5;27796:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;27788:41;;27781:48;;27700:137;;;:::o;33827:104::-;33896:27;33906:2;33910:8;33896:27;;;;;;;;;;;;:9;:27::i;:::-;33827:104;;:::o;6813:326::-;6873:4;7130:1;7108:7;:19;;;:23;7101:30;;6813:326;;;:::o;42490:667::-;42653:4;42690:2;42674:36;;;42711:12;:10;:12::i;:::-;42725:4;42731:7;42740:5;42674:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42670:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42925:1;42908:6;:13;:18;42904:235;;;42954:40;;;;;;;;;;;;;;42904:235;43097:6;43091:13;43082:6;43078:2;43074:15;43067:38;42670:480;42803:45;;;42793:55;;;:6;:55;;;;42786:62;;;42490:667;;;;;;:::o;45722:100::-;45774:13;45807:7;45800:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45722:100;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;43805:159::-;;;;;:::o;44623:158::-;;;;;:::o;34294:163::-;34417:32;34423:2;34427:8;34437:5;34444:4;34417:5;:32::i;:::-;34294:163;;;:::o;34716:1775::-;34855:20;34878:13;;34855:36;;34920:1;34906:16;;:2;:16;;;34902:48;;;34931:19;;;;;;;;;;;;;;34902:48;34977:1;34965:8;:13;34961:44;;;34987:18;;;;;;;;;;;;;;34961:44;35018:61;35048:1;35052:2;35056:12;35070:8;35018:21;:61::i;:::-;35391:8;35356:12;:16;35369:2;35356:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35455:8;35415:12;:16;35428:2;35415:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35514:2;35481:11;:25;35493:12;35481:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35581:15;35531:11;:25;35543:12;35531:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35614:20;35637:12;35614:35;;35664:11;35693:8;35678:12;:23;35664:37;;35722:4;:23;;;;;35730:15;:2;:13;;;:15::i;:::-;35722:23;35718:641;;;35766:314;35822:12;35818:2;35797:38;;35814:1;35797:38;;;;;;;;;;;;35863:69;35902:1;35906:2;35910:14;;;;;;35926:5;35863:30;:69::i;:::-;35858:174;;35968:40;;;;;;;;;;;;;;35858:174;36075:3;36059:12;:19;;35766:314;;36161:12;36144:13;;:29;36140:43;;36175:8;;;36140:43;35718:641;;;36224:120;36280:14;;;;;;36276:2;36255:40;;36272:1;36255:40;;;;;;;;;;;;36339:3;36323:12;:19;;36224:120;;35718:641;36389:12;36373:13;:28;;;;35331:1082;;36423:60;36452:1;36456:2;36460:12;36474:8;36423:20;:60::i;:::-;34844:1647;34716:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:::-;8109:3;8130:67;8194:2;8189:3;8130:67;:::i;:::-;8123:74;;8206:93;8295:3;8206:93;:::i;:::-;8324:2;8319:3;8315:12;8308:19;;7967:366;;;:::o;8339:::-;8481:3;8502:67;8566:2;8561:3;8502:67;:::i;:::-;8495:74;;8578:93;8667:3;8578:93;:::i;:::-;8696:2;8691:3;8687:12;8680:19;;8339:366;;;:::o;8711:::-;8853:3;8874:67;8938:2;8933:3;8874:67;:::i;:::-;8867:74;;8950:93;9039:3;8950:93;:::i;:::-;9068:2;9063:3;9059:12;9052:19;;8711:366;;;:::o;9083:118::-;9170:24;9188:5;9170:24;:::i;:::-;9165:3;9158:37;9083:118;;:::o;9207:435::-;9387:3;9409:95;9500:3;9491:6;9409:95;:::i;:::-;9402:102;;9521:95;9612:3;9603:6;9521:95;:::i;:::-;9514:102;;9633:3;9626:10;;9207:435;;;;;:::o;9648:222::-;9741:4;9779:2;9768:9;9764:18;9756:26;;9792:71;9860:1;9849:9;9845:17;9836:6;9792:71;:::i;:::-;9648:222;;;;:::o;9876:640::-;10071:4;10109:3;10098:9;10094:19;10086:27;;10123:71;10191:1;10180:9;10176:17;10167:6;10123:71;:::i;:::-;10204:72;10272:2;10261:9;10257:18;10248:6;10204:72;:::i;:::-;10286;10354:2;10343:9;10339:18;10330:6;10286:72;:::i;:::-;10405:9;10399:4;10395:20;10390:2;10379:9;10375:18;10368:48;10433:76;10504:4;10495:6;10433:76;:::i;:::-;10425:84;;9876:640;;;;;;;:::o;10522:210::-;10609:4;10647:2;10636:9;10632:18;10624:26;;10660:65;10722:1;10711:9;10707:17;10698:6;10660:65;:::i;:::-;10522:210;;;;:::o;10738:313::-;10851:4;10889:2;10878:9;10874:18;10866:26;;10938:9;10932:4;10928:20;10924:1;10913:9;10909:17;10902:47;10966:78;11039:4;11030:6;10966:78;:::i;:::-;10958:86;;10738:313;;;;:::o;11057:419::-;11223:4;11261:2;11250:9;11246:18;11238:26;;11310:9;11304:4;11300:20;11296:1;11285:9;11281:17;11274:47;11338:131;11464:4;11338:131;:::i;:::-;11330:139;;11057:419;;;:::o;11482:::-;11648:4;11686:2;11675:9;11671:18;11663:26;;11735:9;11729:4;11725:20;11721:1;11710:9;11706:17;11699:47;11763:131;11889:4;11763:131;:::i;:::-;11755:139;;11482:419;;;:::o;11907:::-;12073:4;12111:2;12100:9;12096:18;12088:26;;12160:9;12154:4;12150:20;12146:1;12135:9;12131:17;12124:47;12188:131;12314:4;12188:131;:::i;:::-;12180:139;;11907:419;;;:::o;12332:::-;12498:4;12536:2;12525:9;12521:18;12513:26;;12585:9;12579:4;12575:20;12571:1;12560:9;12556:17;12549:47;12613:131;12739:4;12613:131;:::i;:::-;12605:139;;12332:419;;;:::o;12757:::-;12923:4;12961:2;12950:9;12946:18;12938:26;;13010:9;13004:4;13000:20;12996:1;12985:9;12981:17;12974:47;13038:131;13164:4;13038:131;:::i;:::-;13030:139;;12757:419;;;:::o;13182:222::-;13275:4;13313:2;13302:9;13298:18;13290:26;;13326:71;13394:1;13383:9;13379:17;13370:6;13326:71;:::i;:::-;13182:222;;;;:::o;13410:129::-;13444:6;13471:20;;:::i;:::-;13461:30;;13500:33;13528:4;13520:6;13500:33;:::i;:::-;13410:129;;;:::o;13545:75::-;13578:6;13611:2;13605:9;13595:19;;13545:75;:::o;13626:307::-;13687:4;13777:18;13769:6;13766:30;13763:56;;;13799:18;;:::i;:::-;13763:56;13837:29;13859:6;13837:29;:::i;:::-;13829:37;;13921:4;13915;13911:15;13903:23;;13626:307;;;:::o;13939:98::-;13990:6;14024:5;14018:12;14008:22;;13939:98;;;:::o;14043:99::-;14095:6;14129:5;14123:12;14113:22;;14043:99;;;:::o;14148:168::-;14231:11;14265:6;14260:3;14253:19;14305:4;14300:3;14296:14;14281:29;;14148:168;;;;:::o;14322:169::-;14406:11;14440:6;14435:3;14428:19;14480:4;14475:3;14471:14;14456:29;;14322:169;;;;:::o;14497:148::-;14599:11;14636:3;14621:18;;14497:148;;;;:::o;14651:305::-;14691:3;14710:20;14728:1;14710:20;:::i;:::-;14705:25;;14744:20;14762:1;14744:20;:::i;:::-;14739:25;;14898:1;14830:66;14826:74;14823:1;14820:81;14817:107;;;14904:18;;:::i;:::-;14817:107;14948:1;14945;14941:9;14934:16;;14651:305;;;;:::o;14962:185::-;15002:1;15019:20;15037:1;15019:20;:::i;:::-;15014:25;;15053:20;15071:1;15053:20;:::i;:::-;15048:25;;15092:1;15082:35;;15097:18;;:::i;:::-;15082:35;15139:1;15136;15132:9;15127:14;;14962:185;;;;:::o;15153:348::-;15193:7;15216:20;15234:1;15216:20;:::i;:::-;15211:25;;15250:20;15268:1;15250:20;:::i;:::-;15245:25;;15438:1;15370:66;15366:74;15363:1;15360:81;15355:1;15348:9;15341:17;15337:105;15334:131;;;15445:18;;:::i;:::-;15334:131;15493:1;15490;15486:9;15475:20;;15153:348;;;;:::o;15507:191::-;15547:4;15567:20;15585:1;15567:20;:::i;:::-;15562:25;;15601:20;15619:1;15601:20;:::i;:::-;15596:25;;15640:1;15637;15634:8;15631:34;;;15645:18;;:::i;:::-;15631:34;15690:1;15687;15683:9;15675:17;;15507:191;;;;:::o;15704:96::-;15741:7;15770:24;15788:5;15770:24;:::i;:::-;15759:35;;15704:96;;;:::o;15806:90::-;15840:7;15883:5;15876:13;15869:21;15858:32;;15806:90;;;:::o;15902:149::-;15938:7;15978:66;15971:5;15967:78;15956:89;;15902:149;;;:::o;16057:126::-;16094:7;16134:42;16127:5;16123:54;16112:65;;16057:126;;;:::o;16189:77::-;16226:7;16255:5;16244:16;;16189:77;;;:::o;16272:154::-;16356:6;16351:3;16346;16333:30;16418:1;16409:6;16404:3;16400:16;16393:27;16272:154;;;:::o;16432:307::-;16500:1;16510:113;16524:6;16521:1;16518:13;16510:113;;;16609:1;16604:3;16600:11;16594:18;16590:1;16585:3;16581:11;16574:39;16546:2;16543:1;16539:10;16534:15;;16510:113;;;16641:6;16638:1;16635:13;16632:101;;;16721:1;16712:6;16707:3;16703:16;16696:27;16632:101;16481:258;16432:307;;;:::o;16745:320::-;16789:6;16826:1;16820:4;16816:12;16806:22;;16873:1;16867:4;16863:12;16894:18;16884:81;;16950:4;16942:6;16938:17;16928:27;;16884:81;17012:2;17004:6;17001:14;16981:18;16978:38;16975:84;;;17031:18;;:::i;:::-;16975:84;16796:269;16745:320;;;:::o;17071:281::-;17154:27;17176:4;17154:27;:::i;:::-;17146:6;17142:40;17284:6;17272:10;17269:22;17248:18;17236:10;17233:34;17230:62;17227:88;;;17295:18;;:::i;:::-;17227:88;17335:10;17331:2;17324:22;17114:238;17071:281;;:::o;17358:233::-;17397:3;17420:24;17438:5;17420:24;:::i;:::-;17411:33;;17466:66;17459:5;17456:77;17453:103;;;17536:18;;:::i;:::-;17453:103;17583:1;17576:5;17572:13;17565:20;;17358:233;;;:::o;17597:176::-;17629:1;17646:20;17664:1;17646:20;:::i;:::-;17641:25;;17680:20;17698:1;17680:20;:::i;:::-;17675:25;;17719:1;17709:35;;17724:18;;:::i;:::-;17709:35;17765:1;17762;17758:9;17753:14;;17597:176;;;;:::o;17779:180::-;17827:77;17824:1;17817:88;17924:4;17921:1;17914:15;17948:4;17945:1;17938:15;17965:180;18013:77;18010:1;18003:88;18110:4;18107:1;18100:15;18134:4;18131:1;18124:15;18151:180;18199:77;18196:1;18189:88;18296:4;18293:1;18286:15;18320:4;18317:1;18310:15;18337:180;18385:77;18382:1;18375:88;18482:4;18479:1;18472:15;18506:4;18503:1;18496:15;18523:180;18571:77;18568:1;18561:88;18668:4;18665:1;18658:15;18692:4;18689:1;18682:15;18709:117;18818:1;18815;18808:12;18832:117;18941:1;18938;18931:12;18955:117;19064:1;19061;19054:12;19078:117;19187:1;19184;19177:12;19201:102;19242:6;19293:2;19289:7;19284:2;19277:5;19273:14;19269:28;19259:38;;19201:102;;;:::o;19309:225::-;19449:34;19445:1;19437:6;19433:14;19426:58;19518:8;19513:2;19505:6;19501:15;19494:33;19309:225;:::o;19540:168::-;19680:20;19676:1;19668:6;19664:14;19657:44;19540:168;:::o;19714:172::-;19854:24;19850:1;19842:6;19838:14;19831:48;19714:172;:::o;19892:182::-;20032:34;20028:1;20020:6;20016:14;20009:58;19892:182;:::o;20080:171::-;20220:23;20216:1;20208:6;20204:14;20197:47;20080:171;:::o;20257:122::-;20330:24;20348:5;20330:24;:::i;:::-;20323:5;20320:35;20310:63;;20369:1;20366;20359:12;20310:63;20257:122;:::o;20385:116::-;20455:21;20470:5;20455:21;:::i;:::-;20448:5;20445:32;20435:60;;20491:1;20488;20481:12;20435:60;20385:116;:::o;20507:120::-;20579:23;20596:5;20579:23;:::i;:::-;20572:5;20569:34;20559:62;;20617:1;20614;20607:12;20559:62;20507:120;:::o;20633:122::-;20706:24;20724:5;20706:24;:::i;:::-;20699:5;20696:35;20686:63;;20745:1;20742;20735:12;20686:63;20633:122;:::o
Swarm Source
ipfs://287eefd9ea5c992208773242e05d55c0f5f6a326c214e155838958af94327cb3
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.