Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
BannerTown
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-08 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.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); /** * @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.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: goblintownai-contract.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } //newerc.sol pragma solidity ^0.8.0; contract BannerTown is ERC721A, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public cost = 0 ether; uint256 public maxSupply = 700; uint256 public maxFree = 700; uint256 public maxperAddressFreeLimit = 1; uint256 public maxperAddressPublicMint = 1; bool public saleIsActive = false; mapping(address => uint256) public addressFreeMintedBalance; mapping(address => uint256) public addressPublicMintedBalance; constructor() ERC721A("BannerTown", "BT") { setBaseURI("ipfs://ipfs://kekw/"); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function freeMint(uint256 _mintAmount) public payable nonReentrant{ uint256 s = totalSupply(); uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender]; require(saleIsActive, "Free mint sale not active"); require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "max NFT per address exceeded, don't be greedy"); require(_mintAmount > 0, "Cant mint 0" ); require(s + _mintAmount <= maxFree, "Cant go over supply" ); for (uint256 i = 0; i < _mintAmount; ++i) { addressFreeMintedBalance[msg.sender]++; } _safeMint(msg.sender, _mintAmount); delete s; delete addressFreeMintedCount; } function mint(uint256 _mintAmount) public payable nonReentrant { uint256 s = totalSupply(); uint256 addressPublicMintedCount = addressPublicMintedBalance[msg.sender]; require(saleIsActive, "Sale not active"); require(addressPublicMintedCount + _mintAmount <= maxperAddressPublicMint, "Max NFT per address"); require(_mintAmount > 0, "Cant mint 0"); require(s + _mintAmount <= maxSupply, "Cant go over supply"); require(msg.value >= cost * _mintAmount); for (uint256 i = 0; i < _mintAmount; ++i) { addressPublicMintedBalance[msg.sender]++; } _safeMint(msg.sender, _mintAmount); delete s; delete addressPublicMintedCount; } function gift(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner { require( quantity.length == recipient.length, "Provide quantities and recipients" ); uint256 totalQuantity = 0; uint256 s = totalSupply(); for (uint256 i = 0; i < quantity.length; ++i) { totalQuantity += quantity[i]; } require(s + totalQuantity <= maxSupply, "Too many"); delete totalQuantity; for (uint256 i = 0; i < recipient.length; ++i) { _safeMint(recipient[i], quantity[i]); } delete s; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner { maxFree = _newMaxFreeSupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner { maxperAddressPublicMint = _amount; } function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{ maxperAddressFreeLimit = _amount; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function withdrawAny(uint256 _amount) public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: _amount}(""); require(success); } }
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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPublicMintedBalance","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","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":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526000600a556102bc600b819055600c556001600d819055600e55600f805460ff191690553480156200003557600080fd5b50604080518082018252600a8152692130b73732b92a37bbb760b11b602080830191825283518085019094526002845261109560f21b9084015281519192916200008291600191620001d9565b50805162000098906002906020840190620001d9565b505050620000b5620000af6200010c60201b60201c565b62000110565b6007805460ff60a01b19169055600160085560408051808201909152601381527f697066733a2f2f697066733a2f2f6b656b772f000000000000000000000000006020820152620001069062000162565b620002f1565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200016c6200010c565b6001600160a01b03166200017f620001ca565b6001600160a01b031614620001b15760405162461bcd60e51b8152600401620001a8906200027f565b60405180910390fd5b8051620001c6906009906020840190620001d9565b5050565b6007546001600160a01b031690565b828054620001e790620002b4565b90600052602060002090601f0160209004810192826200020b576000855562000256565b82601f106200022657805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025657825182559160200191906001019062000239565b506200026492915062000268565b5090565b5b8082111562000264576000815560010162000269565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620002c957607f821691505b60208210811415620002eb57634e487b7160e01b600052602260045260246000fd5b50919050565b61294180620003016000396000f3fe60806040526004361061023a5760003560e01c80636352211e1161012e578063a0712d68116100ab578063d5abeb011161006f578063d5abeb011461061b578063dc4e66b514610630578063e985e9c514610650578063eb8d244414610670578063f2fde38b146106855761023a565b8063a0712d6814610588578063a22cb4651461059b578063b88d4fde146105bb578063bde12d73146105db578063c87b56dd146105fb5761023a565b80637c6b172d116100f25780637c6b172d1461050b5780637c928fe91461052b5780638da5cb5b1461053e57806395d89b411461055357806396ea3a47146105685761023a565b80636352211e1461048e5780636c0360eb146104ae57806370a08231146104c3578063715018a6146104e357806377ad99f0146104f85761023a565b806334918dfd116101bc578063485a68a311610180578063485a68a31461040f5780634f6ccce71461042457806355f804b31461044457806356569a1d146104645780635c975abb146104795761023a565b806334918dfd1461039d57806334c8fd75146103b25780633ccfd60b146103c757806342842e0e146103cf57806344a0d68a146103ef5761023a565b8063095ea7b311610203578063095ea7b31461031357806313faede61461033357806318160ddd1461034857806323b872dd1461035d5780632f745c591461037d5761023a565b80624e51041461023f57806301ffc9a714610275578063022d67dd146102a257806306fdde03146102c4578063081812fc146102e6575b600080fd5b34801561024b57600080fd5b5061025f61025a366004611dad565b6106a5565b60405161026c91906127b2565b60405180910390f35b34801561028157600080fd5b50610295610290366004611f79565b6106b7565b60405161026c91906120ce565b3480156102ae57600080fd5b506102c26102bd366004611ff7565b61071a565b005b3480156102d057600080fd5b506102d9610767565b60405161026c91906120d9565b3480156102f257600080fd5b50610306610301366004611ff7565b6107f9565b60405161026c919061207d565b34801561031f57600080fd5b506102c261032e366004611ee7565b61083c565b34801561033f57600080fd5b5061025f6108d5565b34801561035457600080fd5b5061025f6108db565b34801561036957600080fd5b506102c2610378366004611df9565b6108e1565b34801561038957600080fd5b5061025f610398366004611ee7565b6108ec565b3480156103a957600080fd5b506102c26109d7565b3480156103be57600080fd5b5061025f610a2a565b6102c2610a30565b3480156103db57600080fd5b506102c26103ea366004611df9565b610adb565b3480156103fb57600080fd5b506102c261040a366004611ff7565b610af6565b34801561041b57600080fd5b5061025f610b3a565b34801561043057600080fd5b5061025f61043f366004611ff7565b610b40565b34801561045057600080fd5b506102c261045f366004611fb1565b610b6c565b34801561047057600080fd5b5061025f610bc2565b34801561048557600080fd5b50610295610bc8565b34801561049a57600080fd5b506103066104a9366004611ff7565b610bd8565b3480156104ba57600080fd5b506102d9610bea565b3480156104cf57600080fd5b5061025f6104de366004611dad565b610c78565b3480156104ef57600080fd5b506102c2610cc5565b6102c2610506366004611ff7565b610d10565b34801561051757600080fd5b5061025f610526366004611dad565b610db8565b6102c2610539366004611ff7565b610dca565b34801561054a57600080fd5b50610306610ef9565b34801561055f57600080fd5b506102d9610f08565b34801561057457600080fd5b506102c2610583366004611f10565b610f17565b6102c2610596366004611ff7565b611089565b3480156105a757600080fd5b506102c26105b6366004611ead565b6111bd565b3480156105c757600080fd5b506102c26105d6366004611e34565b61128b565b3480156105e757600080fd5b506102c26105f6366004611ff7565b6112c4565b34801561060757600080fd5b506102d9610616366004611ff7565b611308565b34801561062757600080fd5b5061025f61138b565b34801561063c57600080fd5b506102c261064b366004611ff7565b611391565b34801561065c57600080fd5b5061029561066b366004611dc7565b6113d5565b34801561067c57600080fd5b50610295611403565b34801561069157600080fd5b506102c26106a0366004611dad565b61140c565b60116020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b14806106e857506001600160e01b03198216635b5e139f60e01b145b8061070357506001600160e01b0319821663780e9d6360e01b145b8061071257506107128261147a565b90505b919050565b610722611493565b6001600160a01b0316610733610ef9565b6001600160a01b0316146107625760405162461bcd60e51b8152600401610759906124cd565b60405180910390fd5b600e55565b60606001805461077690612849565b80601f01602080910402602001604051908101604052809291908181526020018280546107a290612849565b80156107ef5780601f106107c4576101008083540402835291602001916107ef565b820191906000526020600020905b8154815290600101906020018083116107d257829003601f168201915b5050505050905090565b600061080482611497565b6108205760405162461bcd60e51b815260040161075990612765565b506000908152600560205260409020546001600160a01b031690565b600061084782610bd8565b9050806001600160a01b0316836001600160a01b0316141561087b5760405162461bcd60e51b81526004016107599061258b565b806001600160a01b031661088d611493565b6001600160a01b031614806108a957506108a98161066b611493565b6108c55760405162461bcd60e51b815260040161075990612390565b6108d083838361149e565b505050565b600a5481565b60005490565b6108d08383836114fa565b60006108f783610c78565b82106109155760405162461bcd60e51b8152600401610759906120ec565b600061091f6108db565b905060008060005b838110156109b8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561097a57805192505b876001600160a01b0316836001600160a01b031614156109af57868414156109a8575093506109d192505050565b6001909301925b50600101610927565b5060405162461bcd60e51b8152600401610759906126e0565b92915050565b6109df611493565b6001600160a01b03166109f0610ef9565b6001600160a01b031614610a165760405162461bcd60e51b8152600401610759906124cd565b600f805460ff19811660ff90911615179055565b600e5481565b610a38611493565b6001600160a01b0316610a49610ef9565b6001600160a01b031614610a6f5760405162461bcd60e51b8152600401610759906124cd565b6000336001600160a01b031647604051610a889061207a565b60006040518083038185875af1925050503d8060008114610ac5576040519150601f19603f3d011682016040523d82523d6000602084013e610aca565b606091505b5050905080610ad857600080fd5b50565b6108d08383836040518060200160405280600081525061128b565b610afe611493565b6001600160a01b0316610b0f610ef9565b6001600160a01b031614610b355760405162461bcd60e51b8152600401610759906124cd565b600a55565b600c5481565b6000610b4a6108db565b8210610b685760405162461bcd60e51b815260040161075990612271565b5090565b610b74611493565b6001600160a01b0316610b85610ef9565b6001600160a01b031614610bab5760405162461bcd60e51b8152600401610759906124cd565b8051610bbe906009906020840190611c2b565b5050565b600d5481565b600754600160a01b900460ff1690565b6000610be382611767565b5192915050565b60098054610bf790612849565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2390612849565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b505050505081565b60006001600160a01b038216610ca05760405162461bcd60e51b8152600401610759906123ed565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610ccd611493565b6001600160a01b0316610cde610ef9565b6001600160a01b031614610d045760405162461bcd60e51b8152600401610759906124cd565b610d0e60006117ef565b565b610d18611493565b6001600160a01b0316610d29610ef9565b6001600160a01b031614610d4f5760405162461bcd60e51b8152600401610759906124cd565b6000336001600160a01b031682604051610d689061207a565b60006040518083038185875af1925050503d8060008114610da5576040519150601f19603f3d011682016040523d82523d6000602084013e610daa565b606091505b5050905080610bbe57600080fd5b60106020526000908152604090205481565b60026008541415610ded5760405162461bcd60e51b81526004016107599061272e565b60026008556000610dfc6108db565b33600090815260106020526040902054600f549192509060ff16610e325760405162461bcd60e51b8152600401610759906126a9565b600d54610e3f84836127bb565b1115610e5d5760405162461bcd60e51b815260040161075990612153565b60008311610e7d5760405162461bcd60e51b81526004016107599061212e565b600c54610e8a84846127bb565b1115610ea85760405162461bcd60e51b815260040161075990612438565b60005b83811015610ee457336000908152601060205260408120805491610ece83612884565b919050555080610edd90612884565b9050610eab565b50610eef3384611841565b5050600160085550565b6007546001600160a01b031690565b60606002805461077690612849565b610f1f611493565b6001600160a01b0316610f30610ef9565b6001600160a01b031614610f565760405162461bcd60e51b8152600401610759906124cd565b828114610f755760405162461bcd60e51b81526004016107599061234f565b600080610f806108db565b905060005b85811015610fd157868682818110610fad57634e487b7160e01b600052603260045260246000fd5b9050602002013583610fbf91906127bb565b9250610fca81612884565b9050610f85565b50600b54610fdf83836127bb565b1115610ffd5760405162461bcd60e51b8152600401610759906124ab565b6000915060005b838110156110805761107085858381811061102f57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110449190611dad565b88888481811061106457634e487b7160e01b600052603260045260246000fd5b90506020020135611841565b61107981612884565b9050611004565b50505050505050565b600260085414156110ac5760405162461bcd60e51b81526004016107599061272e565b600260085560006110bb6108db565b33600090815260116020526040902054600f549192509060ff166110f15760405162461bcd60e51b8152600401610759906122f9565b600e546110fe84836127bb565b111561111c5760405162461bcd60e51b815260040161075990612322565b6000831161113c5760405162461bcd60e51b81526004016107599061212e565b600b5461114984846127bb565b11156111675760405162461bcd60e51b815260040161075990612438565b82600a5461117591906127e7565b34101561118157600080fd5b60005b83811015610ee4573360009081526011602052604081208054916111a783612884565b9190505550806111b690612884565b9050611184565b6111c5611493565b6001600160a01b0316826001600160a01b031614156111f65760405162461bcd60e51b815260040161075990612502565b8060066000611203611493565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611247611493565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161127f91906120ce565b60405180910390a35050565b6112968484846114fa565b6112a28484848461185b565b6112be5760405162461bcd60e51b8152600401610759906125cd565b50505050565b6112cc611493565b6001600160a01b03166112dd610ef9565b6001600160a01b0316146113035760405162461bcd60e51b8152600401610759906124cd565b600c55565b606061131382611497565b61132f5760405162461bcd60e51b8152600401610759906121a0565b6000611339611977565b905060008151116113595760405180602001604052806000815250611384565b8061136384611986565b60405160200161137492919061203b565b6040516020818303038152906040525b9392505050565b600b5481565b611399611493565b6001600160a01b03166113aa610ef9565b6001600160a01b0316146113d05760405162461bcd60e51b8152600401610759906124cd565b600d55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b611414611493565b6001600160a01b0316611425610ef9565b6001600160a01b03161461144b5760405162461bcd60e51b8152600401610759906124cd565b6001600160a01b0381166114715760405162461bcd60e51b8152600401610759906121e1565b610ad8816117ef565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061150582611767565b9050600081600001516001600160a01b031661151f611493565b6001600160a01b031614806115545750611537611493565b6001600160a01b0316611549846107f9565b6001600160a01b0316145b80611568575081516115689061066b611493565b9050806115875760405162461bcd60e51b815260040161075990612539565b846001600160a01b031682600001516001600160a01b0316146115bc5760405162461bcd60e51b815260040161075990612465565b6001600160a01b0384166115e25760405162461bcd60e51b8152600401610759906122b4565b6115ef85858560016112be565b6115ff600084846000015161149e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116611711576116b381611497565b15611711578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461176085858560016112be565b5050505050565b61176f611cab565b61177882611497565b6117945760405162461bcd60e51b815260040161075990612227565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117e55791506107159050565b5060001901611796565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610bbe828260405180602001604052806000815250611aa1565b600061186f846001600160a01b0316611aae565b1561196b57836001600160a01b031663150b7a0261188b611493565b8786866040518563ffffffff1660e01b81526004016118ad9493929190612091565b602060405180830381600087803b1580156118c757600080fd5b505af19250505080156118f7575060408051601f3d908101601f191682019092526118f491810190611f95565b60015b611951573d808015611925576040519150601f19603f3d011682016040523d82523d6000602084013e61192a565b606091505b5080516119495760405162461bcd60e51b8152600401610759906125cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061196f565b5060015b949350505050565b60606009805461077690612849565b6060816119ab57506040805180820190915260018152600360fc1b6020820152610715565b8160005b81156119d557806119bf81612884565b91506119ce9050600a836127d3565b91506119af565b60008167ffffffffffffffff8111156119fe57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a28576020820181803683370190505b5090505b841561196f57611a3d600183612806565b9150611a4a600a8661289f565b611a559060306127bb565b60f81b818381518110611a7857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a9a600a866127d3565b9450611a2c565b6108d08383836001611abd565b6001600160a01b03163b151590565b6000546001600160a01b038516611ae65760405162461bcd60e51b815260040161075990612620565b83611b035760405162461bcd60e51b815260040161075990612661565b611b1060008683876112be565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611c195760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c0d57611bf1600088848861185b565b611c0d5760405162461bcd60e51b8152600401610759906125cd565b60019182019101611b9e565b506000908155611760908683876112be565b828054611c3790612849565b90600052602060002090601f016020900481019282611c595760008555611c9f565b82601f10611c7257805160ff1916838001178555611c9f565b82800160010185558215611c9f579182015b82811115611c9f578251825591602001919060010190611c84565b50610b68929150611cc2565b604080518082019091526000808252602082015290565b5b80821115610b685760008155600101611cc3565b600067ffffffffffffffff80841115611cf257611cf26128df565b604051601f8501601f19908116603f01168101908282118183101715611d1a57611d1a6128df565b81604052809350858152868686011115611d3357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461071557600080fd5b60008083601f840112611d75578081fd5b50813567ffffffffffffffff811115611d8c578182fd5b6020830191508360208083028501011115611da657600080fd5b9250929050565b600060208284031215611dbe578081fd5b61138482611d4d565b60008060408385031215611dd9578081fd5b611de283611d4d565b9150611df060208401611d4d565b90509250929050565b600080600060608486031215611e0d578081fd5b611e1684611d4d565b9250611e2460208501611d4d565b9150604084013590509250925092565b60008060008060808587031215611e49578081fd5b611e5285611d4d565b9350611e6060208601611d4d565b925060408501359150606085013567ffffffffffffffff811115611e82578182fd5b8501601f81018713611e92578182fd5b611ea187823560208401611cd7565b91505092959194509250565b60008060408385031215611ebf578182fd5b611ec883611d4d565b915060208301358015158114611edc578182fd5b809150509250929050565b60008060408385031215611ef9578182fd5b611f0283611d4d565b946020939093013593505050565b60008060008060408587031215611f25578384fd5b843567ffffffffffffffff80821115611f3c578586fd5b611f4888838901611d64565b90965094506020870135915080821115611f60578384fd5b50611f6d87828801611d64565b95989497509550505050565b600060208284031215611f8a578081fd5b8135611384816128f5565b600060208284031215611fa6578081fd5b8151611384816128f5565b600060208284031215611fc2578081fd5b813567ffffffffffffffff811115611fd8578182fd5b8201601f81018413611fe8578182fd5b61196f84823560208401611cd7565b600060208284031215612008578081fd5b5035919050565b6000815180845261202781602086016020860161281d565b601f01601f19169290920160200192915050565b6000835161204d81846020880161281d565b83519083019061206181836020880161281d565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120c49083018461200f565b9695505050505050565b901515815260200190565b600060208252611384602083018461200f565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a043616e74206d696e7420360ac1b604082015260600190565b6020808252602d908201527f6d6178204e46542070657220616464726573732065786365656465642c20646f60408201526c6e27742062652067726565647960981b606082015260800190565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252600f908201526e53616c65206e6f742061637469766560881b604082015260600190565b6020808252601390820152724d6178204e465420706572206164647265737360681b604082015260600190565b60208082526021908201527f50726f76696465207175616e74697469657320616e6420726563697069656e746040820152607360f81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526013908201527243616e7420676f206f76657220737570706c7960681b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b602080825260089082015267546f6f206d616e7960c01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b60208082526019908201527f46726565206d696e742073616c65206e6f742061637469766500000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b600082198211156127ce576127ce6128b3565b500190565b6000826127e2576127e26128c9565b500490565b6000816000190483118215151615612801576128016128b3565b500290565b600082821015612818576128186128b3565b500390565b60005b83811015612838578181015183820152602001612820565b838111156112be5750506000910152565b60028104600182168061285d57607f821691505b6020821081141561287e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612898576128986128b3565b5060010190565b6000826128ae576128ae6128c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ad857600080fdfea2646970667358221220194acf59890c9c1088ee170b0eb7d8a9dc64465457faf144bad05da4ba606a8564736f6c63430008010033
Deployed Bytecode
0x60806040526004361061023a5760003560e01c80636352211e1161012e578063a0712d68116100ab578063d5abeb011161006f578063d5abeb011461061b578063dc4e66b514610630578063e985e9c514610650578063eb8d244414610670578063f2fde38b146106855761023a565b8063a0712d6814610588578063a22cb4651461059b578063b88d4fde146105bb578063bde12d73146105db578063c87b56dd146105fb5761023a565b80637c6b172d116100f25780637c6b172d1461050b5780637c928fe91461052b5780638da5cb5b1461053e57806395d89b411461055357806396ea3a47146105685761023a565b80636352211e1461048e5780636c0360eb146104ae57806370a08231146104c3578063715018a6146104e357806377ad99f0146104f85761023a565b806334918dfd116101bc578063485a68a311610180578063485a68a31461040f5780634f6ccce71461042457806355f804b31461044457806356569a1d146104645780635c975abb146104795761023a565b806334918dfd1461039d57806334c8fd75146103b25780633ccfd60b146103c757806342842e0e146103cf57806344a0d68a146103ef5761023a565b8063095ea7b311610203578063095ea7b31461031357806313faede61461033357806318160ddd1461034857806323b872dd1461035d5780632f745c591461037d5761023a565b80624e51041461023f57806301ffc9a714610275578063022d67dd146102a257806306fdde03146102c4578063081812fc146102e6575b600080fd5b34801561024b57600080fd5b5061025f61025a366004611dad565b6106a5565b60405161026c91906127b2565b60405180910390f35b34801561028157600080fd5b50610295610290366004611f79565b6106b7565b60405161026c91906120ce565b3480156102ae57600080fd5b506102c26102bd366004611ff7565b61071a565b005b3480156102d057600080fd5b506102d9610767565b60405161026c91906120d9565b3480156102f257600080fd5b50610306610301366004611ff7565b6107f9565b60405161026c919061207d565b34801561031f57600080fd5b506102c261032e366004611ee7565b61083c565b34801561033f57600080fd5b5061025f6108d5565b34801561035457600080fd5b5061025f6108db565b34801561036957600080fd5b506102c2610378366004611df9565b6108e1565b34801561038957600080fd5b5061025f610398366004611ee7565b6108ec565b3480156103a957600080fd5b506102c26109d7565b3480156103be57600080fd5b5061025f610a2a565b6102c2610a30565b3480156103db57600080fd5b506102c26103ea366004611df9565b610adb565b3480156103fb57600080fd5b506102c261040a366004611ff7565b610af6565b34801561041b57600080fd5b5061025f610b3a565b34801561043057600080fd5b5061025f61043f366004611ff7565b610b40565b34801561045057600080fd5b506102c261045f366004611fb1565b610b6c565b34801561047057600080fd5b5061025f610bc2565b34801561048557600080fd5b50610295610bc8565b34801561049a57600080fd5b506103066104a9366004611ff7565b610bd8565b3480156104ba57600080fd5b506102d9610bea565b3480156104cf57600080fd5b5061025f6104de366004611dad565b610c78565b3480156104ef57600080fd5b506102c2610cc5565b6102c2610506366004611ff7565b610d10565b34801561051757600080fd5b5061025f610526366004611dad565b610db8565b6102c2610539366004611ff7565b610dca565b34801561054a57600080fd5b50610306610ef9565b34801561055f57600080fd5b506102d9610f08565b34801561057457600080fd5b506102c2610583366004611f10565b610f17565b6102c2610596366004611ff7565b611089565b3480156105a757600080fd5b506102c26105b6366004611ead565b6111bd565b3480156105c757600080fd5b506102c26105d6366004611e34565b61128b565b3480156105e757600080fd5b506102c26105f6366004611ff7565b6112c4565b34801561060757600080fd5b506102d9610616366004611ff7565b611308565b34801561062757600080fd5b5061025f61138b565b34801561063c57600080fd5b506102c261064b366004611ff7565b611391565b34801561065c57600080fd5b5061029561066b366004611dc7565b6113d5565b34801561067c57600080fd5b50610295611403565b34801561069157600080fd5b506102c26106a0366004611dad565b61140c565b60116020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b14806106e857506001600160e01b03198216635b5e139f60e01b145b8061070357506001600160e01b0319821663780e9d6360e01b145b8061071257506107128261147a565b90505b919050565b610722611493565b6001600160a01b0316610733610ef9565b6001600160a01b0316146107625760405162461bcd60e51b8152600401610759906124cd565b60405180910390fd5b600e55565b60606001805461077690612849565b80601f01602080910402602001604051908101604052809291908181526020018280546107a290612849565b80156107ef5780601f106107c4576101008083540402835291602001916107ef565b820191906000526020600020905b8154815290600101906020018083116107d257829003601f168201915b5050505050905090565b600061080482611497565b6108205760405162461bcd60e51b815260040161075990612765565b506000908152600560205260409020546001600160a01b031690565b600061084782610bd8565b9050806001600160a01b0316836001600160a01b0316141561087b5760405162461bcd60e51b81526004016107599061258b565b806001600160a01b031661088d611493565b6001600160a01b031614806108a957506108a98161066b611493565b6108c55760405162461bcd60e51b815260040161075990612390565b6108d083838361149e565b505050565b600a5481565b60005490565b6108d08383836114fa565b60006108f783610c78565b82106109155760405162461bcd60e51b8152600401610759906120ec565b600061091f6108db565b905060008060005b838110156109b8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561097a57805192505b876001600160a01b0316836001600160a01b031614156109af57868414156109a8575093506109d192505050565b6001909301925b50600101610927565b5060405162461bcd60e51b8152600401610759906126e0565b92915050565b6109df611493565b6001600160a01b03166109f0610ef9565b6001600160a01b031614610a165760405162461bcd60e51b8152600401610759906124cd565b600f805460ff19811660ff90911615179055565b600e5481565b610a38611493565b6001600160a01b0316610a49610ef9565b6001600160a01b031614610a6f5760405162461bcd60e51b8152600401610759906124cd565b6000336001600160a01b031647604051610a889061207a565b60006040518083038185875af1925050503d8060008114610ac5576040519150601f19603f3d011682016040523d82523d6000602084013e610aca565b606091505b5050905080610ad857600080fd5b50565b6108d08383836040518060200160405280600081525061128b565b610afe611493565b6001600160a01b0316610b0f610ef9565b6001600160a01b031614610b355760405162461bcd60e51b8152600401610759906124cd565b600a55565b600c5481565b6000610b4a6108db565b8210610b685760405162461bcd60e51b815260040161075990612271565b5090565b610b74611493565b6001600160a01b0316610b85610ef9565b6001600160a01b031614610bab5760405162461bcd60e51b8152600401610759906124cd565b8051610bbe906009906020840190611c2b565b5050565b600d5481565b600754600160a01b900460ff1690565b6000610be382611767565b5192915050565b60098054610bf790612849565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2390612849565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b505050505081565b60006001600160a01b038216610ca05760405162461bcd60e51b8152600401610759906123ed565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610ccd611493565b6001600160a01b0316610cde610ef9565b6001600160a01b031614610d045760405162461bcd60e51b8152600401610759906124cd565b610d0e60006117ef565b565b610d18611493565b6001600160a01b0316610d29610ef9565b6001600160a01b031614610d4f5760405162461bcd60e51b8152600401610759906124cd565b6000336001600160a01b031682604051610d689061207a565b60006040518083038185875af1925050503d8060008114610da5576040519150601f19603f3d011682016040523d82523d6000602084013e610daa565b606091505b5050905080610bbe57600080fd5b60106020526000908152604090205481565b60026008541415610ded5760405162461bcd60e51b81526004016107599061272e565b60026008556000610dfc6108db565b33600090815260106020526040902054600f549192509060ff16610e325760405162461bcd60e51b8152600401610759906126a9565b600d54610e3f84836127bb565b1115610e5d5760405162461bcd60e51b815260040161075990612153565b60008311610e7d5760405162461bcd60e51b81526004016107599061212e565b600c54610e8a84846127bb565b1115610ea85760405162461bcd60e51b815260040161075990612438565b60005b83811015610ee457336000908152601060205260408120805491610ece83612884565b919050555080610edd90612884565b9050610eab565b50610eef3384611841565b5050600160085550565b6007546001600160a01b031690565b60606002805461077690612849565b610f1f611493565b6001600160a01b0316610f30610ef9565b6001600160a01b031614610f565760405162461bcd60e51b8152600401610759906124cd565b828114610f755760405162461bcd60e51b81526004016107599061234f565b600080610f806108db565b905060005b85811015610fd157868682818110610fad57634e487b7160e01b600052603260045260246000fd5b9050602002013583610fbf91906127bb565b9250610fca81612884565b9050610f85565b50600b54610fdf83836127bb565b1115610ffd5760405162461bcd60e51b8152600401610759906124ab565b6000915060005b838110156110805761107085858381811061102f57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110449190611dad565b88888481811061106457634e487b7160e01b600052603260045260246000fd5b90506020020135611841565b61107981612884565b9050611004565b50505050505050565b600260085414156110ac5760405162461bcd60e51b81526004016107599061272e565b600260085560006110bb6108db565b33600090815260116020526040902054600f549192509060ff166110f15760405162461bcd60e51b8152600401610759906122f9565b600e546110fe84836127bb565b111561111c5760405162461bcd60e51b815260040161075990612322565b6000831161113c5760405162461bcd60e51b81526004016107599061212e565b600b5461114984846127bb565b11156111675760405162461bcd60e51b815260040161075990612438565b82600a5461117591906127e7565b34101561118157600080fd5b60005b83811015610ee4573360009081526011602052604081208054916111a783612884565b9190505550806111b690612884565b9050611184565b6111c5611493565b6001600160a01b0316826001600160a01b031614156111f65760405162461bcd60e51b815260040161075990612502565b8060066000611203611493565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611247611493565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161127f91906120ce565b60405180910390a35050565b6112968484846114fa565b6112a28484848461185b565b6112be5760405162461bcd60e51b8152600401610759906125cd565b50505050565b6112cc611493565b6001600160a01b03166112dd610ef9565b6001600160a01b0316146113035760405162461bcd60e51b8152600401610759906124cd565b600c55565b606061131382611497565b61132f5760405162461bcd60e51b8152600401610759906121a0565b6000611339611977565b905060008151116113595760405180602001604052806000815250611384565b8061136384611986565b60405160200161137492919061203b565b6040516020818303038152906040525b9392505050565b600b5481565b611399611493565b6001600160a01b03166113aa610ef9565b6001600160a01b0316146113d05760405162461bcd60e51b8152600401610759906124cd565b600d55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b611414611493565b6001600160a01b0316611425610ef9565b6001600160a01b03161461144b5760405162461bcd60e51b8152600401610759906124cd565b6001600160a01b0381166114715760405162461bcd60e51b8152600401610759906121e1565b610ad8816117ef565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061150582611767565b9050600081600001516001600160a01b031661151f611493565b6001600160a01b031614806115545750611537611493565b6001600160a01b0316611549846107f9565b6001600160a01b0316145b80611568575081516115689061066b611493565b9050806115875760405162461bcd60e51b815260040161075990612539565b846001600160a01b031682600001516001600160a01b0316146115bc5760405162461bcd60e51b815260040161075990612465565b6001600160a01b0384166115e25760405162461bcd60e51b8152600401610759906122b4565b6115ef85858560016112be565b6115ff600084846000015161149e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116611711576116b381611497565b15611711578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461176085858560016112be565b5050505050565b61176f611cab565b61177882611497565b6117945760405162461bcd60e51b815260040161075990612227565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117e55791506107159050565b5060001901611796565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610bbe828260405180602001604052806000815250611aa1565b600061186f846001600160a01b0316611aae565b1561196b57836001600160a01b031663150b7a0261188b611493565b8786866040518563ffffffff1660e01b81526004016118ad9493929190612091565b602060405180830381600087803b1580156118c757600080fd5b505af19250505080156118f7575060408051601f3d908101601f191682019092526118f491810190611f95565b60015b611951573d808015611925576040519150601f19603f3d011682016040523d82523d6000602084013e61192a565b606091505b5080516119495760405162461bcd60e51b8152600401610759906125cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061196f565b5060015b949350505050565b60606009805461077690612849565b6060816119ab57506040805180820190915260018152600360fc1b6020820152610715565b8160005b81156119d557806119bf81612884565b91506119ce9050600a836127d3565b91506119af565b60008167ffffffffffffffff8111156119fe57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a28576020820181803683370190505b5090505b841561196f57611a3d600183612806565b9150611a4a600a8661289f565b611a559060306127bb565b60f81b818381518110611a7857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a9a600a866127d3565b9450611a2c565b6108d08383836001611abd565b6001600160a01b03163b151590565b6000546001600160a01b038516611ae65760405162461bcd60e51b815260040161075990612620565b83611b035760405162461bcd60e51b815260040161075990612661565b611b1060008683876112be565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611c195760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c0d57611bf1600088848861185b565b611c0d5760405162461bcd60e51b8152600401610759906125cd565b60019182019101611b9e565b506000908155611760908683876112be565b828054611c3790612849565b90600052602060002090601f016020900481019282611c595760008555611c9f565b82601f10611c7257805160ff1916838001178555611c9f565b82800160010185558215611c9f579182015b82811115611c9f578251825591602001919060010190611c84565b50610b68929150611cc2565b604080518082019091526000808252602082015290565b5b80821115610b685760008155600101611cc3565b600067ffffffffffffffff80841115611cf257611cf26128df565b604051601f8501601f19908116603f01168101908282118183101715611d1a57611d1a6128df565b81604052809350858152868686011115611d3357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461071557600080fd5b60008083601f840112611d75578081fd5b50813567ffffffffffffffff811115611d8c578182fd5b6020830191508360208083028501011115611da657600080fd5b9250929050565b600060208284031215611dbe578081fd5b61138482611d4d565b60008060408385031215611dd9578081fd5b611de283611d4d565b9150611df060208401611d4d565b90509250929050565b600080600060608486031215611e0d578081fd5b611e1684611d4d565b9250611e2460208501611d4d565b9150604084013590509250925092565b60008060008060808587031215611e49578081fd5b611e5285611d4d565b9350611e6060208601611d4d565b925060408501359150606085013567ffffffffffffffff811115611e82578182fd5b8501601f81018713611e92578182fd5b611ea187823560208401611cd7565b91505092959194509250565b60008060408385031215611ebf578182fd5b611ec883611d4d565b915060208301358015158114611edc578182fd5b809150509250929050565b60008060408385031215611ef9578182fd5b611f0283611d4d565b946020939093013593505050565b60008060008060408587031215611f25578384fd5b843567ffffffffffffffff80821115611f3c578586fd5b611f4888838901611d64565b90965094506020870135915080821115611f60578384fd5b50611f6d87828801611d64565b95989497509550505050565b600060208284031215611f8a578081fd5b8135611384816128f5565b600060208284031215611fa6578081fd5b8151611384816128f5565b600060208284031215611fc2578081fd5b813567ffffffffffffffff811115611fd8578182fd5b8201601f81018413611fe8578182fd5b61196f84823560208401611cd7565b600060208284031215612008578081fd5b5035919050565b6000815180845261202781602086016020860161281d565b601f01601f19169290920160200192915050565b6000835161204d81846020880161281d565b83519083019061206181836020880161281d565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120c49083018461200f565b9695505050505050565b901515815260200190565b600060208252611384602083018461200f565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a043616e74206d696e7420360ac1b604082015260600190565b6020808252602d908201527f6d6178204e46542070657220616464726573732065786365656465642c20646f60408201526c6e27742062652067726565647960981b606082015260800190565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252600f908201526e53616c65206e6f742061637469766560881b604082015260600190565b6020808252601390820152724d6178204e465420706572206164647265737360681b604082015260600190565b60208082526021908201527f50726f76696465207175616e74697469657320616e6420726563697069656e746040820152607360f81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526013908201527243616e7420676f206f76657220737570706c7960681b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b602080825260089082015267546f6f206d616e7960c01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b60208082526019908201527f46726565206d696e742073616c65206e6f742061637469766500000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b600082198211156127ce576127ce6128b3565b500190565b6000826127e2576127e26128c9565b500490565b6000816000190483118215151615612801576128016128b3565b500290565b600082821015612818576128186128b3565b500390565b60005b83811015612838578181015183820152602001612820565b838111156112be5750506000910152565b60028104600182168061285d57607f821691505b6020821081141561287e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612898576128986128b3565b5060010190565b6000826128ae576128ae6128c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ad857600080fdfea2646970667358221220194acf59890c9c1088ee170b0eb7d8a9dc64465457faf144bad05da4ba606a8564736f6c63430008010033
Deployed Bytecode Sourcemap
45192:4370:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45638:61;;;;;;;;;;-1:-1:-1;45638:61:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24869:372;;;;;;;;;;-1:-1:-1;24869:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48933:122::-;;;;;;;;;;-1:-1:-1;48933:122:0;;;;;:::i;:::-;;:::i;:::-;;26755:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28317:214::-;;;;;;;;;;-1:-1:-1;28317:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27838:413::-;;;;;;;;;;-1:-1:-1;27838:413:0;;;;;:::i;:::-;;:::i;45326:29::-;;;;;;;;;;;;;:::i;23126:100::-;;;;;;;;;;;;;:::i;29193:162::-;;;;;;;;;;-1:-1:-1;29193:162:0;;;;;:::i;:::-;;:::i;23790:1007::-;;;;;;;;;;-1:-1:-1;23790:1007:0;;;;;:::i;:::-;;:::i;48498:89::-;;;;;;;;;;;;;:::i;45482:42::-;;;;;;;;;;;;;:::i;49187:192::-;;;:::i;29426:177::-;;;;;;;;;;-1:-1:-1;29426:177:0;;;;;:::i;:::-;;:::i;48595:86::-;;;;;;;;;;-1:-1:-1;48595:86:0;;;;;:::i;:::-;;:::i;45399:28::-;;;;;;;;;;;;;:::i;23303:187::-;;;;;;;;;;-1:-1:-1;23303:187:0;;;;;:::i;:::-;;:::i;48821:104::-;;;;;;;;;;-1:-1:-1;48821:104:0;;;;;:::i;:::-;;:::i;45434:41::-;;;;;;;;;;;;;:::i;39043:86::-;;;;;;;;;;;;;:::i;26564:124::-;;;;;;;;;;-1:-1:-1;26564:124:0;;;;;:::i;:::-;;:::i;45298:21::-;;;;;;;;;;;;;:::i;25305:221::-;;;;;;;;;;-1:-1:-1;25305:221:0;;;;;:::i;:::-;;:::i;41860:94::-;;;;;;;;;;;;;:::i;49387:172::-;;;;;;:::i;:::-;;:::i;45572:59::-;;;;;;;;;;-1:-1:-1;45572:59:0;;;;;:::i;:::-;;:::i;45928:687::-;;;;;;:::i;:::-;;:::i;41209:87::-;;;;;;;;;;;;;:::i;26924:104::-;;;;;;;;;;;;;:::i;47370:667::-;;;;;;;;;;-1:-1:-1;47370:667:0;;;;;:::i;:::-;;:::i;46625:737::-;;;;;;:::i;:::-;;:::i;28603:288::-;;;;;;;;;;-1:-1:-1;28603:288:0;;;;;:::i;:::-;;:::i;29674:355::-;;;;;;;;;;-1:-1:-1;29674:355:0;;;;;:::i;:::-;;:::i;48690:123::-;;;;;;;;;;-1:-1:-1;48690:123:0;;;;;:::i;:::-;;:::i;48045:445::-;;;;;;;;;;-1:-1:-1;48045:445:0;;;;;:::i;:::-;;:::i;45362:30::-;;;;;;;;;;;;;:::i;49063:118::-;;;;;;;;;;-1:-1:-1;49063:118:0;;;;;:::i;:::-;;:::i;28962:164::-;;;;;;;;;;-1:-1:-1;28962:164:0;;;;;:::i;:::-;;:::i;45531:32::-;;;;;;;;;;;;;:::i;42109:229::-;;;;;;;;;;-1:-1:-1;42109:229:0;;;;;:::i;:::-;;:::i;45638:61::-;;;;;;;;;;;;;:::o;24869:372::-;24971:4;-1:-1:-1;;;;;;25008:40:0;;-1:-1:-1;;;25008:40:0;;:105;;-1:-1:-1;;;;;;;25065:48:0;;-1:-1:-1;;;25065:48:0;25008:105;:172;;;-1:-1:-1;;;;;;;25130:50:0;;-1:-1:-1;;;25130:50:0;25008:172;:225;;;;25197:36;25221:11;25197:23;:36::i;:::-;24988:245;;24869:372;;;;:::o;48933:122::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;;;;;;;;;49014:23:::1;:33:::0;48933:122::o;26755:100::-;26809:13;26842:5;26835:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26755:100;:::o;28317:214::-;28385:7;28413:16;28421:7;28413;:16::i;:::-;28405:74;;;;-1:-1:-1;;;28405:74:0;;;;;;;:::i;:::-;-1:-1:-1;28499:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28499:24:0;;28317:214::o;27838:413::-;27911:13;27927:24;27943:7;27927:15;:24::i;:::-;27911:40;;27976:5;-1:-1:-1;;;;;27970:11:0;:2;-1:-1:-1;;;;;27970:11:0;;;27962:58;;;;-1:-1:-1;;;27962:58:0;;;;;;;:::i;:::-;28071:5;-1:-1:-1;;;;;28055:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;28055:21:0;;:62;;;;28080:37;28097:5;28104:12;:10;:12::i;28080:37::-;28033:169;;;;-1:-1:-1;;;28033:169:0;;;;;;;:::i;:::-;28215:28;28224:2;28228:7;28237:5;28215:8;:28::i;:::-;27838:413;;;:::o;45326:29::-;;;;:::o;23126:100::-;23179:7;23206:12;23126:100;:::o;29193:162::-;29319:28;29329:4;29335:2;29339:7;29319:9;:28::i;23790:1007::-;23879:7;23915:16;23925:5;23915:9;:16::i;:::-;23907:5;:24;23899:71;;;;-1:-1:-1;;;23899:71:0;;;;;;;:::i;:::-;23981:22;24006:13;:11;:13::i;:::-;23981:38;;24030:19;24060:25;24249:9;24244:466;24264:14;24260:1;:18;24244:466;;;24304:31;24338:14;;;:11;:14;;;;;;;;;24304:48;;;;;;;;;-1:-1:-1;;;;;24304:48:0;;;;;-1:-1:-1;;;24304:48:0;;;;;;;;;;;;24375:28;24371:111;;24448:14;;;-1:-1:-1;24371:111:0;24525:5;-1:-1:-1;;;;;24504:26:0;:17;-1:-1:-1;;;;;24504:26:0;;24500:195;;;24574:5;24559:11;:20;24555:85;;;-1:-1:-1;24615:1:0;-1:-1:-1;24608:8:0;;-1:-1:-1;;;24608:8:0;24555:85;24662:13;;;;;24500:195;-1:-1:-1;24280:3:0;;24244:466;;;;24733:56;;-1:-1:-1;;;24733:56:0;;;;;;;:::i;23790:1007::-;;;;;:::o;48498:89::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48567:12:::1;::::0;;-1:-1:-1;;48551:28:0;::::1;48567:12;::::0;;::::1;48566:13;48551:28;::::0;;48498:89::o;45482:42::-;;;;:::o;49187:192::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;49244:12:::1;49270:10;-1:-1:-1::0;;;;;49262:24:0::1;49308:21;49262:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49243:101;;;49363:7;49355:16;;;::::0;::::1;;41500:1;49187:192::o:0;29426:177::-;29556:39;29573:4;29579:2;29583:7;29556:39;;;;;;;;;;;;:16;:39::i;48595:86::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48658:4:::1;:15:::0;48595:86::o;45399:28::-;;;;:::o;23303:187::-;23370:7;23406:13;:11;:13::i;:::-;23398:5;:21;23390:69;;;;-1:-1:-1;;;23390:69:0;;;;;;;:::i;:::-;-1:-1:-1;23477:5:0;23303:187::o;48821:104::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48896:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48821:104:::0;:::o;45434:41::-;;;;:::o;39043:86::-;39114:7;;-1:-1:-1;;;39114:7:0;;;;;39043:86::o;26564:124::-;26628:7;26655:20;26667:7;26655:11;:20::i;:::-;:25;;26564:124;-1:-1:-1;;26564:124:0:o;45298:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25305:221::-;25369:7;-1:-1:-1;;;;;25397:19:0;;25389:75;;;;-1:-1:-1;;;25389:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25490:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25490:27:0;;25305:221::o;41860:94::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;41925:21:::1;41943:1;41925:9;:21::i;:::-;41860:94::o:0;49387:172::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;49462:12:::1;49488:10;-1:-1:-1::0;;;;;49480:24:0::1;49512:7;49480:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49461:63;;;49543:7;49535:16;;;::::0;::::1;45572:59:::0;;;;;;;;;;;;;:::o;45928:687::-;44204:1;44800:7;;:19;;44792:63;;;;-1:-1:-1;;;44792:63:0;;;;;;;:::i;:::-;44204:1;44933:7;:18;45999:9:::1;46011:13;:11;:13::i;:::-;46093:10;46035:30;46068:36:::0;;;:24:::1;:36;::::0;;;;;46123:12:::1;::::0;45999:25;;-1:-1:-1;46068:36:0;46123:12:::1;;46115:50;;;;-1:-1:-1::0;;;46115:50:0::1;;;;;;;:::i;:::-;46224:22;::::0;46184:36:::1;46209:11:::0;46184:22;:36:::1;:::i;:::-;:62;;46176:120;;;;-1:-1:-1::0;;;46176:120:0::1;;;;;;;:::i;:::-;46323:1;46309:11;:15;46301:40;;;;-1:-1:-1::0;;;46301:40:0::1;;;;;;;:::i;:::-;46373:7;::::0;46354:15:::1;46358:11:::0;46354:1;:15:::1;:::i;:::-;:26;;46346:59;;;;-1:-1:-1::0;;;46346:59:0::1;;;;;;;:::i;:::-;46415:9;46410:103;46434:11;46430:1;:15;46410:103;;;46492:10;46467:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;46447:3;;;;:::i;:::-;;;46410:103;;;;46523:34;46533:10;46545:11;46523:9;:34::i;:::-;-1:-1:-1::0;;44160:1:0;45112:7;:22;-1:-1:-1;45928:687:0:o;41209:87::-;41282:6;;-1:-1:-1;;;;;41282:6:0;41209:87;:::o;26924:104::-;26980:13;27013:7;27006:14;;;;;:::i;47370:667::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;47518:35;;::::1;47496:118;;;;-1:-1:-1::0;;;47496:118:0::1;;;;;;;:::i;:::-;47625:21;47661:9:::0;47673:13:::1;:11;:13::i;:::-;47661:25;;47702:9;47697:101;47717:19:::0;;::::1;47697:101;;;47775:8;;47784:1;47775:11;;;;;-1:-1:-1::0;;;47775:11:0::1;;;;;;;;;;;;;;;47758:28;;;;;:::i;:::-;::::0;-1:-1:-1;47738:3:0::1;::::0;::::1;:::i;:::-;;;47697:101;;;-1:-1:-1::0;47837:9:0::1;::::0;47816:17:::1;47820:13:::0;47816:1;:17:::1;:::i;:::-;:30;;47808:51;;;;-1:-1:-1::0;;;47808:51:0::1;;;;;;;:::i;:::-;47870:20;;;47906:9;47901:110;47921:20:::0;;::::1;47901:110;;;47963:36;47973:9;;47983:1;47973:12;;;;;-1:-1:-1::0;;;47973:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47987:8;;47996:1;47987:11;;;;;-1:-1:-1::0;;;47987:11:0::1;;;;;;;;;;;;;;;47963:9;:36::i;:::-;47943:3;::::0;::::1;:::i;:::-;;;47901:110;;;-1:-1:-1::0;;;;;;;47370:667:0:o;46625:737::-;44204:1;44800:7;;:19;;44792:63;;;;-1:-1:-1;;;44792:63:0;;;;;;;:::i;:::-;44204:1;44933:7;:18;46699:9:::1;46711:13;:11;:13::i;:::-;46797:10;46735:32;46770:38:::0;;;:26:::1;:38;::::0;;;;;46827:12:::1;::::0;46699:25;;-1:-1:-1;46770:38:0;46827:12:::1;;46819:40;;;;-1:-1:-1::0;;;46819:40:0::1;;;;;;;:::i;:::-;46920:23;::::0;46878:38:::1;46905:11:::0;46878:24;:38:::1;:::i;:::-;:65;;46870:97;;;;-1:-1:-1::0;;;46870:97:0::1;;;;;;;:::i;:::-;47000:1;46986:11;:15;46978:39;;;;-1:-1:-1::0;;;46978:39:0::1;;;;;;;:::i;:::-;47055:9;::::0;47036:15:::1;47040:11:::0;47036:1;:15:::1;:::i;:::-;:28;;47028:60;;;;-1:-1:-1::0;;;47028:60:0::1;;;;;;;:::i;:::-;47127:11;47120:4;;:18;;;;:::i;:::-;47107:9;:31;;47099:40;;;::::0;::::1;;47149:9;47144:105;47168:11;47164:1;:15;47144:105;;;47228:10;47201:38;::::0;;;:26:::1;:38;::::0;;;;:40;;;::::1;::::0;::::1;:::i;:::-;;;;;;47181:3;;;;:::i;:::-;;;47144:105;;28603:288:::0;28710:12;:10;:12::i;:::-;-1:-1:-1;;;;;28698:24:0;:8;-1:-1:-1;;;;;28698:24:0;;;28690:63;;;;-1:-1:-1;;;28690:63:0;;;;;;;:::i;:::-;28811:8;28766:18;:32;28785:12;:10;:12::i;:::-;-1:-1:-1;;;;;28766:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;28766:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;28766:53:0;;;;;;;;;;;28850:12;:10;:12::i;:::-;-1:-1:-1;;;;;28835:48:0;;28874:8;28835:48;;;;;;:::i;:::-;;;;;;;;28603:288;;:::o;29674:355::-;29833:28;29843:4;29849:2;29853:7;29833:9;:28::i;:::-;29894:48;29917:4;29923:2;29927:7;29936:5;29894:22;:48::i;:::-;29872:149;;;;-1:-1:-1;;;29872:149:0;;;;;;;:::i;:::-;29674:355;;;;:::o;48690:123::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48778:7:::1;:27:::0;48690:123::o;48045:445::-;48163:13;48202:16;48210:7;48202;:16::i;:::-;48194:62;;;;-1:-1:-1;;;48194:62:0;;;;;;;:::i;:::-;48267:28;48298:10;:8;:10::i;:::-;48267:41;;48370:1;48345:14;48339:28;:32;:143;;;;;;;;;;;;;;;;;48415:14;48431:18;:7;:16;:18::i;:::-;48398:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48339:143;48319:163;48045:445;-1:-1:-1;;;48045:445:0:o;45362:30::-;;;;:::o;49063:118::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;49141:22:::1;:32:::0;49063:118::o;28962:164::-;-1:-1:-1;;;;;29083:25:0;;;29059:4;29083:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28962:164::o;45531:32::-;;;;;;:::o;42109:229::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42212:22:0;::::1;42190:110;;;;-1:-1:-1::0;;;42190:110:0::1;;;;;;;:::i;:::-;42311:19;42321:8;42311:9;:19::i;14389:157::-:0;-1:-1:-1;;;;;;14498:40:0;;-1:-1:-1;;;14498:40:0;14389:157;;;:::o;2836:98::-;2916:10;2836:98;:::o;30284:111::-;30341:4;30375:12;-1:-1:-1;30365:22:0;30284:111::o;35204:196::-;35319:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35319:29:0;-1:-1:-1;;;;;35319:29:0;;;;;;;;;35364:28;;35319:24;;35364:28;;;;;;;35204:196;;;:::o;33084:2002::-;33199:35;33237:20;33249:7;33237:11;:20::i;:::-;33199:58;;33270:22;33312:13;:18;;;-1:-1:-1;;;;;33296:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;33296:34:0;;:87;;;;33371:12;:10;:12::i;:::-;-1:-1:-1;;;;;33347:36:0;:20;33359:7;33347:11;:20::i;:::-;-1:-1:-1;;;;;33347:36:0;;33296:87;:154;;;-1:-1:-1;33417:18:0;;33400:50;;33437:12;:10;:12::i;33400:50::-;33270:181;;33472:17;33464:80;;;;-1:-1:-1;;;33464:80:0;;;;;;;:::i;:::-;33587:4;-1:-1:-1;;;;;33565:26:0;:13;:18;;;-1:-1:-1;;;;;33565:26:0;;33557:77;;;;-1:-1:-1;;;33557:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33653:16:0;;33645:66;;;;-1:-1:-1;;;33645:66:0;;;;;;;:::i;:::-;33724:43;33746:4;33752:2;33756:7;33765:1;33724:21;:43::i;:::-;33832:49;33849:1;33853:7;33862:13;:18;;;33832:8;:49::i;:::-;-1:-1:-1;;;;;34177:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34177:31:0;;;-1:-1:-1;;;;;34177:31:0;;;-1:-1:-1;;34177:31:0;;;;;;;34223:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34223:29:0;;;;;;;;;;;;;34269:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34269:30:0;;;;-1:-1:-1;;;;34314:61:0;-1:-1:-1;;;34359:15:0;34314:61;;;;;;34649:11;;;34679:24;;;;;:29;34649:11;;34679:29;34675:295;;34747:20;34755:11;34747:7;:20::i;:::-;34743:212;;;34824:18;;;34792:24;;;:11;:24;;;;;;;;:50;;34907:28;;;;34865:70;;-1:-1:-1;;;34865:70:0;-1:-1:-1;;;;;;;;;34792:50:0;;;-1:-1:-1;;;;;;34792:50:0;;;;;;;34865:70;;;;;;;34743:212;33084:2002;35017:7;35013:2;-1:-1:-1;;;;;34998:27:0;35007:4;-1:-1:-1;;;;;34998:27:0;;;;;;;;;;;35036:42;35057:4;35063:2;35067:7;35076:1;35036:20;:42::i;:::-;33084:2002;;;;;:::o;25965:537::-;26026:21;;:::i;:::-;26068:16;26076:7;26068;:16::i;:::-;26060:71;;;;-1:-1:-1;;;26060:71:0;;;;;;;:::i;:::-;26189:7;26169:245;26236:31;26270:17;;;:11;:17;;;;;;;;;26236:51;;;;;;;;;-1:-1:-1;;;;;26236:51:0;;;;;-1:-1:-1;;;26236:51:0;;;;;;;;;;;;26310:28;26306:93;;26370:9;-1:-1:-1;26363:16:0;;-1:-1:-1;26363:16:0;26306:93;-1:-1:-1;;;26209:6:0;26169:245;;42346:173;42421:6;;;-1:-1:-1;;;;;42438:17:0;;;-1:-1:-1;;;;;;42438:17:0;;;;;;;42471:40;;42421:6;;;42438:17;42421:6;;42471:40;;42402:16;;42471:40;42346:173;;:::o;30403:104::-;30472:27;30482:2;30486:8;30472:27;;;;;;;;;;;;:9;:27::i;35965:804::-;36120:4;36141:15;:2;-1:-1:-1;;;;;36141:13:0;;:15::i;:::-;36137:625;;;36193:2;-1:-1:-1;;;;;36177:36:0;;36214:12;:10;:12::i;:::-;36228:4;36234:7;36243:5;36177:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36177:72:0;;;;;;;;-1:-1:-1;;36177:72:0;;;;;;;;;;;;:::i;:::-;;;36173:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36423:13:0;;36419:273;;36466:61;;-1:-1:-1;;;36466:61:0;;;;;;;:::i;36419:273::-;36642:6;36636:13;36627:6;36623:2;36619:15;36612:38;36173:534;-1:-1:-1;;;;;;36300:55:0;-1:-1:-1;;;36300:55:0;;-1:-1:-1;36293:62:0;;36137:625;-1:-1:-1;36746:4:0;36137:625;35965:804;;;;;;:::o;45812:108::-;45872:13;45905:7;45898:14;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;;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;;;;;;-1:-1:-1;;;900:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-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;;;;;;-1:-1:-1;;;988:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;30870:163;30993:32;30999:2;31003:8;31013:5;31020:4;30993:5;:32::i;4283:326::-;-1:-1:-1;;;;;4578:19:0;;:23;;;4283:326::o;31292:1538::-;31431:20;31454:12;-1:-1:-1;;;;;31485:16:0;;31477:62;;;;-1:-1:-1;;;31477:62:0;;;;;;;:::i;:::-;31558:13;31550:66;;;;-1:-1:-1;;;31550:66:0;;;;;;;:::i;:::-;31629:61;31659:1;31663:2;31667:12;31681:8;31629:21;:61::i;:::-;-1:-1:-1;;;;;31968:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;31968:45:0;;-1:-1:-1;;;;;31968:45:0;;;;;;;;32028:50;;;-1:-1:-1;;;32028:50:0;;;;;;;;;;;;;;;32095:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32095:35:0;;;;-1:-1:-1;;;;32145:66:0;-1:-1:-1;;;32195:15:0;32145:66;;;;;;;32095:25;;32280:415;32300:8;32296:1;:12;32280:415;;;32339:38;;32364:12;;-1:-1:-1;;;;;32339:38:0;;;32356:1;;32339:38;;32356:1;;32339:38;32400:4;32396:249;;;32463:59;32494:1;32498:2;32502:12;32516:5;32463:22;:59::i;:::-;32429:196;;;;-1:-1:-1;;;32429:196:0;;;;;;;:::i;:::-;32665:14;;;;;32310:3;32280:415;;;-1:-1:-1;32711:12:0;:27;;;32762:60;;32795:2;32799:12;32813:8;32762:20;:60::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:400;;;965:3;958:4;950:6;946:17;942:27;932:2;;988:6;980;973:22;932:2;-1:-1:-1;1016:20:1;;1059:18;1048:30;;1045:2;;;1098:8;1088;1081:26;1045:2;1142:4;1134:6;1130:17;1118:29;;1205:3;1198:4;1190;1182:6;1178:17;1170:6;1166:30;1162:41;1159:50;1156:2;;;1222:1;1219;1212:12;1156:2;922:310;;;;;:::o;1237:198::-;;1349:2;1337:9;1328:7;1324:23;1320:32;1317:2;;;1370:6;1362;1355:22;1317:2;1398:31;1419:9;1398:31;:::i;1440:274::-;;;1569:2;1557:9;1548:7;1544:23;1540:32;1537:2;;;1590:6;1582;1575:22;1537:2;1618:31;1639:9;1618:31;:::i;:::-;1608:41;;1668:40;1704:2;1693:9;1689:18;1668:40;:::i;:::-;1658:50;;1527:187;;;;;:::o;1719:342::-;;;;1865:2;1853:9;1844:7;1840:23;1836:32;1833:2;;;1886:6;1878;1871:22;1833:2;1914:31;1935:9;1914:31;:::i;:::-;1904:41;;1964:40;2000:2;1989:9;1985:18;1964:40;:::i;:::-;1954:50;;2051:2;2040:9;2036:18;2023:32;2013:42;;1823:238;;;;;:::o;2066:702::-;;;;;2238:3;2226:9;2217:7;2213:23;2209:33;2206:2;;;2260:6;2252;2245:22;2206:2;2288:31;2309:9;2288:31;:::i;:::-;2278:41;;2338:40;2374:2;2363:9;2359:18;2338:40;:::i;:::-;2328:50;;2425:2;2414:9;2410:18;2397:32;2387:42;;2480:2;2469:9;2465:18;2452:32;2507:18;2499:6;2496:30;2493:2;;;2544:6;2536;2529:22;2493:2;2572:22;;2625:4;2617:13;;2613:27;-1:-1:-1;2603:2:1;;2659:6;2651;2644:22;2603:2;2687:75;2754:7;2749:2;2736:16;2731:2;2727;2723:11;2687:75;:::i;:::-;2677:85;;;2196:572;;;;;;;:::o;2773:369::-;;;2899:2;2887:9;2878:7;2874:23;2870:32;2867:2;;;2920:6;2912;2905:22;2867:2;2948:31;2969:9;2948:31;:::i;:::-;2938:41;;3029:2;3018:9;3014:18;3001:32;3076:5;3069:13;3062:21;3055:5;3052:32;3042:2;;3103:6;3095;3088:22;3042:2;3131:5;3121:15;;;2857:285;;;;;:::o;3147:266::-;;;3276:2;3264:9;3255:7;3251:23;3247:32;3244:2;;;3297:6;3289;3282:22;3244:2;3325:31;3346:9;3325:31;:::i;:::-;3315:41;3403:2;3388:18;;;;3375:32;;-1:-1:-1;;;3234:179:1:o;3418:815::-;;;;;3617:2;3605:9;3596:7;3592:23;3588:32;3585:2;;;3638:6;3630;3623:22;3585:2;3683:9;3670:23;3712:18;3753:2;3745:6;3742:14;3739:2;;;3774:6;3766;3759:22;3739:2;3818:76;3886:7;3877:6;3866:9;3862:22;3818:76;:::i;:::-;3913:8;;-1:-1:-1;3792:102:1;-1:-1:-1;4001:2:1;3986:18;;3973:32;;-1:-1:-1;4017:16:1;;;4014:2;;;4051:6;4043;4036:22;4014:2;;4095:78;4165:7;4154:8;4143:9;4139:24;4095:78;:::i;:::-;3575:658;;;;-1:-1:-1;4192:8:1;-1:-1:-1;;;;3575:658:1:o;4238:257::-;;4349:2;4337:9;4328:7;4324:23;4320:32;4317:2;;;4370:6;4362;4355:22;4317:2;4414:9;4401:23;4433:32;4459:5;4433:32;:::i;4500:261::-;;4622:2;4610:9;4601:7;4597:23;4593:32;4590:2;;;4643:6;4635;4628:22;4590:2;4680:9;4674:16;4699:32;4725:5;4699:32;:::i;4766:482::-;;4888:2;4876:9;4867:7;4863:23;4859:32;4856:2;;;4909:6;4901;4894:22;4856:2;4954:9;4941:23;4987:18;4979:6;4976:30;4973:2;;;5024:6;5016;5009:22;4973:2;5052:22;;5105:4;5097:13;;5093:27;-1:-1:-1;5083:2:1;;5139:6;5131;5124:22;5083:2;5167:75;5234:7;5229:2;5216:16;5211:2;5207;5203:11;5167:75;:::i;5253:190::-;;5365:2;5353:9;5344:7;5340:23;5336:32;5333:2;;;5386:6;5378;5371:22;5333:2;-1:-1:-1;5414:23:1;;5323:120;-1:-1:-1;5323:120:1:o;5448:259::-;;5529:5;5523:12;5556:6;5551:3;5544:19;5572:63;5628:6;5621:4;5616:3;5612:14;5605:4;5598:5;5594:16;5572:63;:::i;:::-;5689:2;5668:15;-1:-1:-1;;5664:29:1;5655:39;;;;5696:4;5651:50;;5499:208;-1:-1:-1;;5499:208:1:o;5712:637::-;;6030:6;6024:13;6046:53;6092:6;6087:3;6080:4;6072:6;6068:17;6046:53;:::i;:::-;6162:13;;6121:16;;;;6184:57;6162:13;6121:16;6218:4;6206:17;;6184:57;:::i;:::-;-1:-1:-1;;;6263:20:1;;6292:22;;;6341:1;6330:13;;6000:349;-1:-1:-1;;;;6000:349:1:o;6354:205::-;6554:3;6545:14::o;6564:203::-;-1:-1:-1;;;;;6728:32:1;;;;6710:51;;6698:2;6683:18;;6665:102::o;6772:490::-;-1:-1:-1;;;;;7041:15:1;;;7023:34;;7093:15;;7088:2;7073:18;;7066:43;7140:2;7125:18;;7118:34;;;7188:3;7183:2;7168:18;;7161:31;;;6772:490;;7209:47;;7236:19;;7228:6;7209:47;:::i;:::-;7201:55;6975:287;-1:-1:-1;;;;;;6975:287:1:o;7267:187::-;7432:14;;7425:22;7407:41;;7395:2;7380:18;;7362:92::o;7459:221::-;;7608:2;7597:9;7590:21;7628:46;7670:2;7659:9;7655:18;7647:6;7628:46;:::i;7685:398::-;7887:2;7869:21;;;7926:2;7906:18;;;7899:30;7965:34;7960:2;7945:18;;7938:62;-1:-1:-1;;;8031:2:1;8016:18;;8009:32;8073:3;8058:19;;7859:224::o;8088:335::-;8290:2;8272:21;;;8329:2;8309:18;;;8302:30;-1:-1:-1;;;8363:2:1;8348:18;;8341:41;8414:2;8399:18;;8262:161::o;8428:409::-;8630:2;8612:21;;;8669:2;8649:18;;;8642:30;8708:34;8703:2;8688:18;;8681:62;-1:-1:-1;;;8774:2:1;8759:18;;8752:43;8827:3;8812:19;;8602:235::o;8842:397::-;9044:2;9026:21;;;9083:2;9063:18;;;9056:30;9122:34;9117:2;9102:18;;9095:62;-1:-1:-1;;;9188:2:1;9173:18;;9166:31;9229:3;9214:19;;9016:223::o;9244:402::-;9446:2;9428:21;;;9485:2;9465:18;;;9458:30;9524:34;9519:2;9504:18;;9497:62;-1:-1:-1;;;9590:2:1;9575:18;;9568:36;9636:3;9621:19;;9418:228::o;9651:406::-;9853:2;9835:21;;;9892:2;9872:18;;;9865:30;9931:34;9926:2;9911:18;;9904:62;-1:-1:-1;;;9997:2:1;9982:18;;9975:40;10047:3;10032:19;;9825:232::o;10062:399::-;10264:2;10246:21;;;10303:2;10283:18;;;10276:30;10342:34;10337:2;10322:18;;10315:62;-1:-1:-1;;;10408:2:1;10393:18;;10386:33;10451:3;10436:19;;10236:225::o;10466:401::-;10668:2;10650:21;;;10707:2;10687:18;;;10680:30;10746:34;10741:2;10726:18;;10719:62;-1:-1:-1;;;10812:2:1;10797:18;;10790:35;10857:3;10842:19;;10640:227::o;10872:339::-;11074:2;11056:21;;;11113:2;11093:18;;;11086:30;-1:-1:-1;;;11147:2:1;11132:18;;11125:45;11202:2;11187:18;;11046:165::o;11216:343::-;11418:2;11400:21;;;11457:2;11437:18;;;11430:30;-1:-1:-1;;;11491:2:1;11476:18;;11469:49;11550:2;11535:18;;11390:169::o;11564:397::-;11766:2;11748:21;;;11805:2;11785:18;;;11778:30;11844:34;11839:2;11824:18;;11817:62;-1:-1:-1;;;11910:2:1;11895:18;;11888:31;11951:3;11936:19;;11738:223::o;11966:421::-;12168:2;12150:21;;;12207:2;12187:18;;;12180:30;12246:34;12241:2;12226:18;;12219:62;12317:27;12312:2;12297:18;;12290:55;12377:3;12362:19;;12140:247::o;12392:407::-;12594:2;12576:21;;;12633:2;12613:18;;;12606:30;12672:34;12667:2;12652:18;;12645:62;-1:-1:-1;;;12738:2:1;12723:18;;12716:41;12789:3;12774:19;;12566:233::o;12804:343::-;13006:2;12988:21;;;13045:2;13025:18;;;13018:30;-1:-1:-1;;;13079:2:1;13064:18;;13057:49;13138:2;13123:18;;12978:169::o;13152:402::-;13354:2;13336:21;;;13393:2;13373:18;;;13366:30;13432:34;13427:2;13412:18;;13405:62;-1:-1:-1;;;13498:2:1;13483:18;;13476:36;13544:3;13529:19;;13326:228::o;13559:331::-;13761:2;13743:21;;;13800:1;13780:18;;;13773:29;-1:-1:-1;;;13833:2:1;13818:18;;13811:38;13881:2;13866:18;;13733:157::o;13895:356::-;14097:2;14079:21;;;14116:18;;;14109:30;14175:34;14170:2;14155:18;;14148:62;14242:2;14227:18;;14069:182::o;14256:350::-;14458:2;14440:21;;;14497:2;14477:18;;;14470:30;14536:28;14531:2;14516:18;;14509:56;14597:2;14582:18;;14430:176::o;14611:414::-;14813:2;14795:21;;;14852:2;14832:18;;;14825:30;14891:34;14886:2;14871:18;;14864:62;-1:-1:-1;;;14957:2:1;14942:18;;14935:48;15015:3;15000:19;;14785:240::o;15030:398::-;15232:2;15214:21;;;15271:2;15251:18;;;15244:30;15310:34;15305:2;15290:18;;15283:62;-1:-1:-1;;;15376:2:1;15361:18;;15354:32;15418:3;15403:19;;15204:224::o;15433:415::-;15635:2;15617:21;;;15674:2;15654:18;;;15647:30;15713:34;15708:2;15693:18;;15686:62;-1:-1:-1;;;15779:2:1;15764:18;;15757:49;15838:3;15823:19;;15607:241::o;15853:397::-;16055:2;16037:21;;;16094:2;16074:18;;;16067:30;16133:34;16128:2;16113:18;;16106:62;-1:-1:-1;;;16199:2:1;16184:18;;16177:31;16240:3;16225:19;;16027:223::o;16255:404::-;16457:2;16439:21;;;16496:2;16476:18;;;16469:30;16535:34;16530:2;16515:18;;16508:62;-1:-1:-1;;;16601:2:1;16586:18;;16579:38;16649:3;16634:19;;16429:230::o;16664:349::-;16866:2;16848:21;;;16905:2;16885:18;;;16878:30;16944:27;16939:2;16924:18;;16917:55;17004:2;16989:18;;16838:175::o;17018:410::-;17220:2;17202:21;;;17259:2;17239:18;;;17232:30;17298:34;17293:2;17278:18;;17271:62;-1:-1:-1;;;17364:2:1;17349:18;;17342:44;17418:3;17403:19;;17192:236::o;17433:355::-;17635:2;17617:21;;;17674:2;17654:18;;;17647:30;17713:33;17708:2;17693:18;;17686:61;17779:2;17764:18;;17607:181::o;18209:409::-;18411:2;18393:21;;;18450:2;18430:18;;;18423:30;18489:34;18484:2;18469:18;;18462:62;-1:-1:-1;;;18555:2:1;18540:18;;18533:43;18608:3;18593:19;;18383:235::o;18623:177::-;18769:25;;;18757:2;18742:18;;18724:76::o;18805:128::-;;18876:1;18872:6;18869:1;18866:13;18863:2;;;18882:18;;:::i;:::-;-1:-1:-1;18918:9:1;;18853:80::o;18938:120::-;;19004:1;18994:2;;19009:18;;:::i;:::-;-1:-1:-1;19043:9:1;;18984:74::o;19063:168::-;;19169:1;19165;19161:6;19157:14;19154:1;19151:21;19146:1;19139:9;19132:17;19128:45;19125:2;;;19176:18;;:::i;:::-;-1:-1:-1;19216:9:1;;19115:116::o;19236:125::-;;19304:1;19301;19298:8;19295:2;;;19309:18;;:::i;:::-;-1:-1:-1;19346:9:1;;19285:76::o;19366:258::-;19438:1;19448:113;19462:6;19459:1;19456:13;19448:113;;;19538:11;;;19532:18;19519:11;;;19512:39;19484:2;19477:10;19448:113;;;19579:6;19576:1;19573:13;19570:2;;;-1:-1:-1;;19614:1:1;19596:16;;19589:27;19419:205::o;19629:380::-;19714:1;19704:12;;19761:1;19751:12;;;19772:2;;19826:4;19818:6;19814:17;19804:27;;19772:2;19879;19871:6;19868:14;19848:18;19845:38;19842:2;;;19925:10;19920:3;19916:20;19913:1;19906:31;19960:4;19957:1;19950:15;19988:4;19985:1;19978:15;19842:2;;19684:325;;;:::o;20014:135::-;;-1:-1:-1;;20074:17:1;;20071:2;;;20094:18;;:::i;:::-;-1:-1:-1;20141:1:1;20130:13;;20061:88::o;20154:112::-;;20212:1;20202:2;;20217:18;;:::i;:::-;-1:-1:-1;20251:9:1;;20192:74::o;20271:127::-;20332:10;20327:3;20323:20;20320:1;20313:31;20363:4;20360:1;20353:15;20387:4;20384:1;20377:15;20403:127;20464:10;20459:3;20455:20;20452:1;20445:31;20495:4;20492:1;20485:15;20519:4;20516:1;20509:15;20535:127;20596:10;20591:3;20587:20;20584:1;20577:31;20627:4;20624:1;20617:15;20651:4;20648:1;20641:15;20667:133;-1:-1:-1;;;;;;20743:32:1;;20733:43;;20723:2;;20790:1;20787;20780:12
Swarm Source
ipfs://194acf59890c9c1088ee170b0eb7d8a9dc64465457faf144bad05da4ba606a85
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.