Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 8 from a total of 8 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Send | 14187103 | 1033 days ago | IN | 0 ETH | 0.01189204 | ||||
Send | 14187053 | 1033 days ago | IN | 0 ETH | 0.01263243 | ||||
Send | 14185547 | 1033 days ago | IN | 0 ETH | 0.01046595 | ||||
Send | 14185528 | 1033 days ago | IN | 0 ETH | 0.01180277 | ||||
Send | 14185509 | 1033 days ago | IN | 0 ETH | 0.0118111 | ||||
Send | 14184408 | 1034 days ago | IN | 0 ETH | 0.00615486 | ||||
Send | 14181946 | 1034 days ago | IN | 0 ETH | 0.01742508 | ||||
Send | 14180732 | 1034 days ago | IN | 0 ETH | 0.01470584 |
Loading...
Loading
Contract Name:
ChicknCoin
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-10 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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 v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.0 (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.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/Chickn.sol pragma solidity ^0.8.7; contract ChicknCoin is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public tokenPrice = 5.5 ether; string public tokenBaseURI = "ipfs://QmbiVFqcji9VcM2Lpz95Q4TMYSx58rBwN8hnnZCyYE3YD3/"; uint256 public constant PRESOLD_TOKENS_AMOUNT = 6; uint256 public constant TOTAL_TOKENS = 932; uint256 public tokensSold = 0; constructor() ERC721("Chick'nCoin", "CHICKN") { } function tokensToBuyAmount() public view returns (uint256) { return TOTAL_TOKENS - PRESOLD_TOKENS_AMOUNT - tokensSold; } function setTokenPrice(uint256 val) external onlyOwner { tokenPrice = val; } function distribute(uint256 []calldata ids) external payable { uint256 perTransfer = msg.value; uint256 numberOfTransfers = 0; for(uint256 i = 0; i < ids.length; i++){ if(_exists(ids[i])) { numberOfTransfers ++; } } require(numberOfTransfers != 0, "Nobody owns the tokens"); perTransfer = perTransfer / numberOfTransfers; for(uint256 i = 0; i < ids.length; i++){ if(_exists(ids[i])) { address payable ownerOfToken = payable(ownerOf(ids[i])); ownerOfToken.transfer(perTransfer); } } } function getDistributionData(uint256 []calldata ids, uint256 value) public view returns (uint256[] memory, address[] memory, uint256) { uint256 numberOfTransfers = 0; for(uint256 i = 0; i < ids.length; i++){ if(_exists(ids[i])) { numberOfTransfers ++; } } uint256 perTransfer = numberOfTransfers == 0 ? 0 : (value / numberOfTransfers); uint256[] memory result = new uint256[](numberOfTransfers); address[] memory resultAddresses = new address[](numberOfTransfers); for(uint256 i = 0; i < ids.length; i++){ if(_exists(ids[i])) { address ownerOfToken = ownerOf(ids[i]); result[i] = ids[i]; resultAddresses[i] = ownerOfToken; } } return (result, resultAddresses, perTransfer); } function transferPresold(uint256 tokenId, address holderAddress) external onlyOwner { require(tokenId >= 1 && tokenId <= PRESOLD_TOKENS_AMOUNT, "tokenId outside of presold range"); _safeMint(holderAddress, tokenId); } function send(uint256 amount, address to) external onlyOwner { require(amount <= tokensToBuyAmount(), "No tokens left for sending"); for(uint256 i = 0; i < amount; i++) { _safeMint(to, PRESOLD_TOKENS_AMOUNT + tokensSold + 1 + i); } tokensSold += amount; } function mint(uint256 amount) external payable { require(msg.value >= tokenPrice * amount, "Incorrect ETH"); require(amount <= tokensToBuyAmount(), "No tokens left for minting"); for(uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, PRESOLD_TOKENS_AMOUNT + tokensSold + 1 + i); } tokensSold += amount; } function _baseURI() internal view override(ERC721) returns (string memory) { return tokenBaseURI; } function setBaseURI(string calldata URI) external onlyOwner { tokenBaseURI = URI; } function withdraw() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRESOLD_TOKENS_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"distribute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"getDistributionData","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256","name":"","type":"uint256"}],"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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"send","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPrice","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":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensToBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"holderAddress","type":"address"}],"name":"transferPresold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
674c53ecdc18a60000600b5560e06040526036608081815290620028a160a03980516200003591600c9160209091019062000129565b506000600d553480156200004857600080fd5b50604080518082018252600b81526a21b434b1b593b721b7b4b760a91b60208083019182528351808501909452600684526521a424a1a5a760d11b9084015281519192916200009a9160009162000129565b508051620000b090600190602084019062000129565b505050620000cd620000c7620000d360201b60201c565b620000d7565b6200020c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013790620001cf565b90600052602060002090601f0160209004810192826200015b5760008555620001a6565b82601f106200017657805160ff1916838001178555620001a6565b82800160010185558215620001a6579182015b82811115620001a657825182559160200191906001019062000189565b50620001b4929150620001b8565b5090565b5b80821115620001b45760008155600101620001b9565b600181811c90821680620001e457607f821691505b602082108114156200020657634e487b7160e01b600052602260045260246000fd5b50919050565b612685806200021c6000396000f3fe6080604052600436106101ee5760003560e01c8063667806521161010d578063a0712d68116100a0578063e50d10de1161006f578063e50d10de14610550578063e985e9c514610565578063eff62510146105ae578063f2fde38b146105ce578063ff45cb95146105ee57600080fd5b8063a0712d68146104dd578063a22cb465146104f0578063b88d4fde14610510578063c87b56dd1461053057600080fd5b8063785d04f5116100dc578063785d04f5146104745780637ff9b596146104945780638da5cb5b146104aa57806395d89b41146104c857600080fd5b806366780652146103f05780636a61e5fc1461041f57806370a082311461043f578063715018a61461045f57600080fd5b80633ccfd60b116101855780634f6ccce7116101545780634f6ccce71461037a578063518ab2a81461039a57806355f804b3146103b05780636352211e146103d057600080fd5b80633ccfd60b1461031d57806342842e0e146103325780634e99b800146103525780634ea4f8e61461036757600080fd5b80630b7abf77116101c15780630b7abf77146102a457806318160ddd146102c857806323b872dd146102dd5780632f745c59146102fd57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046121db565b610603565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61062e565b60405161021f91906123e8565b34801561025657600080fd5b5061026a610265366004612287565b6106c0565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004612123565b61075a565b005b3480156102b057600080fd5b506102ba6103a481565b60405190815260200161021f565b3480156102d457600080fd5b506008546102ba565b3480156102e957600080fd5b506102a26102f8366004611fcf565b610870565b34801561030957600080fd5b506102ba610318366004612123565b6108a1565b34801561032957600080fd5b506102a2610937565b34801561033e57600080fd5b506102a261034d366004611fcf565b610987565b34801561035e57600080fd5b5061023d6109a2565b6102a261037536600461214d565b610a30565b34801561038657600080fd5b506102ba610395366004612287565b610b8b565b3480156103a657600080fd5b506102ba600d5481565b3480156103bc57600080fd5b506102a26103cb366004612215565b610c1e565b3480156103dc57600080fd5b5061026a6103eb366004612287565b610c54565b3480156103fc57600080fd5b5061041061040b36600461218f565b610ccb565b60405161021f9392919061235b565b34801561042b57600080fd5b506102a261043a366004612287565b610e8d565b34801561044b57600080fd5b506102ba61045a366004611f81565b610ebc565b34801561046b57600080fd5b506102a2610f43565b34801561048057600080fd5b506102a261048f3660046122a0565b610f77565b3480156104a057600080fd5b506102ba600b5481565b3480156104b657600080fd5b50600a546001600160a01b031661026a565b3480156104d457600080fd5b5061023d61105f565b6102a26104eb366004612287565b61106e565b3480156104fc57600080fd5b506102a261050b3660046120e7565b61115e565b34801561051c57600080fd5b506102a261052b36600461200b565b61116d565b34801561053c57600080fd5b5061023d61054b366004612287565b6111a5565b34801561055c57600080fd5b506102ba600681565b34801561057157600080fd5b50610213610580366004611f9c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506102a26105c93660046122a0565b611280565b3480156105da57600080fd5b506102a26105e9366004611f81565b611312565b3480156105fa57600080fd5b506102ba6113ad565b60006001600160e01b0319821663780e9d6360e01b14806106285750610628826113cf565b92915050565b60606000805461063d90612561565b80601f016020809104026020016040519081016040528092919081815260200182805461066990612561565b80156106b65780601f1061068b576101008083540402835291602001916106b6565b820191906000526020600020905b81548152906001019060200180831161069957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661073e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076582610c54565b9050806001600160a01b0316836001600160a01b031614156107d35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610735565b336001600160a01b03821614806107ef57506107ef8133610580565b6108615760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610735565b61086b838361141f565b505050565b61087a338261148d565b6108965760405162461bcd60e51b815260040161073590612482565b61086b838383611584565b60006108ac83610ebc565b821061090e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610735565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109615760405162461bcd60e51b81526004016107359061244d565b60405133904780156108fc02916000818181858888f1935050505061098557600080fd5b565b61086b8383836040518060200160405280600081525061116d565b600c80546109af90612561565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90612561565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b346000805b83811015610a9b57610a76858583818110610a5257610a5261260d565b905060200201356000908152600260205260409020546001600160a01b0316151590565b15610a895781610a858161259c565b9250505b80610a938161259c565b915050610a35565b5080610ae25760405162461bcd60e51b81526020600482015260166024820152754e6f626f6479206f776e732074686520746f6b656e7360501b6044820152606401610735565b610aec81836124eb565b915060005b83811015610b8457610b0e858583818110610a5257610a5261260d565b15610b72576000610b36868684818110610b2a57610b2a61260d565b90506020020135610c54565b6040519091506001600160a01b0382169085156108fc029086906000818181858888f19350505050158015610b6f573d6000803e3d6000fd5b50505b80610b7c8161259c565b915050610af1565b5050505050565b6000610b9660085490565b8210610bf95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610735565b60088281548110610c0c57610c0c61260d565b90600052602060002001549050919050565b600a546001600160a01b03163314610c485760405162461bcd60e51b81526004016107359061244d565b61086b600c8383611e80565b6000818152600260205260408120546001600160a01b0316806106285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610735565b606080600080805b86811015610d1557610cf0888883818110610a5257610a5261260d565b15610d035781610cff8161259c565b9250505b80610d0d8161259c565b915050610cd3565b5060008115610d2d57610d2882876124eb565b610d30565b60005b905060008267ffffffffffffffff811115610d4d57610d4d612623565b604051908082528060200260200182016040528015610d76578160200160208202803683370190505b50905060008367ffffffffffffffff811115610d9457610d94612623565b604051908082528060200260200182016040528015610dbd578160200160208202803683370190505b50905060005b89811015610e7c57610de08b8b83818110610a5257610a5261260d565b15610e6a576000610dfc8c8c84818110610b2a57610b2a61260d565b90508b8b83818110610e1057610e1061260d565b90506020020135848381518110610e2957610e2961260d565b60200260200101818152505080838381518110610e4857610e4861260d565b60200260200101906001600160a01b031690816001600160a01b031681525050505b80610e748161259c565b915050610dc3565b509099909850909650945050505050565b600a546001600160a01b03163314610eb75760405162461bcd60e51b81526004016107359061244d565b600b55565b60006001600160a01b038216610f275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610735565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f6d5760405162461bcd60e51b81526004016107359061244d565b610985600061172f565b600a546001600160a01b03163314610fa15760405162461bcd60e51b81526004016107359061244d565b610fa96113ad565b821115610ff85760405162461bcd60e51b815260206004820152601a60248201527f4e6f20746f6b656e73206c65667420666f722073656e64696e670000000000006044820152606401610735565b60005b82811015611043576110318282600d54600661101791906124d3565b6110229060016124d3565b61102c91906124d3565b611781565b8061103b8161259c565b915050610ffb565b5081600d600082825461105691906124d3565b90915550505050565b60606001805461063d90612561565b80600b5461107c91906124ff565b3410156110bb5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610735565b6110c36113ad565b8111156111125760405162461bcd60e51b815260206004820152601a60248201527f4e6f20746f6b656e73206c65667420666f72206d696e74696e670000000000006044820152606401610735565b60005b81811015611143576111313382600d54600661101791906124d3565b8061113b8161259c565b915050611115565b5080600d600082825461115691906124d3565b909155505050565b61116933838361179b565b5050565b611177338361148d565b6111935760405162461bcd60e51b815260040161073590612482565b61119f8484848461186a565b50505050565b6000818152600260205260409020546060906001600160a01b03166112245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610735565b600061122e61189d565b9050600081511161124e5760405180602001604052806000815250611279565b80611258846118ac565b6040516020016112699291906122ef565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112aa5760405162461bcd60e51b81526004016107359061244d565b600182101580156112bc575060068211155b6113085760405162461bcd60e51b815260206004820181905260248201527f746f6b656e4964206f757473696465206f6620707265736f6c642072616e67656044820152606401610735565b6111698183611781565b600a546001600160a01b0316331461133c5760405162461bcd60e51b81526004016107359061244d565b6001600160a01b0381166113a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610735565b6113aa8161172f565b50565b600d546000906113c060066103a461251e565b6113ca919061251e565b905090565b60006001600160e01b031982166380ac58cd60e01b148061140057506001600160e01b03198216635b5e139f60e01b145b8061062857506301ffc9a760e01b6001600160e01b0319831614610628565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061145482610c54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115065760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610735565b600061151183610c54565b9050806001600160a01b0316846001600160a01b0316148061154c5750836001600160a01b0316611541846106c0565b6001600160a01b0316145b8061157c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661159782610c54565b6001600160a01b0316146115ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610735565b6001600160a01b0382166116615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610735565b61166c8383836119aa565b61167760008261141f565b6001600160a01b03831660009081526003602052604081208054600192906116a090849061251e565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ce9084906124d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611169828260405180602001604052806000815250611a62565b816001600160a01b0316836001600160a01b031614156117fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610735565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611875848484611584565b61188184848484611a95565b61119f5760405162461bcd60e51b8152600401610735906123fb565b6060600c805461063d90612561565b6060816118d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118fa57806118e48161259c565b91506118f39050600a836124eb565b91506118d4565b60008167ffffffffffffffff81111561191557611915612623565b6040519080825280601f01601f19166020018201604052801561193f576020820181803683370190505b5090505b841561157c5761195460018361251e565b9150611961600a866125b7565b61196c9060306124d3565b60f81b8183815181106119815761198161260d565b60200101906001600160f81b031916908160001a9053506119a3600a866124eb565b9450611943565b6001600160a01b038316611a0557611a0081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a28565b816001600160a01b0316836001600160a01b031614611a2857611a288382611ba2565b6001600160a01b038216611a3f5761086b81611c3f565b826001600160a01b0316826001600160a01b03161461086b5761086b8282611cee565b611a6c8383611d32565b611a796000848484611a95565b61086b5760405162461bcd60e51b8152600401610735906123fb565b60006001600160a01b0384163b15611b9757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ad990339089908890889060040161231e565b602060405180830381600087803b158015611af357600080fd5b505af1925050508015611b23575060408051601f3d908101601f19168201909252611b20918101906121f8565b60015b611b7d573d808015611b51576040519150601f19603f3d011682016040523d82523d6000602084013e611b56565b606091505b508051611b755760405162461bcd60e51b8152600401610735906123fb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061157c565b506001949350505050565b60006001611baf84610ebc565b611bb9919061251e565b600083815260076020526040902054909150808214611c0c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c519060019061251e565b60008381526009602052604081205460088054939450909284908110611c7957611c7961260d565b906000526020600020015490508060088381548110611c9a57611c9a61260d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cd257611cd26125f7565b6001900381819060005260206000200160009055905550505050565b6000611cf983610ebc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610735565b6000818152600260205260409020546001600160a01b031615611ded5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610735565b611df9600083836119aa565b6001600160a01b0382166000908152600360205260408120805460019290611e229084906124d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e8c90612561565b90600052602060002090601f016020900481019282611eae5760008555611ef4565b82601f10611ec75782800160ff19823516178555611ef4565b82800160010185558215611ef4579182015b82811115611ef4578235825591602001919060010190611ed9565b50611f00929150611f04565b5090565b5b80821115611f005760008155600101611f05565b80356001600160a01b0381168114611f3057600080fd5b919050565b60008083601f840112611f4757600080fd5b50813567ffffffffffffffff811115611f5f57600080fd5b6020830191508360208260051b8501011115611f7a57600080fd5b9250929050565b600060208284031215611f9357600080fd5b61127982611f19565b60008060408385031215611faf57600080fd5b611fb883611f19565b9150611fc660208401611f19565b90509250929050565b600080600060608486031215611fe457600080fd5b611fed84611f19565b9250611ffb60208501611f19565b9150604084013590509250925092565b6000806000806080858703121561202157600080fd5b61202a85611f19565b935061203860208601611f19565b925060408501359150606085013567ffffffffffffffff8082111561205c57600080fd5b818701915087601f83011261207057600080fd5b81358181111561208257612082612623565b604051601f8201601f19908116603f011681019083821181831017156120aa576120aa612623565b816040528281528a60208487010111156120c357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120fa57600080fd5b61210383611f19565b91506020830135801515811461211857600080fd5b809150509250929050565b6000806040838503121561213657600080fd5b61213f83611f19565b946020939093013593505050565b6000806020838503121561216057600080fd5b823567ffffffffffffffff81111561217757600080fd5b61218385828601611f35565b90969095509350505050565b6000806000604084860312156121a457600080fd5b833567ffffffffffffffff8111156121bb57600080fd5b6121c786828701611f35565b909790965060209590950135949350505050565b6000602082840312156121ed57600080fd5b813561127981612639565b60006020828403121561220a57600080fd5b815161127981612639565b6000806020838503121561222857600080fd5b823567ffffffffffffffff8082111561224057600080fd5b818501915085601f83011261225457600080fd5b81358181111561226357600080fd5b86602082850101111561227557600080fd5b60209290920196919550909350505050565b60006020828403121561229957600080fd5b5035919050565b600080604083850312156122b357600080fd5b82359150611fc660208401611f19565b600081518084526122db816020860160208601612535565b601f01601f19169290920160200192915050565b60008351612301818460208801612535565b835190830190612315818360208801612535565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612351908301846122c3565b9695505050505050565b606080825284519082018190526000906020906080840190828801845b8281101561239457815184529284019290840190600101612378565b5050508381038285015285518082528683019183019060005b818110156123d25783516001600160a01b0316835292840192918401916001016123ad565b5050809350505050826040830152949350505050565b60208152600061127960208301846122c3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124e6576124e66125cb565b500190565b6000826124fa576124fa6125e1565b500490565b6000816000190483118215151615612519576125196125cb565b500290565b600082821015612530576125306125cb565b500390565b60005b83811015612550578181015183820152602001612538565b8381111561119f5750506000910152565b600181811c9082168061257557607f821691505b6020821081141561259657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125b0576125b06125cb565b5060010190565b6000826125c6576125c66125e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113aa57600080fdfea26469706673582212200ca81d5bb0e278c5e9ac6a1febfa8eb60f5c6b7a0ab5b2e901570da9a1d1b70564736f6c63430008070033697066733a2f2f516d6269564671636a693956634d324c707a39355134544d59537835387242774e38686e6e5a43795945335944332f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063667806521161010d578063a0712d68116100a0578063e50d10de1161006f578063e50d10de14610550578063e985e9c514610565578063eff62510146105ae578063f2fde38b146105ce578063ff45cb95146105ee57600080fd5b8063a0712d68146104dd578063a22cb465146104f0578063b88d4fde14610510578063c87b56dd1461053057600080fd5b8063785d04f5116100dc578063785d04f5146104745780637ff9b596146104945780638da5cb5b146104aa57806395d89b41146104c857600080fd5b806366780652146103f05780636a61e5fc1461041f57806370a082311461043f578063715018a61461045f57600080fd5b80633ccfd60b116101855780634f6ccce7116101545780634f6ccce71461037a578063518ab2a81461039a57806355f804b3146103b05780636352211e146103d057600080fd5b80633ccfd60b1461031d57806342842e0e146103325780634e99b800146103525780634ea4f8e61461036757600080fd5b80630b7abf77116101c15780630b7abf77146102a457806318160ddd146102c857806323b872dd146102dd5780632f745c59146102fd57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046121db565b610603565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61062e565b60405161021f91906123e8565b34801561025657600080fd5b5061026a610265366004612287565b6106c0565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004612123565b61075a565b005b3480156102b057600080fd5b506102ba6103a481565b60405190815260200161021f565b3480156102d457600080fd5b506008546102ba565b3480156102e957600080fd5b506102a26102f8366004611fcf565b610870565b34801561030957600080fd5b506102ba610318366004612123565b6108a1565b34801561032957600080fd5b506102a2610937565b34801561033e57600080fd5b506102a261034d366004611fcf565b610987565b34801561035e57600080fd5b5061023d6109a2565b6102a261037536600461214d565b610a30565b34801561038657600080fd5b506102ba610395366004612287565b610b8b565b3480156103a657600080fd5b506102ba600d5481565b3480156103bc57600080fd5b506102a26103cb366004612215565b610c1e565b3480156103dc57600080fd5b5061026a6103eb366004612287565b610c54565b3480156103fc57600080fd5b5061041061040b36600461218f565b610ccb565b60405161021f9392919061235b565b34801561042b57600080fd5b506102a261043a366004612287565b610e8d565b34801561044b57600080fd5b506102ba61045a366004611f81565b610ebc565b34801561046b57600080fd5b506102a2610f43565b34801561048057600080fd5b506102a261048f3660046122a0565b610f77565b3480156104a057600080fd5b506102ba600b5481565b3480156104b657600080fd5b50600a546001600160a01b031661026a565b3480156104d457600080fd5b5061023d61105f565b6102a26104eb366004612287565b61106e565b3480156104fc57600080fd5b506102a261050b3660046120e7565b61115e565b34801561051c57600080fd5b506102a261052b36600461200b565b61116d565b34801561053c57600080fd5b5061023d61054b366004612287565b6111a5565b34801561055c57600080fd5b506102ba600681565b34801561057157600080fd5b50610213610580366004611f9c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506102a26105c93660046122a0565b611280565b3480156105da57600080fd5b506102a26105e9366004611f81565b611312565b3480156105fa57600080fd5b506102ba6113ad565b60006001600160e01b0319821663780e9d6360e01b14806106285750610628826113cf565b92915050565b60606000805461063d90612561565b80601f016020809104026020016040519081016040528092919081815260200182805461066990612561565b80156106b65780601f1061068b576101008083540402835291602001916106b6565b820191906000526020600020905b81548152906001019060200180831161069957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661073e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076582610c54565b9050806001600160a01b0316836001600160a01b031614156107d35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610735565b336001600160a01b03821614806107ef57506107ef8133610580565b6108615760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610735565b61086b838361141f565b505050565b61087a338261148d565b6108965760405162461bcd60e51b815260040161073590612482565b61086b838383611584565b60006108ac83610ebc565b821061090e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610735565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109615760405162461bcd60e51b81526004016107359061244d565b60405133904780156108fc02916000818181858888f1935050505061098557600080fd5b565b61086b8383836040518060200160405280600081525061116d565b600c80546109af90612561565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90612561565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b346000805b83811015610a9b57610a76858583818110610a5257610a5261260d565b905060200201356000908152600260205260409020546001600160a01b0316151590565b15610a895781610a858161259c565b9250505b80610a938161259c565b915050610a35565b5080610ae25760405162461bcd60e51b81526020600482015260166024820152754e6f626f6479206f776e732074686520746f6b656e7360501b6044820152606401610735565b610aec81836124eb565b915060005b83811015610b8457610b0e858583818110610a5257610a5261260d565b15610b72576000610b36868684818110610b2a57610b2a61260d565b90506020020135610c54565b6040519091506001600160a01b0382169085156108fc029086906000818181858888f19350505050158015610b6f573d6000803e3d6000fd5b50505b80610b7c8161259c565b915050610af1565b5050505050565b6000610b9660085490565b8210610bf95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610735565b60088281548110610c0c57610c0c61260d565b90600052602060002001549050919050565b600a546001600160a01b03163314610c485760405162461bcd60e51b81526004016107359061244d565b61086b600c8383611e80565b6000818152600260205260408120546001600160a01b0316806106285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610735565b606080600080805b86811015610d1557610cf0888883818110610a5257610a5261260d565b15610d035781610cff8161259c565b9250505b80610d0d8161259c565b915050610cd3565b5060008115610d2d57610d2882876124eb565b610d30565b60005b905060008267ffffffffffffffff811115610d4d57610d4d612623565b604051908082528060200260200182016040528015610d76578160200160208202803683370190505b50905060008367ffffffffffffffff811115610d9457610d94612623565b604051908082528060200260200182016040528015610dbd578160200160208202803683370190505b50905060005b89811015610e7c57610de08b8b83818110610a5257610a5261260d565b15610e6a576000610dfc8c8c84818110610b2a57610b2a61260d565b90508b8b83818110610e1057610e1061260d565b90506020020135848381518110610e2957610e2961260d565b60200260200101818152505080838381518110610e4857610e4861260d565b60200260200101906001600160a01b031690816001600160a01b031681525050505b80610e748161259c565b915050610dc3565b509099909850909650945050505050565b600a546001600160a01b03163314610eb75760405162461bcd60e51b81526004016107359061244d565b600b55565b60006001600160a01b038216610f275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610735565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f6d5760405162461bcd60e51b81526004016107359061244d565b610985600061172f565b600a546001600160a01b03163314610fa15760405162461bcd60e51b81526004016107359061244d565b610fa96113ad565b821115610ff85760405162461bcd60e51b815260206004820152601a60248201527f4e6f20746f6b656e73206c65667420666f722073656e64696e670000000000006044820152606401610735565b60005b82811015611043576110318282600d54600661101791906124d3565b6110229060016124d3565b61102c91906124d3565b611781565b8061103b8161259c565b915050610ffb565b5081600d600082825461105691906124d3565b90915550505050565b60606001805461063d90612561565b80600b5461107c91906124ff565b3410156110bb5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610735565b6110c36113ad565b8111156111125760405162461bcd60e51b815260206004820152601a60248201527f4e6f20746f6b656e73206c65667420666f72206d696e74696e670000000000006044820152606401610735565b60005b81811015611143576111313382600d54600661101791906124d3565b8061113b8161259c565b915050611115565b5080600d600082825461115691906124d3565b909155505050565b61116933838361179b565b5050565b611177338361148d565b6111935760405162461bcd60e51b815260040161073590612482565b61119f8484848461186a565b50505050565b6000818152600260205260409020546060906001600160a01b03166112245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610735565b600061122e61189d565b9050600081511161124e5760405180602001604052806000815250611279565b80611258846118ac565b6040516020016112699291906122ef565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112aa5760405162461bcd60e51b81526004016107359061244d565b600182101580156112bc575060068211155b6113085760405162461bcd60e51b815260206004820181905260248201527f746f6b656e4964206f757473696465206f6620707265736f6c642072616e67656044820152606401610735565b6111698183611781565b600a546001600160a01b0316331461133c5760405162461bcd60e51b81526004016107359061244d565b6001600160a01b0381166113a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610735565b6113aa8161172f565b50565b600d546000906113c060066103a461251e565b6113ca919061251e565b905090565b60006001600160e01b031982166380ac58cd60e01b148061140057506001600160e01b03198216635b5e139f60e01b145b8061062857506301ffc9a760e01b6001600160e01b0319831614610628565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061145482610c54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115065760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610735565b600061151183610c54565b9050806001600160a01b0316846001600160a01b0316148061154c5750836001600160a01b0316611541846106c0565b6001600160a01b0316145b8061157c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661159782610c54565b6001600160a01b0316146115ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610735565b6001600160a01b0382166116615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610735565b61166c8383836119aa565b61167760008261141f565b6001600160a01b03831660009081526003602052604081208054600192906116a090849061251e565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ce9084906124d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611169828260405180602001604052806000815250611a62565b816001600160a01b0316836001600160a01b031614156117fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610735565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611875848484611584565b61188184848484611a95565b61119f5760405162461bcd60e51b8152600401610735906123fb565b6060600c805461063d90612561565b6060816118d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118fa57806118e48161259c565b91506118f39050600a836124eb565b91506118d4565b60008167ffffffffffffffff81111561191557611915612623565b6040519080825280601f01601f19166020018201604052801561193f576020820181803683370190505b5090505b841561157c5761195460018361251e565b9150611961600a866125b7565b61196c9060306124d3565b60f81b8183815181106119815761198161260d565b60200101906001600160f81b031916908160001a9053506119a3600a866124eb565b9450611943565b6001600160a01b038316611a0557611a0081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a28565b816001600160a01b0316836001600160a01b031614611a2857611a288382611ba2565b6001600160a01b038216611a3f5761086b81611c3f565b826001600160a01b0316826001600160a01b03161461086b5761086b8282611cee565b611a6c8383611d32565b611a796000848484611a95565b61086b5760405162461bcd60e51b8152600401610735906123fb565b60006001600160a01b0384163b15611b9757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ad990339089908890889060040161231e565b602060405180830381600087803b158015611af357600080fd5b505af1925050508015611b23575060408051601f3d908101601f19168201909252611b20918101906121f8565b60015b611b7d573d808015611b51576040519150601f19603f3d011682016040523d82523d6000602084013e611b56565b606091505b508051611b755760405162461bcd60e51b8152600401610735906123fb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061157c565b506001949350505050565b60006001611baf84610ebc565b611bb9919061251e565b600083815260076020526040902054909150808214611c0c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c519060019061251e565b60008381526009602052604081205460088054939450909284908110611c7957611c7961260d565b906000526020600020015490508060088381548110611c9a57611c9a61260d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cd257611cd26125f7565b6001900381819060005260206000200160009055905550505050565b6000611cf983610ebc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610735565b6000818152600260205260409020546001600160a01b031615611ded5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610735565b611df9600083836119aa565b6001600160a01b0382166000908152600360205260408120805460019290611e229084906124d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e8c90612561565b90600052602060002090601f016020900481019282611eae5760008555611ef4565b82601f10611ec75782800160ff19823516178555611ef4565b82800160010185558215611ef4579182015b82811115611ef4578235825591602001919060010190611ed9565b50611f00929150611f04565b5090565b5b80821115611f005760008155600101611f05565b80356001600160a01b0381168114611f3057600080fd5b919050565b60008083601f840112611f4757600080fd5b50813567ffffffffffffffff811115611f5f57600080fd5b6020830191508360208260051b8501011115611f7a57600080fd5b9250929050565b600060208284031215611f9357600080fd5b61127982611f19565b60008060408385031215611faf57600080fd5b611fb883611f19565b9150611fc660208401611f19565b90509250929050565b600080600060608486031215611fe457600080fd5b611fed84611f19565b9250611ffb60208501611f19565b9150604084013590509250925092565b6000806000806080858703121561202157600080fd5b61202a85611f19565b935061203860208601611f19565b925060408501359150606085013567ffffffffffffffff8082111561205c57600080fd5b818701915087601f83011261207057600080fd5b81358181111561208257612082612623565b604051601f8201601f19908116603f011681019083821181831017156120aa576120aa612623565b816040528281528a60208487010111156120c357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120fa57600080fd5b61210383611f19565b91506020830135801515811461211857600080fd5b809150509250929050565b6000806040838503121561213657600080fd5b61213f83611f19565b946020939093013593505050565b6000806020838503121561216057600080fd5b823567ffffffffffffffff81111561217757600080fd5b61218385828601611f35565b90969095509350505050565b6000806000604084860312156121a457600080fd5b833567ffffffffffffffff8111156121bb57600080fd5b6121c786828701611f35565b909790965060209590950135949350505050565b6000602082840312156121ed57600080fd5b813561127981612639565b60006020828403121561220a57600080fd5b815161127981612639565b6000806020838503121561222857600080fd5b823567ffffffffffffffff8082111561224057600080fd5b818501915085601f83011261225457600080fd5b81358181111561226357600080fd5b86602082850101111561227557600080fd5b60209290920196919550909350505050565b60006020828403121561229957600080fd5b5035919050565b600080604083850312156122b357600080fd5b82359150611fc660208401611f19565b600081518084526122db816020860160208601612535565b601f01601f19169290920160200192915050565b60008351612301818460208801612535565b835190830190612315818360208801612535565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612351908301846122c3565b9695505050505050565b606080825284519082018190526000906020906080840190828801845b8281101561239457815184529284019290840190600101612378565b5050508381038285015285518082528683019183019060005b818110156123d25783516001600160a01b0316835292840192918401916001016123ad565b5050809350505050826040830152949350505050565b60208152600061127960208301846122c3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124e6576124e66125cb565b500190565b6000826124fa576124fa6125e1565b500490565b6000816000190483118215151615612519576125196125cb565b500290565b600082821015612530576125306125cb565b500390565b60005b83811015612550578181015183820152602001612538565b8381111561119f5750506000910152565b600181811c9082168061257557607f821691505b6020821081141561259657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125b0576125b06125cb565b5060010190565b6000826125c6576125c66125e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113aa57600080fdfea26469706673582212200ca81d5bb0e278c5e9ac6a1febfa8eb60f5c6b7a0ab5b2e901570da9a1d1b70564736f6c63430008070033
Deployed Bytecode Sourcemap
44517:3562:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38299:224;;;;;;;;;;-1:-1:-1;38299:224:0;;;;;:::i;:::-;;:::i;:::-;;;8462:14:1;;8455:22;8437:41;;8425:2;8410:18;38299:224:0;;;;;;;;25793:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27352:221::-;;;;;;;;;;-1:-1:-1;27352:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6505:32:1;;;6487:51;;6475:2;6460:18;27352:221:0;6341:203:1;26875:411:0;;;;;;;;;;-1:-1:-1;26875:411:0;;;;;:::i;:::-;;:::i;:::-;;44803:42;;;;;;;;;;;;44842:3;44803:42;;;;;17830:25:1;;;17818:2;17803:18;44803:42:0;17684:177:1;38939:113:0;;;;;;;;;;-1:-1:-1;39027:10:0;:17;38939:113;;28102:339;;;;;;;;;;-1:-1:-1;28102:339:0;;;;;:::i;:::-;;:::i;38607:256::-;;;;;;;;;;-1:-1:-1;38607:256:0;;;;;:::i;:::-;;:::i;47962:114::-;;;;;;;;;;;;;:::i;28512:185::-;;;;;;;;;;-1:-1:-1;28512:185:0;;;;;:::i;:::-;;:::i;44653:85::-;;;;;;;;;;;;;:::i;45204:664::-;;;;;;:::i;:::-;;:::i;39129:233::-;;;;;;;;;;-1:-1:-1;39129:233:0;;;;;:::i;:::-;;:::i;44852:29::-;;;;;;;;;;;;;;;;47857:97;;;;;;;;;;-1:-1:-1;47857:97:0;;;;;:::i;:::-;;:::i;25487:239::-;;;;;;;;;;-1:-1:-1;25487:239:0;;;;;:::i;:::-;;:::i;45876:896::-;;;;;;;;;;-1:-1:-1;45876:896:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;45108:88::-;;;;;;;;;;-1:-1:-1;45108:88:0;;;;;:::i;:::-;;:::i;25217:208::-;;;;;;;;;;-1:-1:-1;25217:208:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;47028:313::-;;;;;;;;;;-1:-1:-1;47028:313:0;;;;;:::i;:::-;;:::i;44607:37::-;;;;;;;;;;;;;;;;4112:87;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;25962:104;;;;;;;;;;;;;:::i;47349:376::-;;;;;;:::i;:::-;;:::i;27645:155::-;;;;;;;;;;-1:-1:-1;27645:155:0;;;;;:::i;:::-;;:::i;28768:328::-;;;;;;;;;;-1:-1:-1;28768:328:0;;;;;:::i;:::-;;:::i;26137:334::-;;;;;;;;;;-1:-1:-1;26137:334:0;;;;;:::i;:::-;;:::i;44747:49::-;;;;;;;;;;;;44795:1;44747:49;;27871:164;;;;;;;;;;-1:-1:-1;27871:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27992:25:0;;;27968:4;27992:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27871:164;46780:240;;;;;;;;;;-1:-1:-1;46780:240:0;;;;;:::i;:::-;;:::i;5021:201::-;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;44962:134::-;;;;;;;;;;;;;:::i;38299:224::-;38401:4;-1:-1:-1;;;;;;38425:50:0;;-1:-1:-1;;;38425:50:0;;:90;;;38479:36;38503:11;38479:23;:36::i;:::-;38418:97;38299:224;-1:-1:-1;;38299:224:0:o;25793:100::-;25847:13;25880:5;25873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25793:100;:::o;27352:221::-;27428:7;30695:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30695:16:0;27448:73;;;;-1:-1:-1;;;27448:73:0;;14347:2:1;27448:73:0;;;14329:21:1;14386:2;14366:18;;;14359:30;14425:34;14405:18;;;14398:62;-1:-1:-1;;;14476:18:1;;;14469:42;14528:19;;27448:73:0;;;;;;;;;-1:-1:-1;27541:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27541:24:0;;27352:221::o;26875:411::-;26956:13;26972:23;26987:7;26972:14;:23::i;:::-;26956:39;;27020:5;-1:-1:-1;;;;;27014:11:0;:2;-1:-1:-1;;;;;27014:11:0;;;27006:57;;;;-1:-1:-1;;;27006:57:0;;16298:2:1;27006:57:0;;;16280:21:1;16337:2;16317:18;;;16310:30;16376:34;16356:18;;;16349:62;-1:-1:-1;;;16427:18:1;;;16420:31;16468:19;;27006:57:0;16096:397:1;27006:57:0;2916:10;-1:-1:-1;;;;;27098:21:0;;;;:62;;-1:-1:-1;27123:37:0;27140:5;2916:10;27871:164;:::i;27123:37::-;27076:168;;;;-1:-1:-1;;;27076:168:0;;12740:2:1;27076:168:0;;;12722:21:1;12779:2;12759:18;;;12752:30;12818:34;12798:18;;;12791:62;12889:26;12869:18;;;12862:54;12933:19;;27076:168:0;12538:420:1;27076:168:0;27257:21;27266:2;27270:7;27257:8;:21::i;:::-;26945:341;26875:411;;:::o;28102:339::-;28297:41;2916:10;28330:7;28297:18;:41::i;:::-;28289:103;;;;-1:-1:-1;;;28289:103:0;;;;;;;:::i;:::-;28405:28;28415:4;28421:2;28425:7;28405:9;:28::i;38607:256::-;38704:7;38740:23;38757:5;38740:16;:23::i;:::-;38732:5;:31;38724:87;;;;-1:-1:-1;;;38724:87:0;;9631:2:1;38724:87:0;;;9613:21:1;9670:2;9650:18;;;9643:30;9709:34;9689:18;;;9682:62;-1:-1:-1;;;9760:18:1;;;9753:41;9811:19;;38724:87:0;9429:407:1;38724:87:0;-1:-1:-1;;;;;;38829:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38607:256::o;47962:114::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48020:47:::1;::::0;48028:10:::1;::::0;48045:21:::1;48020:47:::0;::::1;;;::::0;::::1;::::0;;;48045:21;48028:10;48020:47;::::1;;;;;;48012:56;;;::::0;::::1;;47962:114::o:0;28512:185::-;28650:39;28667:4;28673:2;28677:7;28650:39;;;;;;;;;;;;:16;:39::i;44653:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45204:664::-;45298:9;45276:19;;45358:140;45377:14;;;45358:140;;;45416:15;45424:3;;45428:1;45424:6;;;;;;;:::i;:::-;;;;;;;30671:4;30695:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30695:16:0;:30;;;30606:127;45416:15;45413:74;;;45451:20;;;;:::i;:::-;;;;45413:74;45393:3;;;;:::i;:::-;;;;45358:140;;;-1:-1:-1;45516:22:0;45508:57;;;;-1:-1:-1;;;45508:57:0;;15121:2:1;45508:57:0;;;15103:21:1;15160:2;15140:18;;;15133:30;-1:-1:-1;;;15179:18:1;;;15172:52;15241:18;;45508:57:0;14919:346:1;45508:57:0;45590:31;45604:17;45590:11;:31;:::i;:::-;45576:45;;45636:9;45632:229;45651:14;;;45632:229;;;45690:15;45698:3;;45702:1;45698:6;;;;;;;:::i;45690:15::-;45687:163;;;45726:28;45765:15;45773:3;;45777:1;45773:6;;;;;;;:::i;:::-;;;;;;;45765:7;:15::i;:::-;45800:34;;45726:55;;-1:-1:-1;;;;;;45800:21:0;;;:34;;;;;45822:11;;45800:34;;;;45822:11;45800:21;:34;;;;;;;;;;;;;;;;;;;;;45707:143;45687:163;45667:3;;;;:::i;:::-;;;;45632:229;;;;45265:603;;45204:664;;:::o;39129:233::-;39204:7;39240:30;39027:10;:17;;38939:113;39240:30;39232:5;:38;39224:95;;;;-1:-1:-1;;;39224:95:0;;17118:2:1;39224:95:0;;;17100:21:1;17157:2;17137:18;;;17130:30;17196:34;17176:18;;;17169:62;-1:-1:-1;;;17247:18:1;;;17240:42;17299:19;;39224:95:0;16916:408:1;39224:95:0;39337:10;39348:5;39337:17;;;;;;;;:::i;:::-;;;;;;;;;39330:24;;39129:233;;;:::o;47857:97::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47928:18:::1;:12;47943:3:::0;;47928:18:::1;:::i;25487:239::-:0;25559:7;25595:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25595:16:0;25630:19;25622:73;;;;-1:-1:-1;;;25622:73:0;;13576:2:1;25622:73:0;;;13558:21:1;13615:2;13595:18;;;13588:30;13654:34;13634:18;;;13627:62;-1:-1:-1;;;13705:18:1;;;13698:39;13754:19;;25622:73:0;13374:405:1;45876:896:0;45965:16;;46001:7;;;46061:140;46080:14;;;46061:140;;;46119:15;46127:3;;46131:1;46127:6;;;;;;;:::i;46119:15::-;46116:74;;;46154:20;;;;:::i;:::-;;;;46116:74;46096:3;;;;:::i;:::-;;;;46061:140;;;-1:-1:-1;46213:19:0;46235:22;;:56;;46265:25;46273:17;46265:5;:25;:::i;:::-;46235:56;;;46260:1;46235:56;46213:78;;46304:23;46344:17;46330:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46330:32:0;;46304:58;;46373:32;46422:17;46408:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46408:32:0;;46373:67;;46465:9;46461:248;46480:14;;;46461:248;;;46519:15;46527:3;;46531:1;46527:6;;;;;;;:::i;46519:15::-;46516:182;;;46555:20;46578:15;46586:3;;46590:1;46586:6;;;;;;;:::i;46578:15::-;46555:38;;46624:3;;46628:1;46624:6;;;;;;;:::i;:::-;;;;;;;46612;46619:1;46612:9;;;;;;;;:::i;:::-;;;;;;:18;;;;;46670:12;46649:15;46665:1;46649:18;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;46649:33:0;;;-1:-1:-1;;;;;46649:33:0;;;;;46536:162;46516:182;46496:3;;;;:::i;:::-;;;;46461:248;;;-1:-1:-1;46727:6:0;;;;-1:-1:-1;46752:11:0;;-1:-1:-1;45876:896:0;-1:-1:-1;;;;;45876:896:0:o;45108:88::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;45172:10:::1;:16:::0;45108:88::o;25217:208::-;25289:7;-1:-1:-1;;;;;25317:19:0;;25309:74;;;;-1:-1:-1;;;25309:74:0;;13165:2:1;25309:74:0;;;13147:21:1;13204:2;13184:18;;;13177:30;13243:34;13223:18;;;13216:62;-1:-1:-1;;;13294:18:1;;;13287:40;13344:19;;25309:74:0;12963:406:1;25309:74:0;-1:-1:-1;;;;;;25401:16:0;;;;;:9;:16;;;;;;;25217:208::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;47028:313::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47118:19:::1;:17;:19::i;:::-;47108:6;:29;;47100:68;;;::::0;-1:-1:-1;;;47100:68:0;;8915:2:1;47100:68:0::1;::::0;::::1;8897:21:1::0;8954:2;8934:18;;;8927:30;8993:28;8973:18;;;8966:56;9039:18;;47100:68:0::1;8713:350:1::0;47100:68:0::1;47185:9;47181:120;47204:6;47200:1;:10;47181:120;;;47232:57;47242:2;47287:1;47270:10;;44795:1;47246:34;;;;:::i;:::-;:38;::::0;47283:1:::1;47246:38;:::i;:::-;:42;;;;:::i;:::-;47232:9;:57::i;:::-;47212:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47181:120;;;;47327:6;47313:10;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;47028:313:0:o;25962:104::-;26018:13;26051:7;26044:14;;;;;:::i;47349:376::-;47441:6;47428:10;;:19;;;;:::i;:::-;47415:9;:32;;47407:58;;;;-1:-1:-1;;;47407:58:0;;11226:2:1;47407:58:0;;;11208:21:1;11265:2;11245:18;;;11238:30;-1:-1:-1;;;11284:18:1;;;11277:43;11337:18;;47407:58:0;11024:337:1;47407:58:0;47494:19;:17;:19::i;:::-;47484:6;:29;;47476:68;;;;-1:-1:-1;;;47476:68:0;;17531:2:1;47476:68:0;;;17513:21:1;17570:2;17550:18;;;17543:30;17609:28;17589:18;;;17582:56;17655:18;;47476:68:0;17329:350:1;47476:68:0;47561:9;47557:128;47580:6;47576:1;:10;47557:128;;;47608:65;47618:10;47671:1;47654:10;;44795:1;47630:34;;;;:::i;47608:65::-;47588:3;;;;:::i;:::-;;;;47557:128;;;;47711:6;47697:10;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;;47349:376:0:o;27645:155::-;27740:52;2916:10;27773:8;27783;27740:18;:52::i;:::-;27645:155;;:::o;28768:328::-;28943:41;2916:10;28976:7;28943:18;:41::i;:::-;28935:103;;;;-1:-1:-1;;;28935:103:0;;;;;;;:::i;:::-;29049:39;29063:4;29069:2;29073:7;29082:5;29049:13;:39::i;:::-;28768:328;;;;:::o;26137:334::-;30671:4;30695:16;;;:7;:16;;;;;;26210:13;;-1:-1:-1;;;;;30695:16:0;26236:76;;;;-1:-1:-1;;;26236:76:0;;15882:2:1;26236:76:0;;;15864:21:1;15921:2;15901:18;;;15894:30;15960:34;15940:18;;;15933:62;-1:-1:-1;;;16011:18:1;;;16004:45;16066:19;;26236:76:0;15680:411:1;26236:76:0;26325:21;26349:10;:8;:10::i;:::-;26325:34;;26401:1;26383:7;26377:21;:25;:86;;;;;;;;;;;;;;;;;26429:7;26438:18;:7;:16;:18::i;:::-;26412:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26377:86;26370:93;26137:334;-1:-1:-1;;;26137:334:0:o;46780:240::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46894:1:::1;46883:7;:12;;:48;;;;;44795:1;46899:7;:32;;46883:48;46875:93;;;::::0;-1:-1:-1;;;46875:93:0;;9270:2:1;46875:93:0::1;::::0;::::1;9252:21:1::0;;;9289:18;;;9282:30;9348:34;9328:18;;;9321:62;9400:18;;46875:93:0::1;9068:356:1::0;46875:93:0::1;46979:33;46989:13;47004:7;46979:9;:33::i;5021:201::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;10462:2:1;5102:73:0::1;::::0;::::1;10444:21:1::0;10501:2;10481:18;;;10474:30;10540:34;10520:18;;;10513:62;-1:-1:-1;;;10591:18:1;;;10584:36;10637:19;;5102:73:0::1;10260:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;44962:134::-;45078:10;;45012:7;;45039:36;44795:1;44842:3;45039:36;:::i;:::-;:49;;;;:::i;:::-;45032:56;;44962:134;:::o;24848:305::-;24950:4;-1:-1:-1;;;;;;24987:40:0;;-1:-1:-1;;;24987:40:0;;:105;;-1:-1:-1;;;;;;;25044:48:0;;-1:-1:-1;;;25044:48:0;24987:105;:158;;;-1:-1:-1;;;;;;;;;;16653:40:0;;;25109:36;16544:157;34588:174;34663:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34663:29:0;-1:-1:-1;;;;;34663:29:0;;;;;;;;:24;;34717:23;34663:24;34717:14;:23::i;:::-;-1:-1:-1;;;;;34708:46:0;;;;;;;;;;;34588:174;;:::o;30900:348::-;30993:4;30695:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30695:16:0;31010:73;;;;-1:-1:-1;;;31010:73:0;;12327:2:1;31010:73:0;;;12309:21:1;12366:2;12346:18;;;12339:30;12405:34;12385:18;;;12378:62;-1:-1:-1;;;12456:18:1;;;12449:42;12508:19;;31010:73:0;12125:408:1;31010:73:0;31094:13;31110:23;31125:7;31110:14;:23::i;:::-;31094:39;;31163:5;-1:-1:-1;;;;;31152:16:0;:7;-1:-1:-1;;;;;31152:16:0;;:51;;;;31196:7;-1:-1:-1;;;;;31172:31:0;:20;31184:7;31172:11;:20::i;:::-;-1:-1:-1;;;;;31172:31:0;;31152:51;:87;;;-1:-1:-1;;;;;;27992:25:0;;;27968:4;27992:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31207:32;31144:96;30900:348;-1:-1:-1;;;;30900:348:0:o;33892:578::-;34051:4;-1:-1:-1;;;;;34024:31:0;:23;34039:7;34024:14;:23::i;:::-;-1:-1:-1;;;;;34024:31:0;;34016:85;;;;-1:-1:-1;;;34016:85:0;;15472:2:1;34016:85:0;;;15454:21:1;15511:2;15491:18;;;15484:30;15550:34;15530:18;;;15523:62;-1:-1:-1;;;15601:18:1;;;15594:39;15650:19;;34016:85:0;15270:405:1;34016:85:0;-1:-1:-1;;;;;34120:16:0;;34112:65;;;;-1:-1:-1;;;34112:65:0;;11568:2:1;34112:65:0;;;11550:21:1;11607:2;11587:18;;;11580:30;11646:34;11626:18;;;11619:62;-1:-1:-1;;;11697:18:1;;;11690:34;11741:19;;34112:65:0;11366:400:1;34112:65:0;34190:39;34211:4;34217:2;34221:7;34190:20;:39::i;:::-;34294:29;34311:1;34315:7;34294:8;:29::i;:::-;-1:-1:-1;;;;;34336:15:0;;;;;;:9;:15;;;;;:20;;34355:1;;34336:15;:20;;34355:1;;34336:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34367:13:0;;;;;;:9;:13;;;;;:18;;34384:1;;34367:13;:18;;34384:1;;34367:18;:::i;:::-;;;;-1:-1:-1;;34396:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34396:21:0;-1:-1:-1;;;;;34396:21:0;;;;;;;;;34435:27;;34396:16;;34435:27;;;;;;;33892:578;;;:::o;5382:191::-;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;31590:110::-;31666:26;31676:2;31680:7;31666:26;;;;;;;;;;;;:9;:26::i;34904:315::-;35059:8;-1:-1:-1;;;;;35050:17:0;:5;-1:-1:-1;;;;;35050:17:0;;;35042:55;;;;-1:-1:-1;;;35042:55:0;;11973:2:1;35042:55:0;;;11955:21:1;12012:2;11992:18;;;11985:30;12051:27;12031:18;;;12024:55;12096:18;;35042:55:0;11771:349:1;35042:55:0;-1:-1:-1;;;;;35108:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35108:46:0;;;;;;;;;;35170:41;;8437::1;;;35170::0;;8410:18:1;35170:41:0;;;;;;;34904:315;;;:::o;29978:::-;30135:28;30145:4;30151:2;30155:7;30135:9;:28::i;:::-;30182:48;30205:4;30211:2;30215:7;30224:5;30182:22;:48::i;:::-;30174:111;;;;-1:-1:-1;;;30174:111:0;;;;;;;:::i;47733:113::-;47793:13;47826:12;47819:19;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;39975:589;-1:-1:-1;;;;;40181:18:0;;40177:187;;40216:40;40248:7;41391:10;:17;;41364:24;;;;:15;:24;;;;;:44;;;41419:24;;;;;;;;;;;;41287:164;40216:40;40177:187;;;40286:2;-1:-1:-1;;;;;40278:10:0;:4;-1:-1:-1;;;;;40278:10:0;;40274:90;;40305:47;40338:4;40344:7;40305:32;:47::i;:::-;-1:-1:-1;;;;;40378:16:0;;40374:183;;40411:45;40448:7;40411:36;:45::i;40374:183::-;40484:4;-1:-1:-1;;;;;40478:10:0;:2;-1:-1:-1;;;;;40478:10:0;;40474:83;;40505:40;40533:2;40537:7;40505:27;:40::i;31927:321::-;32057:18;32063:2;32067:7;32057:5;:18::i;:::-;32108:54;32139:1;32143:2;32147:7;32156:5;32108:22;:54::i;:::-;32086:154;;;;-1:-1:-1;;;32086:154:0;;;;;;;:::i;35784:799::-;35939:4;-1:-1:-1;;;;;35960:13:0;;6723:20;6771:8;35956:620;;35996:72;;-1:-1:-1;;;35996:72:0;;-1:-1:-1;;;;;35996:36:0;;;;;:72;;2916:10;;36047:4;;36053:7;;36062:5;;35996:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35996:72:0;;;;;;;;-1:-1:-1;;35996:72:0;;;;;;;;;;;;:::i;:::-;;;35992:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36238:13:0;;36234:272;;36281:60;;-1:-1:-1;;;36281:60:0;;;;;;;:::i;36234:272::-;36456:6;36450:13;36441:6;36437:2;36433:15;36426:38;35992:529;-1:-1:-1;;;;;;36119:51:0;-1:-1:-1;;;36119:51:0;;-1:-1:-1;36112:58:0;;35956:620;-1:-1:-1;36560:4:0;35784:799;;;;;;:::o;42078:988::-;42344:22;42394:1;42369:22;42386:4;42369:16;:22::i;:::-;:26;;;;:::i;:::-;42406:18;42427:26;;;:17;:26;;;;;;42344:51;;-1:-1:-1;42560:28:0;;;42556:328;;-1:-1:-1;;;;;42627:18:0;;42605:19;42627:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42678:30;;;;;;:44;;;42795:30;;:17;:30;;;;;:43;;;42556:328;-1:-1:-1;42980:26:0;;;;:17;:26;;;;;;;;42973:33;;;-1:-1:-1;;;;;43024:18:0;;;;;:12;:18;;;;;:34;;;;;;;43017:41;42078:988::o;43361:1079::-;43639:10;:17;43614:22;;43639:21;;43659:1;;43639:21;:::i;:::-;43671:18;43692:24;;;:15;:24;;;;;;44065:10;:26;;43614:46;;-1:-1:-1;43692:24:0;;43614:46;;44065:26;;;;;;:::i;:::-;;;;;;;;;44043:48;;44129:11;44104:10;44115;44104:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44209:28;;;:15;:28;;;;;;;:41;;;44381:24;;;;;44374:31;44416:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43432:1008;;;43361:1079;:::o;40865:221::-;40950:14;40967:20;40984:2;40967:16;:20::i;:::-;-1:-1:-1;;;;;40998:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41043:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40865:221:0:o;32584:382::-;-1:-1:-1;;;;;32664:16:0;;32656:61;;;;-1:-1:-1;;;32656:61:0;;13986:2:1;32656:61:0;;;13968:21:1;;;14005:18;;;13998:30;14064:34;14044:18;;;14037:62;14116:18;;32656:61:0;13784:356:1;32656:61:0;30671:4;30695:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30695:16:0;:30;32728:58;;;;-1:-1:-1;;;32728:58:0;;10869:2:1;32728:58:0;;;10851:21:1;10908:2;10888:18;;;10881:30;10947;10927:18;;;10920:58;10995:18;;32728:58:0;10667:352:1;32728:58:0;32799:45;32828:1;32832:2;32836:7;32799:20;:45::i;:::-;-1:-1:-1;;;;;32857:13:0;;;;;;:9;:13;;;;;:18;;32874:1;;32857:13;:18;;32874:1;;32857:18;:::i;:::-;;;;-1:-1:-1;;32886:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32886:21:0;-1:-1:-1;;;;;32886:21:0;;;;;;;;32925:33;;32886:16;;;32925:33;;32886:16;;32925:33;32584:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:186::-;623:6;676:2;664:9;655:7;651:23;647:32;644:52;;;692:1;689;682:12;644:52;715:29;734:9;715:29;:::i;755:260::-;823:6;831;884:2;872:9;863:7;859:23;855:32;852:52;;;900:1;897;890:12;852:52;923:29;942:9;923:29;:::i;:::-;913:39;;971:38;1005:2;994:9;990:18;971:38;:::i;:::-;961:48;;755:260;;;;;:::o;1020:328::-;1097:6;1105;1113;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;:::-;1195:39;;1253:38;1287:2;1276:9;1272:18;1253:38;:::i;:::-;1243:48;;1338:2;1327:9;1323:18;1310:32;1300:42;;1020:328;;;;;:::o;1353:1138::-;1448:6;1456;1464;1472;1525:3;1513:9;1504:7;1500:23;1496:33;1493:53;;;1542:1;1539;1532:12;1493:53;1565:29;1584:9;1565:29;:::i;:::-;1555:39;;1613:38;1647:2;1636:9;1632:18;1613:38;:::i;:::-;1603:48;;1698:2;1687:9;1683:18;1670:32;1660:42;;1753:2;1742:9;1738:18;1725:32;1776:18;1817:2;1809:6;1806:14;1803:34;;;1833:1;1830;1823:12;1803:34;1871:6;1860:9;1856:22;1846:32;;1916:7;1909:4;1905:2;1901:13;1897:27;1887:55;;1938:1;1935;1928:12;1887:55;1974:2;1961:16;1996:2;1992;1989:10;1986:36;;;2002:18;;:::i;:::-;2077:2;2071:9;2045:2;2131:13;;-1:-1:-1;;2127:22:1;;;2151:2;2123:31;2119:40;2107:53;;;2175:18;;;2195:22;;;2172:46;2169:72;;;2221:18;;:::i;:::-;2261:10;2257:2;2250:22;2296:2;2288:6;2281:18;2336:7;2331:2;2326;2322;2318:11;2314:20;2311:33;2308:53;;;2357:1;2354;2347:12;2308:53;2413:2;2408;2404;2400:11;2395:2;2387:6;2383:15;2370:46;2458:1;2453:2;2448;2440:6;2436:15;2432:24;2425:35;2479:6;2469:16;;;;;;;1353:1138;;;;;;;:::o;2496:347::-;2561:6;2569;2622:2;2610:9;2601:7;2597:23;2593:32;2590:52;;;2638:1;2635;2628:12;2590:52;2661:29;2680:9;2661:29;:::i;:::-;2651:39;;2740:2;2729:9;2725:18;2712:32;2787:5;2780:13;2773:21;2766:5;2763:32;2753:60;;2809:1;2806;2799:12;2753:60;2832:5;2822:15;;;2496:347;;;;;:::o;2848:254::-;2916:6;2924;2977:2;2965:9;2956:7;2952:23;2948:32;2945:52;;;2993:1;2990;2983:12;2945:52;3016:29;3035:9;3016:29;:::i;:::-;3006:39;3092:2;3077:18;;;;3064:32;;-1:-1:-1;;;2848:254:1:o;3107:437::-;3193:6;3201;3254:2;3242:9;3233:7;3229:23;3225:32;3222:52;;;3270:1;3267;3260:12;3222:52;3310:9;3297:23;3343:18;3335:6;3332:30;3329:50;;;3375:1;3372;3365:12;3329:50;3414:70;3476:7;3467:6;3456:9;3452:22;3414:70;:::i;:::-;3503:8;;3388:96;;-1:-1:-1;3107:437:1;-1:-1:-1;;;;3107:437:1:o;3549:505::-;3644:6;3652;3660;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3769:9;3756:23;3802:18;3794:6;3791:30;3788:50;;;3834:1;3831;3824:12;3788:50;3873:70;3935:7;3926:6;3915:9;3911:22;3873:70;:::i;:::-;3962:8;;3847:96;;-1:-1:-1;4044:2:1;4029:18;;;;4016:32;;3549:505;-1:-1:-1;;;;3549:505:1:o;4059:245::-;4117:6;4170:2;4158:9;4149:7;4145:23;4141:32;4138:52;;;4186:1;4183;4176:12;4138:52;4225:9;4212:23;4244:30;4268:5;4244:30;:::i;4309:249::-;4378:6;4431:2;4419:9;4410:7;4406:23;4402:32;4399:52;;;4447:1;4444;4437:12;4399:52;4479:9;4473:16;4498:30;4522:5;4498:30;:::i;4563:592::-;4634:6;4642;4695:2;4683:9;4674:7;4670:23;4666:32;4663:52;;;4711:1;4708;4701:12;4663:52;4751:9;4738:23;4780:18;4821:2;4813:6;4810:14;4807:34;;;4837:1;4834;4827:12;4807:34;4875:6;4864:9;4860:22;4850:32;;4920:7;4913:4;4909:2;4905:13;4901:27;4891:55;;4942:1;4939;4932:12;4891:55;4982:2;4969:16;5008:2;5000:6;4997:14;4994:34;;;5024:1;5021;5014:12;4994:34;5069:7;5064:2;5055:6;5051:2;5047:15;5043:24;5040:37;5037:57;;;5090:1;5087;5080:12;5037:57;5121:2;5113:11;;;;;5143:6;;-1:-1:-1;4563:592:1;;-1:-1:-1;;;;4563:592:1:o;5160:180::-;5219:6;5272:2;5260:9;5251:7;5247:23;5243:32;5240:52;;;5288:1;5285;5278:12;5240:52;-1:-1:-1;5311:23:1;;5160:180;-1:-1:-1;5160:180:1:o;5345:254::-;5413:6;5421;5474:2;5462:9;5453:7;5449:23;5445:32;5442:52;;;5490:1;5487;5480:12;5442:52;5526:9;5513:23;5503:33;;5555:38;5589:2;5578:9;5574:18;5555:38;:::i;5604:257::-;5645:3;5683:5;5677:12;5710:6;5705:3;5698:19;5726:63;5782:6;5775:4;5770:3;5766:14;5759:4;5752:5;5748:16;5726:63;:::i;:::-;5843:2;5822:15;-1:-1:-1;;5818:29:1;5809:39;;;;5850:4;5805:50;;5604:257;-1:-1:-1;;5604:257:1:o;5866:470::-;6045:3;6083:6;6077:13;6099:53;6145:6;6140:3;6133:4;6125:6;6121:17;6099:53;:::i;:::-;6215:13;;6174:16;;;;6237:57;6215:13;6174:16;6271:4;6259:17;;6237:57;:::i;:::-;6310:20;;5866:470;-1:-1:-1;;;;5866:470:1:o;6549:488::-;-1:-1:-1;;;;;6818:15:1;;;6800:34;;6870:15;;6865:2;6850:18;;6843:43;6917:2;6902:18;;6895:34;;;6965:3;6960:2;6945:18;;6938:31;;;6743:4;;6986:45;;7011:19;;7003:6;6986:45;:::i;:::-;6978:53;6549:488;-1:-1:-1;;;;;;6549:488:1:o;7042:1250::-;7338:2;7350:21;;;7420:13;;7323:18;;;7442:22;;;7290:4;;7518;;7495:3;7480:19;;;7545:15;;;7290:4;7588:169;7602:6;7599:1;7596:13;7588:169;;;7663:13;;7651:26;;7697:12;;;;7732:15;;;;7624:1;7617:9;7588:169;;;-1:-1:-1;;;7793:19:1;;;7773:18;;;7766:47;7863:13;;7885:21;;;7961:15;;;;7924:12;;;7996:1;8006:215;8022:8;8017:3;8014:17;8006:215;;;8095:15;;-1:-1:-1;;;;;8091:41:1;8077:56;;8194:17;;;;8155:14;;;;8129:1;8041:11;8006:215;;;8010:3;;8238:5;8230:13;;;;;8279:6;8274:2;8263:9;8259:18;8252:34;7042:1250;;;;;;:::o;8489:219::-;8638:2;8627:9;8620:21;8601:4;8658:44;8698:2;8687:9;8683:18;8675:6;8658:44;:::i;9841:414::-;10043:2;10025:21;;;10082:2;10062:18;;;10055:30;10121:34;10116:2;10101:18;;10094:62;-1:-1:-1;;;10187:2:1;10172:18;;10165:48;10245:3;10230:19;;9841:414::o;14558:356::-;14760:2;14742:21;;;14779:18;;;14772:30;14838:34;14833:2;14818:18;;14811:62;14905:2;14890:18;;14558:356::o;16498:413::-;16700:2;16682:21;;;16739:2;16719:18;;;16712:30;16778:34;16773:2;16758:18;;16751:62;-1:-1:-1;;;16844:2:1;16829:18;;16822:47;16901:3;16886:19;;16498:413::o;17866:128::-;17906:3;17937:1;17933:6;17930:1;17927:13;17924:39;;;17943:18;;:::i;:::-;-1:-1:-1;17979:9:1;;17866:128::o;17999:120::-;18039:1;18065;18055:35;;18070:18;;:::i;:::-;-1:-1:-1;18104:9:1;;17999:120::o;18124:168::-;18164:7;18230:1;18226;18222:6;18218:14;18215:1;18212:21;18207:1;18200:9;18193:17;18189:45;18186:71;;;18237:18;;:::i;:::-;-1:-1:-1;18277:9:1;;18124:168::o;18297:125::-;18337:4;18365:1;18362;18359:8;18356:34;;;18370:18;;:::i;:::-;-1:-1:-1;18407:9:1;;18297:125::o;18427:258::-;18499:1;18509:113;18523:6;18520:1;18517:13;18509:113;;;18599:11;;;18593:18;18580:11;;;18573:39;18545:2;18538:10;18509:113;;;18640:6;18637:1;18634:13;18631:48;;;-1:-1:-1;;18675:1:1;18657:16;;18650:27;18427:258::o;18690:380::-;18769:1;18765:12;;;;18812;;;18833:61;;18887:4;18879:6;18875:17;18865:27;;18833:61;18940:2;18932:6;18929:14;18909:18;18906:38;18903:161;;;18986:10;18981:3;18977:20;18974:1;18967:31;19021:4;19018:1;19011:15;19049:4;19046:1;19039:15;18903:161;;18690:380;;;:::o;19075:135::-;19114:3;-1:-1:-1;;19135:17:1;;19132:43;;;19155:18;;:::i;:::-;-1:-1:-1;19202:1:1;19191:13;;19075:135::o;19215:112::-;19247:1;19273;19263:35;;19278:18;;:::i;:::-;-1:-1:-1;19312:9:1;;19215:112::o;19332:127::-;19393:10;19388:3;19384:20;19381:1;19374:31;19424:4;19421:1;19414:15;19448:4;19445:1;19438:15;19464:127;19525:10;19520:3;19516:20;19513:1;19506:31;19556:4;19553:1;19546:15;19580:4;19577:1;19570:15;19596:127;19657:10;19652:3;19648:20;19645:1;19638:31;19688:4;19685:1;19678:15;19712:4;19709:1;19702:15;19728:127;19789:10;19784:3;19780:20;19777:1;19770:31;19820:4;19817:1;19810:15;19844:4;19841:1;19834:15;19860:127;19921:10;19916:3;19912:20;19909:1;19902:31;19952:4;19949:1;19942:15;19976:4;19973:1;19966:15;19992:131;-1:-1:-1;;;;;;20066:32:1;;20056:43;;20046:71;;20113:1;20110;20103:12
Swarm Source
ipfs://0ca81d5bb0e278c5e9ac6a1febfa8eb60f5c6b7a0ab5b2e901570da9a1d1b705
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.