Polygon Sponsored slots available. Book your slot here!
Contract Overview
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x5755e53300fd04f88b5623917ba48eba8e28ebb03f6daa57cb4f719e752defc1 | 25199638 | 394 days 16 hrs ago | 0x7fe038fb65261c430fe0091c5dcb2c8981b2b45a | 0x0591666b9e46b07b1de5bcca773a0d7fa4041701 | 4,140 MATIC |
[ Download CSV Export ]
Contract Name:
Optimum_Treasury
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-12-29 */ /** ======================================================= ____ _ _ / __ \ | | (_) | | | |_ __ | |_ _ _ __ ___ _ _ _ __ ___ | | | | '_ \| __| | '_ ` _ \| | | | '_ ` _ \ | |__| | |_) | |_| | | | | | | |_| | | | | | | \____/| .__/ \__|_|_| |_| |_|\__,_|_| |_| |_| | | |_| ======================================================= *Submitted for verification at Etherscan.io on 2021-09-22 */ /** *Submitted for verification at Etherscan.io on 2021-09-21 */ // SPDX-License-Identifier: MIT 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; } } 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); } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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); } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } 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 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; } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } 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); } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; contract Optimum_Treasury is Ownable, ERC721 { uint public tokenPrice = 90 ether; uint constant maxSupply = 5000; uint public totalSupply = 0; bool public public_sale_status = false; string public baseURI; uint public maxPerTransaction = 10; //Max Limit for Sale uint public maxPerWallet = 10; //Max Limit for Presale constructor() ERC721("Optimum Treasury", "OTM"){} function buy(uint _count) public payable{ require(_count > 0, "mint at least one token"); require(_count <= maxPerTransaction, "max per transaction 10"); require(totalSupply + _count <= maxSupply, "Not enough tokens left"); require(msg.value >= tokenPrice * _count, "incorrect ether amount"); require(public_sale_status == true, "Sale is Paused."); require(balanceOf(msg.sender) + _count <= maxPerWallet, "10 tokens per wallet"); for(uint i = 0; i < _count; i++) _safeMint(msg.sender, totalSupply + 1 + i); totalSupply += _count; } function sendGifts(address[] memory _wallets) public onlyOwner{ require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left"); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], totalSupply + 1 + i); totalSupply += _wallets.length; } function setBaseUri(string memory _uri) external onlyOwner { baseURI = _uri; } function publicprice(uint temp) external onlyOwner { tokenPrice = temp; } function publicSale_status(bool temp) external onlyOwner { public_sale_status = temp; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"publicSale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"temp","type":"uint256"}],"name":"publicprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526804e1003b28d928000060075560006008556000600960006101000a81548160ff021916908315150217905550600a600b55600a600c553480156200004857600080fd5b506040518060400160405280601081526020017f4f7074696d756d205472656173757279000000000000000000000000000000008152506040518060400160405280600381526020017f4f544d0000000000000000000000000000000000000000000000000000000000815250620000d5620000c96200010f60201b60201c565b6200011760201b60201c565b8160019080519060200190620000ed929190620001db565b50806002908051906020019062000106929190620001db565b505050620002f0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e9906200028b565b90600052602060002090601f0160209004810192826200020d576000855562000259565b82601f106200022857805160ff191683800117855562000259565b8280016001018555821562000259579182015b82811115620002585782518255916020019190600101906200023b565b5b5090506200026891906200026c565b5090565b5b80821115620002875760008160009055506001016200026d565b5090565b60006002820490506001821680620002a457607f821691505b60208210811415620002bb57620002ba620002c1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b7f80620003006000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105d2578063d96a094a1461060f578063e985e9c51461062b578063f2fde38b14610668576101b7565b8063a22cb46514610557578063b88d4fde14610580578063c150a8bf146105a9576101b7565b80638da5cb5b116100c65780638da5cb5b146104ad57806395d89b41146104d857806395ea5e6714610503578063a0bcfc7f1461052e576101b7565b8063715018a6146104425780637c8255db146104595780637ff9b59614610482576101b7565b80633ccfd60b116101595780634b980d67116101335780634b980d67146103725780636352211e1461039d5780636c0360eb146103da57806370a0823114610405576101b7565b80633ccfd60b1461030757806342842e0e1461031e578063453c231014610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780631cef37e4146102b557806323b872dd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061283b565b610691565b6040516101f09190612d8b565b60405180910390f35b34801561020557600080fd5b5061020e610773565b60405161021b9190612da6565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906128de565b610805565b6040516102589190612d24565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612785565b61088a565b005b34801561029657600080fd5b5061029f6109a2565b6040516102ac91906130a8565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061280e565b6109a8565b005b3480156102ea57600080fd5b506103056004803603810190610300919061266f565b610a41565b005b34801561031357600080fd5b5061031c610aa1565b005b34801561032a57600080fd5b506103456004803603810190610340919061266f565b610b6d565b005b34801561035357600080fd5b5061035c610b8d565b60405161036991906130a8565b60405180910390f35b34801561037e57600080fd5b50610387610b93565b60405161039491906130a8565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906128de565b610b99565b6040516103d19190612d24565b60405180910390f35b3480156103e657600080fd5b506103ef610c4b565b6040516103fc9190612da6565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612602565b610cd9565b60405161043991906130a8565b60405180910390f35b34801561044e57600080fd5b50610457610d91565b005b34801561046557600080fd5b50610480600480360381019061047b91906127c5565b610e19565b005b34801561048e57600080fd5b50610497610f62565b6040516104a491906130a8565b60405180910390f35b3480156104b957600080fd5b506104c2610f68565b6040516104cf9190612d24565b60405180910390f35b3480156104e457600080fd5b506104ed610f91565b6040516104fa9190612da6565b60405180910390f35b34801561050f57600080fd5b50610518611023565b6040516105259190612d8b565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612895565b611036565b005b34801561056357600080fd5b5061057e60048036038101906105799190612745565b6110cc565b005b34801561058c57600080fd5b506105a760048036038101906105a291906126c2565b61124d565b005b3480156105b557600080fd5b506105d060048036038101906105cb91906128de565b6112af565b005b3480156105de57600080fd5b506105f960048036038101906105f491906128de565b611335565b6040516106069190612da6565b60405180910390f35b610629600480360381019061062491906128de565b6113dc565b005b34801561063757600080fd5b50610652600480360381019061064d919061262f565b611612565b60405161065f9190612d8b565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a9190612602565b6116a6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076c575061076b8261179e565b5b9050919050565b60606001805461078290613384565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae90613384565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b600061081082611808565b61084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690612f48565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089582610b99565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90612fe8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610925611874565b73ffffffffffffffffffffffffffffffffffffffff16148061095457506109538161094e611874565b611612565b5b610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90612ea8565b60405180910390fd5b61099d838361187c565b505050565b60085481565b6109b0611874565b73ffffffffffffffffffffffffffffffffffffffff166109ce610f68565b73ffffffffffffffffffffffffffffffffffffffff1614610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90612f68565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b610a52610a4c611874565b82611935565b610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890613028565b60405180910390fd5b610a9c838383611a13565b505050565b610aa9611874565b73ffffffffffffffffffffffffffffffffffffffff16610ac7610f68565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490612f68565b60405180910390fd5b610b25610f68565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b6a573d6000803e3d6000fd5b50565b610b888383836040518060200160405280600081525061124d565b505050565b600c5481565b600b5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612ee8565b60405180910390fd5b80915050919050565b600a8054610c5890613384565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8490613384565b8015610cd15780601f10610ca657610100808354040283529160200191610cd1565b820191906000526020600020905b815481529060010190602001808311610cb457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190612ec8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d99611874565b73ffffffffffffffffffffffffffffffffffffffff16610db7610f68565b73ffffffffffffffffffffffffffffffffffffffff1614610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490612f68565b60405180910390fd5b610e176000611c6f565b565b610e21611874565b73ffffffffffffffffffffffffffffffffffffffff16610e3f610f68565b73ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90612f68565b60405180910390fd5b6113888151600854610ea791906131b9565b1115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613068565b60405180910390fd5b60005b8151811015610f4457610f31828281518110610f0a57610f096134ee565b5b6020026020010151826001600854610f2291906131b9565b610f2c91906131b9565b611d33565b8080610f3c906133e7565b915050610eeb565b50805160086000828254610f5891906131b9565b9250508190555050565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610fa090613384565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcc90613384565b80156110195780601f10610fee57610100808354040283529160200191611019565b820191906000526020600020905b815481529060010190602001808311610ffc57829003601f168201915b5050505050905090565b600960009054906101000a900460ff1681565b61103e611874565b73ffffffffffffffffffffffffffffffffffffffff1661105c610f68565b73ffffffffffffffffffffffffffffffffffffffff16146110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990612f68565b60405180910390fd5b80600a90805190602001906110c8929190612378565b5050565b6110d4611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990612e48565b60405180910390fd5b806006600061114f611874565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111fc611874565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112419190612d8b565b60405180910390a35050565b61125e611258611874565b83611935565b61129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613028565b60405180910390fd5b6112a984848484611d51565b50505050565b6112b7611874565b73ffffffffffffffffffffffffffffffffffffffff166112d5610f68565b73ffffffffffffffffffffffffffffffffffffffff161461132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290612f68565b60405180910390fd5b8060078190555050565b606061134082611808565b61137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690612fa8565b60405180910390fd5b6000611389611dad565b905060008151116113a957604051806020016040528060008152506113d4565b806113b384611e3f565b6040516020016113c4929190612d00565b6040516020818303038152906040525b915050919050565b6000811161141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690613048565b60405180910390fd5b600b54811115611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90612fc8565b60405180910390fd5b6113888160085461147591906131b9565b11156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90612f08565b60405180910390fd5b806007546114c49190613240565b341015611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90612e88565b60405180910390fd5b60011515600960009054906101000a900460ff1615151461155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613088565b60405180910390fd5b600c548161156933610cd9565b61157391906131b9565b11156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613008565b60405180910390fd5b60005b818110156115f5576115e2338260016008546115d391906131b9565b6115dd91906131b9565b611d33565b80806115ed906133e7565b9150506115b7565b50806008600082825461160891906131b9565b9250508190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ae611874565b73ffffffffffffffffffffffffffffffffffffffff166116cc610f68565b73ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990612f68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178990612de8565b60405180910390fd5b61179b81611c6f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118ef83610b99565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061194082611808565b61197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690612e68565b60405180910390fd5b600061198a83610b99565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119f957508373ffffffffffffffffffffffffffffffffffffffff166119e184610805565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a0a5750611a098185611612565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a3382610b99565b73ffffffffffffffffffffffffffffffffffffffff1614611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090612f88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090612e28565b60405180910390fd5b611b04838383611fa0565b611b0f60008261187c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5f919061329a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bb691906131b9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d4d828260405180602001604052806000815250611fa5565b5050565b611d5c848484611a13565b611d6884848484612000565b611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90612dc8565b60405180910390fd5b50505050565b6060600a8054611dbc90613384565b80601f0160208091040260200160405190810160405280929190818152602001828054611de890613384565b8015611e355780601f10611e0a57610100808354040283529160200191611e35565b820191906000526020600020905b815481529060010190602001808311611e1857829003601f168201915b5050505050905090565b60606000821415611e87576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9b565b600082905060005b60008214611eb9578080611ea2906133e7565b915050600a82611eb2919061320f565b9150611e8f565b60008167ffffffffffffffff811115611ed557611ed461351d565b5b6040519080825280601f01601f191660200182016040528015611f075781602001600182028036833780820191505090505b5090505b60008514611f9457600182611f20919061329a565b9150600a85611f2f9190613430565b6030611f3b91906131b9565b60f81b818381518110611f5157611f506134ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f8d919061320f565b9450611f0b565b8093505050505b919050565b505050565b611faf8383612197565b611fbc6000848484612000565b611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290612dc8565b60405180910390fd5b505050565b60006120218473ffffffffffffffffffffffffffffffffffffffff16612365565b1561218a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204a611874565b8786866040518563ffffffff1660e01b815260040161206c9493929190612d3f565b602060405180830381600087803b15801561208657600080fd5b505af19250505080156120b757506040513d601f19601f820116820180604052508101906120b49190612868565b60015b61213a573d80600081146120e7576040519150601f19603f3d011682016040523d82523d6000602084013e6120ec565b606091505b50600081511415612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990612dc8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061218f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90612f28565b60405180910390fd5b61221081611808565b15612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224790612e08565b60405180910390fd5b61225c60008383611fa0565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ac91906131b9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461238490613384565b90600052602060002090601f0160209004810192826123a657600085556123ed565b82601f106123bf57805160ff19168380011785556123ed565b828001600101855582156123ed579182015b828111156123ec5782518255916020019190600101906123d1565b5b5090506123fa91906123fe565b5090565b5b808211156124175760008160009055506001016123ff565b5090565b600061242e612429846130e8565b6130c3565b9050808382526020820190508285602086028201111561245157612450613551565b5b60005b858110156124815781612467888261250f565b845260208401935060208301925050600181019050612454565b5050509392505050565b600061249e61249984613114565b6130c3565b9050828152602081018484840111156124ba576124b9613556565b5b6124c5848285613342565b509392505050565b60006124e06124db84613145565b6130c3565b9050828152602081018484840111156124fc576124fb613556565b5b612507848285613342565b509392505050565b60008135905061251e81613aed565b92915050565b600082601f8301126125395761253861354c565b5b813561254984826020860161241b565b91505092915050565b60008135905061256181613b04565b92915050565b60008135905061257681613b1b565b92915050565b60008151905061258b81613b1b565b92915050565b600082601f8301126125a6576125a561354c565b5b81356125b684826020860161248b565b91505092915050565b600082601f8301126125d4576125d361354c565b5b81356125e48482602086016124cd565b91505092915050565b6000813590506125fc81613b32565b92915050565b60006020828403121561261857612617613560565b5b60006126268482850161250f565b91505092915050565b6000806040838503121561264657612645613560565b5b60006126548582860161250f565b92505060206126658582860161250f565b9150509250929050565b60008060006060848603121561268857612687613560565b5b60006126968682870161250f565b93505060206126a78682870161250f565b92505060406126b8868287016125ed565b9150509250925092565b600080600080608085870312156126dc576126db613560565b5b60006126ea8782880161250f565b94505060206126fb8782880161250f565b935050604061270c878288016125ed565b925050606085013567ffffffffffffffff81111561272d5761272c61355b565b5b61273987828801612591565b91505092959194509250565b6000806040838503121561275c5761275b613560565b5b600061276a8582860161250f565b925050602061277b85828601612552565b9150509250929050565b6000806040838503121561279c5761279b613560565b5b60006127aa8582860161250f565b92505060206127bb858286016125ed565b9150509250929050565b6000602082840312156127db576127da613560565b5b600082013567ffffffffffffffff8111156127f9576127f861355b565b5b61280584828501612524565b91505092915050565b60006020828403121561282457612823613560565b5b600061283284828501612552565b91505092915050565b60006020828403121561285157612850613560565b5b600061285f84828501612567565b91505092915050565b60006020828403121561287e5761287d613560565b5b600061288c8482850161257c565b91505092915050565b6000602082840312156128ab576128aa613560565b5b600082013567ffffffffffffffff8111156128c9576128c861355b565b5b6128d5848285016125bf565b91505092915050565b6000602082840312156128f4576128f3613560565b5b6000612902848285016125ed565b91505092915050565b612914816132ce565b82525050565b612923816132e0565b82525050565b600061293482613176565b61293e818561318c565b935061294e818560208601613351565b61295781613565565b840191505092915050565b600061296d82613181565b612977818561319d565b9350612987818560208601613351565b61299081613565565b840191505092915050565b60006129a682613181565b6129b081856131ae565b93506129c0818560208601613351565b80840191505092915050565b60006129d960328361319d565b91506129e482613576565b604082019050919050565b60006129fc60268361319d565b9150612a07826135c5565b604082019050919050565b6000612a1f601c8361319d565b9150612a2a82613614565b602082019050919050565b6000612a4260248361319d565b9150612a4d8261363d565b604082019050919050565b6000612a6560198361319d565b9150612a708261368c565b602082019050919050565b6000612a88602c8361319d565b9150612a93826136b5565b604082019050919050565b6000612aab60168361319d565b9150612ab682613704565b602082019050919050565b6000612ace60388361319d565b9150612ad98261372d565b604082019050919050565b6000612af1602a8361319d565b9150612afc8261377c565b604082019050919050565b6000612b1460298361319d565b9150612b1f826137cb565b604082019050919050565b6000612b3760168361319d565b9150612b428261381a565b602082019050919050565b6000612b5a60208361319d565b9150612b6582613843565b602082019050919050565b6000612b7d602c8361319d565b9150612b888261386c565b604082019050919050565b6000612ba060208361319d565b9150612bab826138bb565b602082019050919050565b6000612bc360298361319d565b9150612bce826138e4565b604082019050919050565b6000612be6602f8361319d565b9150612bf182613933565b604082019050919050565b6000612c0960168361319d565b9150612c1482613982565b602082019050919050565b6000612c2c60218361319d565b9150612c37826139ab565b604082019050919050565b6000612c4f60148361319d565b9150612c5a826139fa565b602082019050919050565b6000612c7260318361319d565b9150612c7d82613a23565b604082019050919050565b6000612c9560178361319d565b9150612ca082613a72565b602082019050919050565b6000612cb860168361319d565b9150612cc382613a9b565b602082019050919050565b6000612cdb600f8361319d565b9150612ce682613ac4565b602082019050919050565b612cfa81613338565b82525050565b6000612d0c828561299b565b9150612d18828461299b565b91508190509392505050565b6000602082019050612d39600083018461290b565b92915050565b6000608082019050612d54600083018761290b565b612d61602083018661290b565b612d6e6040830185612cf1565b8181036060830152612d808184612929565b905095945050505050565b6000602082019050612da0600083018461291a565b92915050565b60006020820190508181036000830152612dc08184612962565b905092915050565b60006020820190508181036000830152612de1816129cc565b9050919050565b60006020820190508181036000830152612e01816129ef565b9050919050565b60006020820190508181036000830152612e2181612a12565b9050919050565b60006020820190508181036000830152612e4181612a35565b9050919050565b60006020820190508181036000830152612e6181612a58565b9050919050565b60006020820190508181036000830152612e8181612a7b565b9050919050565b60006020820190508181036000830152612ea181612a9e565b9050919050565b60006020820190508181036000830152612ec181612ac1565b9050919050565b60006020820190508181036000830152612ee181612ae4565b9050919050565b60006020820190508181036000830152612f0181612b07565b9050919050565b60006020820190508181036000830152612f2181612b2a565b9050919050565b60006020820190508181036000830152612f4181612b4d565b9050919050565b60006020820190508181036000830152612f6181612b70565b9050919050565b60006020820190508181036000830152612f8181612b93565b9050919050565b60006020820190508181036000830152612fa181612bb6565b9050919050565b60006020820190508181036000830152612fc181612bd9565b9050919050565b60006020820190508181036000830152612fe181612bfc565b9050919050565b6000602082019050818103600083015261300181612c1f565b9050919050565b6000602082019050818103600083015261302181612c42565b9050919050565b6000602082019050818103600083015261304181612c65565b9050919050565b6000602082019050818103600083015261306181612c88565b9050919050565b6000602082019050818103600083015261308181612cab565b9050919050565b600060208201905081810360008301526130a181612cce565b9050919050565b60006020820190506130bd6000830184612cf1565b92915050565b60006130cd6130de565b90506130d982826133b6565b919050565b6000604051905090565b600067ffffffffffffffff8211156131035761310261351d565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561312f5761312e61351d565b5b61313882613565565b9050602081019050919050565b600067ffffffffffffffff8211156131605761315f61351d565b5b61316982613565565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131c482613338565b91506131cf83613338565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561320457613203613461565b5b828201905092915050565b600061321a82613338565b915061322583613338565b92508261323557613234613490565b5b828204905092915050565b600061324b82613338565b915061325683613338565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561328f5761328e613461565b5b828202905092915050565b60006132a582613338565b91506132b083613338565b9250828210156132c3576132c2613461565b5b828203905092915050565b60006132d982613318565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561336f578082015181840152602081019050613354565b8381111561337e576000848401525b50505050565b6000600282049050600182168061339c57607f821691505b602082108114156133b0576133af6134bf565b5b50919050565b6133bf82613565565b810181811067ffffffffffffffff821117156133de576133dd61351d565b5b80604052505050565b60006133f282613338565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561342557613424613461565b5b600182019050919050565b600061343b82613338565b915061344683613338565b92508261345657613455613490565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6d617820706572207472616e73616374696f6e20313000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f313020746f6b656e73207065722077616c6c6574000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b613af6816132ce565b8114613b0157600080fd5b50565b613b0d816132e0565b8114613b1857600080fd5b50565b613b24816132ec565b8114613b2f57600080fd5b50565b613b3b81613338565b8114613b4657600080fd5b5056fea2646970667358221220621abe53a8edd3a9a0b3a34458659f914c18a716366586959407b0dab646d16864736f6c63430008070033
Deployed ByteCode Sourcemap
35060:1952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22906:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23851:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25410:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24933:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35201:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36676:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26300:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36903:106;;;;;;;;;;;;;:::i;:::-;;26710:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35389:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35326:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23545:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35292:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23275:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14753:94;;;;;;;;;;;;;:::i;:::-;;36153:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35118:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14102:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24020:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35241:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36476:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25703:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26966:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36580:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24195:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35514:631;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26069:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15002:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22906:305;23008:4;23060:25;23045:40;;;:11;:40;;;;:105;;;;23117:33;23102:48;;;:11;:48;;;;23045:105;:158;;;;23167:36;23191:11;23167:23;:36::i;:::-;23045:158;23025:178;;22906:305;;;:::o;23851:100::-;23905:13;23938:5;23931:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23851:100;:::o;25410:221::-;25486:7;25514:16;25522:7;25514;:16::i;:::-;25506:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25599:15;:24;25615:7;25599:24;;;;;;;;;;;;;;;;;;;;;25592:31;;25410:221;;;:::o;24933:411::-;25014:13;25030:23;25045:7;25030:14;:23::i;:::-;25014:39;;25078:5;25072:11;;:2;:11;;;;25064:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25172:5;25156:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25181:37;25198:5;25205:12;:10;:12::i;:::-;25181:16;:37::i;:::-;25156:62;25134:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25315:21;25324:2;25328:7;25315:8;:21::i;:::-;25003:341;24933:411;;:::o;35201:27::-;;;;:::o;36676:101::-;14333:12;:10;:12::i;:::-;14322:23;;:7;:5;:7::i;:::-;:23;;;14314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36765:4:::1;36744:18;;:25;;;;;;;;;;;;;;;;;;36676:101:::0;:::o;26300:339::-;26495:41;26514:12;:10;:12::i;:::-;26528:7;26495:18;:41::i;:::-;26487:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26603:28;26613:4;26619:2;26623:7;26603:9;:28::i;:::-;26300:339;;;:::o;36903:106::-;14333:12;:10;:12::i;:::-;14322:23;;:7;:5;:7::i;:::-;:23;;;14314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36961:7:::1;:5;:7::i;:::-;36953:25;;:48;36979:21;36953:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;36903:106::o:0;26710:185::-;26848:39;26865:4;26871:2;26875:7;26848:39;;;;;;;;;;;;:16;:39::i;:::-;26710:185;;;:::o;35389:29::-;;;;:::o;35326:34::-;;;;:::o;23545:239::-;23617:7;23637:13;23653:7;:16;23661:7;23653:16;;;;;;;;;;;;;;;;;;;;;23637:32;;23705:1;23688:19;;:5;:19;;;;23680:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23771:5;23764:12;;;23545:239;;;:::o;35292:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23275:208::-;23347:7;23392:1;23375:19;;:5;:19;;;;23367:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23459:9;:16;23469:5;23459:16;;;;;;;;;;;;;;;;23452:23;;23275:208;;;:::o;14753:94::-;14333:12;:10;:12::i;:::-;14322:23;;:7;:5;:7::i;:::-;:23;;;14314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14818:21:::1;14836:1;14818:9;:21::i;:::-;14753:94::o:0;36153:308::-;14333:12;:10;:12::i;:::-;14322:23;;:7;:5;:7::i;:::-;:23;;;14314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35184:4:::1;36248:8;:15;36234:11;;:29;;;;:::i;:::-;:42;;36226:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;36318:6;36314:98;36334:8;:15;36330:1;:19;36314:98;;;36369:43;36379:8;36388:1;36379:11;;;;;;;;:::i;:::-;;;;;;;;36410:1;36406;36392:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;36369:9;:43::i;:::-;36351:3;;;;;:::i;:::-;;;;36314:98;;;;36438:8;:15;36423:11;;:30;;;;;;;:::i;:::-;;;;;;;;36153:308:::0;:::o;35118:33::-;;;;:::o;14102:87::-;14148:7;14175:6;;;;;;;;;;;14168:13;;14102:87;:::o;24020:104::-;24076:13;24109:7;24102:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24020:104;:::o;35241:38::-;;;;;;;;;;;;;:::o;36476:92::-;14333:12;:10;:12::i;:::-;14322:23;;:7;:5;:7::i;:::-;:23;;;14314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36556:4:::1;36546:7;:14;;;;;;;;;;;;:::i;:::-;;36476:92:::0;:::o;25703:295::-;25818:12;:10;:12::i;:::-;25806:24;;:8;:24;;;;25798:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25918:8;25873:18;:32;25892:12;:10;:12::i;:::-;25873:32;;;;;;;;;;;;;;;:42;25906:8;25873:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25971:8;25942:48;;25957:12;:10;:12::i;:::-;25942:48;;;25981:8;25942:48;;;;;;:::i;:::-;;;;;;;;25703:295;;:::o;26966:328::-;27141:41;27160:12;:10;:12::i;:::-;27174:7;27141:18;:41::i;:::-;27133:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27247:39;27261:4;27267:2;27271:7;27280:5;27247:13;:39::i;:::-;26966:328;;;;:::o;36580:87::-;14333:12;:10;:12::i;:::-;14322:23;;:7;:5;:7::i;:::-;:23;;;14314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36655:4:::1;36642:10;:17;;;;36580:87:::0;:::o;24195:334::-;24268:13;24302:16;24310:7;24302;:16::i;:::-;24294:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24383:21;24407:10;:8;:10::i;:::-;24383:34;;24459:1;24441:7;24435:21;:25;:86;;;;;;;;;;;;;;;;;24487:7;24496:18;:7;:16;:18::i;:::-;24470:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24435:86;24428:93;;;24195:334;;;:::o;35514:631::-;35582:1;35573:6;:10;35565:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;35640:17;;35630:6;:27;;35622:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;35184:4;35717:6;35703:11;;:20;;;;:::i;:::-;:33;;35695:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35808:6;35795:10;;:19;;;;:::i;:::-;35782:9;:32;;35774:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35882:4;35860:26;;:18;;;;;;;;;;;:26;;;35852:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;35959:12;;35949:6;35925:21;35935:10;35925:9;:21::i;:::-;:30;;;;:::i;:::-;:46;;35917:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;36021:6;36017:88;36037:6;36033:1;:10;36017:88;;;36063:42;36073:10;36103:1;36099;36085:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;36063:9;:42::i;:::-;36045:3;;;;;:::i;:::-;;;;36017:88;;;;36131:6;36116:11;;:21;;;;;;;:::i;:::-;;;;;;;;35514:631;:::o;26069:164::-;26166:4;26190:18;:25;26209:5;26190:25;;;;;;;;;;;;;;;:35;26216:8;26190:35;;;;;;;;;;;;;;;;;;;;;;;;;26183:42;;26069:164;;;;:::o;15002:192::-;14333:12;:10;:12::i;:::-;14322:23;;:7;:5;:7::i;:::-;:23;;;14314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15111:1:::1;15091:22;;:8;:22;;;;15083:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15167:19;15177:8;15167:9;:19::i;:::-;15002:192:::0;:::o;16107:157::-;16192:4;16231:25;16216:40;;;:11;:40;;;;16209:47;;16107:157;;;:::o;28804:127::-;28869:4;28921:1;28893:30;;:7;:16;28901:7;28893:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28886:37;;28804:127;;;:::o;1242:98::-;1295:7;1322:10;1315:17;;1242:98;:::o;32786:174::-;32888:2;32861:15;:24;32877:7;32861:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32944:7;32940:2;32906:46;;32915:23;32930:7;32915:14;:23::i;:::-;32906:46;;;;;;;;;;;;32786:174;;:::o;29098:348::-;29191:4;29216:16;29224:7;29216;:16::i;:::-;29208:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29292:13;29308:23;29323:7;29308:14;:23::i;:::-;29292:39;;29361:5;29350:16;;:7;:16;;;:51;;;;29394:7;29370:31;;:20;29382:7;29370:11;:20::i;:::-;:31;;;29350:51;:87;;;;29405:32;29422:5;29429:7;29405:16;:32::i;:::-;29350:87;29342:96;;;29098:348;;;;:::o;32090:578::-;32249:4;32222:31;;:23;32237:7;32222:14;:23::i;:::-;:31;;;32214:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32332:1;32318:16;;:2;:16;;;;32310:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32388:39;32409:4;32415:2;32419:7;32388:20;:39::i;:::-;32492:29;32509:1;32513:7;32492:8;:29::i;:::-;32553:1;32534:9;:15;32544:4;32534:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32582:1;32565:9;:13;32575:2;32565:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32613:2;32594:7;:16;32602:7;32594:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32652:7;32648:2;32633:27;;32642:4;32633:27;;;;;;;;;;;;32090:578;;;:::o;15202:173::-;15258:16;15277:6;;;;;;;;;;;15258:25;;15303:8;15294:6;;:17;;;;;;;;;;;;;;;;;;15358:8;15327:40;;15348:8;15327:40;;;;;;;;;;;;15247:128;15202:173;:::o;29788:110::-;29864:26;29874:2;29878:7;29864:26;;;;;;;;;;;;:9;:26::i;:::-;29788:110;;:::o;28176:315::-;28333:28;28343:4;28349:2;28353:7;28333:9;:28::i;:::-;28380:48;28403:4;28409:2;28413:7;28422:5;28380:22;:48::i;:::-;28372:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28176:315;;;;:::o;36789:108::-;36849:13;36882:7;36875:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36789:108;:::o;1707:723::-;1763:13;1993:1;1984:5;:10;1980:53;;;2011:10;;;;;;;;;;;;;;;;;;;;;1980:53;2043:12;2058:5;2043:20;;2074:14;2099:78;2114:1;2106:4;:9;2099:78;;2132:8;;;;;:::i;:::-;;;;2163:2;2155:10;;;;;:::i;:::-;;;2099:78;;;2187:19;2219:6;2209:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2187:39;;2237:154;2253:1;2244:5;:10;2237:154;;2281:1;2271:11;;;;;:::i;:::-;;;2348:2;2340:5;:10;;;;:::i;:::-;2327:2;:24;;;;:::i;:::-;2314:39;;2297:6;2304;2297:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2377:2;2368:11;;;;;:::i;:::-;;;2237:154;;;2415:6;2401:21;;;;;1707:723;;;;:::o;34896:126::-;;;;:::o;30125:321::-;30255:18;30261:2;30265:7;30255:5;:18::i;:::-;30306:54;30337:1;30341:2;30345:7;30354:5;30306:22;:54::i;:::-;30284:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30125:321;;;:::o;33525:799::-;33680:4;33701:15;:2;:13;;;:15::i;:::-;33697:620;;;33753:2;33737:36;;;33774:12;:10;:12::i;:::-;33788:4;33794:7;33803:5;33737:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33733:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33996:1;33979:6;:13;:18;33975:272;;;34022:60;;;;;;;;;;:::i;:::-;;;;;;;;33975:272;34197:6;34191:13;34182:6;34178:2;34174:15;34167:38;33733:529;33870:41;;;33860:51;;;:6;:51;;;;33853:58;;;;;33697:620;34301:4;34294:11;;33525:799;;;;;;;:::o;30782:382::-;30876:1;30862:16;;:2;:16;;;;30854:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30935:16;30943:7;30935;:16::i;:::-;30934:17;30926:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30997:45;31026:1;31030:2;31034:7;30997:20;:45::i;:::-;31072:1;31055:9;:13;31065:2;31055:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31103:2;31084:7;:16;31092:7;31084:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31148:7;31144:2;31123:33;;31140:1;31123:33;;;;;;;;;;;;30782:382;;:::o;4172:387::-;4232:4;4440:12;4507:7;4495:20;4487:28;;4550:1;4543:4;:8;4536:15;;;4172:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:118::-;9257:24;9275:5;9257:24;:::i;:::-;9252:3;9245:37;9170:118;;:::o;9294:109::-;9375:21;9390:5;9375:21;:::i;:::-;9370:3;9363:34;9294:109;;:::o;9409:360::-;9495:3;9523:38;9555:5;9523:38;:::i;:::-;9577:70;9640:6;9635:3;9577:70;:::i;:::-;9570:77;;9656:52;9701:6;9696:3;9689:4;9682:5;9678:16;9656:52;:::i;:::-;9733:29;9755:6;9733:29;:::i;:::-;9728:3;9724:39;9717:46;;9499:270;9409:360;;;;:::o;9775:364::-;9863:3;9891:39;9924:5;9891:39;:::i;:::-;9946:71;10010:6;10005:3;9946:71;:::i;:::-;9939:78;;10026:52;10071:6;10066:3;10059:4;10052:5;10048:16;10026:52;:::i;:::-;10103:29;10125:6;10103:29;:::i;:::-;10098:3;10094:39;10087:46;;9867:272;9775:364;;;;:::o;10145:377::-;10251:3;10279:39;10312:5;10279:39;:::i;:::-;10334:89;10416:6;10411:3;10334:89;:::i;:::-;10327:96;;10432:52;10477:6;10472:3;10465:4;10458:5;10454:16;10432:52;:::i;:::-;10509:6;10504:3;10500:16;10493:23;;10255:267;10145:377;;;;:::o;10528:366::-;10670:3;10691:67;10755:2;10750:3;10691:67;:::i;:::-;10684:74;;10767:93;10856:3;10767:93;:::i;:::-;10885:2;10880:3;10876:12;10869:19;;10528:366;;;:::o;10900:::-;11042:3;11063:67;11127:2;11122:3;11063:67;:::i;:::-;11056:74;;11139:93;11228:3;11139:93;:::i;:::-;11257:2;11252:3;11248:12;11241:19;;10900:366;;;:::o;11272:::-;11414:3;11435:67;11499:2;11494:3;11435:67;:::i;:::-;11428:74;;11511:93;11600:3;11511:93;:::i;:::-;11629:2;11624:3;11620:12;11613:19;;11272:366;;;:::o;11644:::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:::-;12158:3;12179:67;12243:2;12238:3;12179:67;:::i;:::-;12172:74;;12255:93;12344:3;12255:93;:::i;:::-;12373:2;12368:3;12364:12;12357:19;;12016:366;;;:::o;12388:::-;12530:3;12551:67;12615:2;12610:3;12551:67;:::i;:::-;12544:74;;12627:93;12716:3;12627:93;:::i;:::-;12745:2;12740:3;12736:12;12729:19;;12388:366;;;:::o;12760:::-;12902:3;12923:67;12987:2;12982:3;12923:67;:::i;:::-;12916:74;;12999:93;13088:3;12999:93;:::i;:::-;13117:2;13112:3;13108:12;13101:19;;12760:366;;;:::o;13132:::-;13274:3;13295:67;13359:2;13354:3;13295:67;:::i;:::-;13288:74;;13371:93;13460:3;13371:93;:::i;:::-;13489:2;13484:3;13480:12;13473:19;;13132:366;;;:::o;13504:::-;13646:3;13667:67;13731:2;13726:3;13667:67;:::i;:::-;13660:74;;13743:93;13832:3;13743:93;:::i;:::-;13861:2;13856:3;13852:12;13845:19;;13504:366;;;:::o;13876:::-;14018:3;14039:67;14103:2;14098:3;14039:67;:::i;:::-;14032:74;;14115:93;14204:3;14115:93;:::i;:::-;14233:2;14228:3;14224:12;14217:19;;13876:366;;;:::o;14248:::-;14390:3;14411:67;14475:2;14470:3;14411:67;:::i;:::-;14404:74;;14487:93;14576:3;14487:93;:::i;:::-;14605:2;14600:3;14596:12;14589:19;;14248:366;;;:::o;14620:::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:::-;15134:3;15155:67;15219:2;15214:3;15155:67;:::i;:::-;15148:74;;15231:93;15320:3;15231:93;:::i;:::-;15349:2;15344:3;15340:12;15333:19;;14992:366;;;:::o;15364:::-;15506:3;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15603:93;15692:3;15603:93;:::i;:::-;15721:2;15716:3;15712:12;15705:19;;15364:366;;;:::o;15736:::-;15878:3;15899:67;15963:2;15958:3;15899:67;:::i;:::-;15892:74;;15975:93;16064:3;15975:93;:::i;:::-;16093:2;16088:3;16084:12;16077:19;;15736:366;;;:::o;16108:::-;16250:3;16271:67;16335:2;16330:3;16271:67;:::i;:::-;16264:74;;16347:93;16436:3;16347:93;:::i;:::-;16465:2;16460:3;16456:12;16449:19;;16108:366;;;:::o;16480:::-;16622:3;16643:67;16707:2;16702:3;16643:67;:::i;:::-;16636:74;;16719:93;16808:3;16719:93;:::i;:::-;16837:2;16832:3;16828:12;16821:19;;16480:366;;;:::o;16852:::-;16994:3;17015:67;17079:2;17074:3;17015:67;:::i;:::-;17008:74;;17091:93;17180:3;17091:93;:::i;:::-;17209:2;17204:3;17200:12;17193:19;;16852:366;;;:::o;17224:::-;17366:3;17387:67;17451:2;17446:3;17387:67;:::i;:::-;17380:74;;17463:93;17552:3;17463:93;:::i;:::-;17581:2;17576:3;17572:12;17565:19;;17224:366;;;:::o;17596:::-;17738:3;17759:67;17823:2;17818:3;17759:67;:::i;:::-;17752:74;;17835:93;17924:3;17835:93;:::i;:::-;17953:2;17948:3;17944:12;17937:19;;17596:366;;;:::o;17968:::-;18110:3;18131:67;18195:2;18190:3;18131:67;:::i;:::-;18124:74;;18207:93;18296:3;18207:93;:::i;:::-;18325:2;18320:3;18316:12;18309:19;;17968:366;;;:::o;18340:::-;18482:3;18503:67;18567:2;18562:3;18503:67;:::i;:::-;18496:74;;18579:93;18668:3;18579:93;:::i;:::-;18697:2;18692:3;18688:12;18681:19;;18340:366;;;:::o;18712:::-;18854:3;18875:67;18939:2;18934:3;18875:67;:::i;:::-;18868:74;;18951:93;19040:3;18951:93;:::i;:::-;19069:2;19064:3;19060:12;19053:19;;18712:366;;;:::o;19084:118::-;19171:24;19189:5;19171:24;:::i;:::-;19166:3;19159:37;19084:118;;:::o;19208:435::-;19388:3;19410:95;19501:3;19492:6;19410:95;:::i;:::-;19403:102;;19522:95;19613:3;19604:6;19522:95;:::i;:::-;19515:102;;19634:3;19627:10;;19208:435;;;;;:::o;19649:222::-;19742:4;19780:2;19769:9;19765:18;19757:26;;19793:71;19861:1;19850:9;19846:17;19837:6;19793:71;:::i;:::-;19649:222;;;;:::o;19877:640::-;20072:4;20110:3;20099:9;20095:19;20087:27;;20124:71;20192:1;20181:9;20177:17;20168:6;20124:71;:::i;:::-;20205:72;20273:2;20262:9;20258:18;20249:6;20205:72;:::i;:::-;20287;20355:2;20344:9;20340:18;20331:6;20287:72;:::i;:::-;20406:9;20400:4;20396:20;20391:2;20380:9;20376:18;20369:48;20434:76;20505:4;20496:6;20434:76;:::i;:::-;20426:84;;19877:640;;;;;;;:::o;20523:210::-;20610:4;20648:2;20637:9;20633:18;20625:26;;20661:65;20723:1;20712:9;20708:17;20699:6;20661:65;:::i;:::-;20523:210;;;;:::o;20739:313::-;20852:4;20890:2;20879:9;20875:18;20867:26;;20939:9;20933:4;20929:20;20925:1;20914:9;20910:17;20903:47;20967:78;21040:4;21031:6;20967:78;:::i;:::-;20959:86;;20739:313;;;;:::o;21058:419::-;21224:4;21262:2;21251:9;21247:18;21239:26;;21311:9;21305:4;21301:20;21297:1;21286:9;21282:17;21275:47;21339:131;21465:4;21339:131;:::i;:::-;21331:139;;21058:419;;;:::o;21483:::-;21649:4;21687:2;21676:9;21672:18;21664:26;;21736:9;21730:4;21726:20;21722:1;21711:9;21707:17;21700:47;21764:131;21890:4;21764:131;:::i;:::-;21756:139;;21483:419;;;:::o;21908:::-;22074:4;22112:2;22101:9;22097:18;22089:26;;22161:9;22155:4;22151:20;22147:1;22136:9;22132:17;22125:47;22189:131;22315:4;22189:131;:::i;:::-;22181:139;;21908:419;;;:::o;22333:::-;22499:4;22537:2;22526:9;22522:18;22514:26;;22586:9;22580:4;22576:20;22572:1;22561:9;22557:17;22550:47;22614:131;22740:4;22614:131;:::i;:::-;22606:139;;22333:419;;;:::o;22758:::-;22924:4;22962:2;22951:9;22947:18;22939:26;;23011:9;23005:4;23001:20;22997:1;22986:9;22982:17;22975:47;23039:131;23165:4;23039:131;:::i;:::-;23031:139;;22758:419;;;:::o;23183:::-;23349:4;23387:2;23376:9;23372:18;23364:26;;23436:9;23430:4;23426:20;23422:1;23411:9;23407:17;23400:47;23464:131;23590:4;23464:131;:::i;:::-;23456:139;;23183:419;;;:::o;23608:::-;23774:4;23812:2;23801:9;23797:18;23789:26;;23861:9;23855:4;23851:20;23847:1;23836:9;23832:17;23825:47;23889:131;24015:4;23889:131;:::i;:::-;23881:139;;23608:419;;;:::o;24033:::-;24199:4;24237:2;24226:9;24222:18;24214:26;;24286:9;24280:4;24276:20;24272:1;24261:9;24257:17;24250:47;24314:131;24440:4;24314:131;:::i;:::-;24306:139;;24033:419;;;:::o;24458:::-;24624:4;24662:2;24651:9;24647:18;24639:26;;24711:9;24705:4;24701:20;24697:1;24686:9;24682:17;24675:47;24739:131;24865:4;24739:131;:::i;:::-;24731:139;;24458:419;;;:::o;24883:::-;25049:4;25087:2;25076:9;25072:18;25064:26;;25136:9;25130:4;25126:20;25122:1;25111:9;25107:17;25100:47;25164:131;25290:4;25164:131;:::i;:::-;25156:139;;24883:419;;;:::o;25308:::-;25474:4;25512:2;25501:9;25497:18;25489:26;;25561:9;25555:4;25551:20;25547:1;25536:9;25532:17;25525:47;25589:131;25715:4;25589:131;:::i;:::-;25581:139;;25308:419;;;:::o;25733:::-;25899:4;25937:2;25926:9;25922:18;25914:26;;25986:9;25980:4;25976:20;25972:1;25961:9;25957:17;25950:47;26014:131;26140:4;26014:131;:::i;:::-;26006:139;;25733:419;;;:::o;26158:::-;26324:4;26362:2;26351:9;26347:18;26339:26;;26411:9;26405:4;26401:20;26397:1;26386:9;26382:17;26375:47;26439:131;26565:4;26439:131;:::i;:::-;26431:139;;26158:419;;;:::o;26583:::-;26749:4;26787:2;26776:9;26772:18;26764:26;;26836:9;26830:4;26826:20;26822:1;26811:9;26807:17;26800:47;26864:131;26990:4;26864:131;:::i;:::-;26856:139;;26583:419;;;:::o;27008:::-;27174:4;27212:2;27201:9;27197:18;27189:26;;27261:9;27255:4;27251:20;27247:1;27236:9;27232:17;27225:47;27289:131;27415:4;27289:131;:::i;:::-;27281:139;;27008:419;;;:::o;27433:::-;27599:4;27637:2;27626:9;27622:18;27614:26;;27686:9;27680:4;27676:20;27672:1;27661:9;27657:17;27650:47;27714:131;27840:4;27714:131;:::i;:::-;27706:139;;27433:419;;;:::o;27858:::-;28024:4;28062:2;28051:9;28047:18;28039:26;;28111:9;28105:4;28101:20;28097:1;28086:9;28082:17;28075:47;28139:131;28265:4;28139:131;:::i;:::-;28131:139;;27858:419;;;:::o;28283:::-;28449:4;28487:2;28476:9;28472:18;28464:26;;28536:9;28530:4;28526:20;28522:1;28511:9;28507:17;28500:47;28564:131;28690:4;28564:131;:::i;:::-;28556:139;;28283:419;;;:::o;28708:::-;28874:4;28912:2;28901:9;28897:18;28889:26;;28961:9;28955:4;28951:20;28947:1;28936:9;28932:17;28925:47;28989:131;29115:4;28989:131;:::i;:::-;28981:139;;28708:419;;;:::o;29133:::-;29299:4;29337:2;29326:9;29322:18;29314:26;;29386:9;29380:4;29376:20;29372:1;29361:9;29357:17;29350:47;29414:131;29540:4;29414:131;:::i;:::-;29406:139;;29133:419;;;:::o;29558:::-;29724:4;29762:2;29751:9;29747:18;29739:26;;29811:9;29805:4;29801:20;29797:1;29786:9;29782:17;29775:47;29839:131;29965:4;29839:131;:::i;:::-;29831:139;;29558:419;;;:::o;29983:::-;30149:4;30187:2;30176:9;30172:18;30164:26;;30236:9;30230:4;30226:20;30222:1;30211:9;30207:17;30200:47;30264:131;30390:4;30264:131;:::i;:::-;30256:139;;29983:419;;;:::o;30408:::-;30574:4;30612:2;30601:9;30597:18;30589:26;;30661:9;30655:4;30651:20;30647:1;30636:9;30632:17;30625:47;30689:131;30815:4;30689:131;:::i;:::-;30681:139;;30408:419;;;:::o;30833:222::-;30926:4;30964:2;30953:9;30949:18;30941:26;;30977:71;31045:1;31034:9;31030:17;31021:6;30977:71;:::i;:::-;30833:222;;;;:::o;31061:129::-;31095:6;31122:20;;:::i;:::-;31112:30;;31151:33;31179:4;31171:6;31151:33;:::i;:::-;31061:129;;;:::o;31196:75::-;31229:6;31262:2;31256:9;31246:19;;31196:75;:::o;31277:311::-;31354:4;31444:18;31436:6;31433:30;31430:56;;;31466:18;;:::i;:::-;31430:56;31516:4;31508:6;31504:17;31496:25;;31576:4;31570;31566:15;31558:23;;31277:311;;;:::o;31594:307::-;31655:4;31745:18;31737:6;31734:30;31731:56;;;31767:18;;:::i;:::-;31731:56;31805:29;31827:6;31805:29;:::i;:::-;31797:37;;31889:4;31883;31879:15;31871:23;;31594:307;;;:::o;31907:308::-;31969:4;32059:18;32051:6;32048:30;32045:56;;;32081:18;;:::i;:::-;32045:56;32119:29;32141:6;32119:29;:::i;:::-;32111:37;;32203:4;32197;32193:15;32185:23;;31907:308;;;:::o;32221:98::-;32272:6;32306:5;32300:12;32290:22;;32221:98;;;:::o;32325:99::-;32377:6;32411:5;32405:12;32395:22;;32325:99;;;:::o;32430:168::-;32513:11;32547:6;32542:3;32535:19;32587:4;32582:3;32578:14;32563:29;;32430:168;;;;:::o;32604:169::-;32688:11;32722:6;32717:3;32710:19;32762:4;32757:3;32753:14;32738:29;;32604:169;;;;:::o;32779:148::-;32881:11;32918:3;32903:18;;32779:148;;;;:::o;32933:305::-;32973:3;32992:20;33010:1;32992:20;:::i;:::-;32987:25;;33026:20;33044:1;33026:20;:::i;:::-;33021:25;;33180:1;33112:66;33108:74;33105:1;33102:81;33099:107;;;33186:18;;:::i;:::-;33099:107;33230:1;33227;33223:9;33216:16;;32933:305;;;;:::o;33244:185::-;33284:1;33301:20;33319:1;33301:20;:::i;:::-;33296:25;;33335:20;33353:1;33335:20;:::i;:::-;33330:25;;33374:1;33364:35;;33379:18;;:::i;:::-;33364:35;33421:1;33418;33414:9;33409:14;;33244:185;;;;:::o;33435:348::-;33475:7;33498:20;33516:1;33498:20;:::i;:::-;33493:25;;33532:20;33550:1;33532:20;:::i;:::-;33527:25;;33720:1;33652:66;33648:74;33645:1;33642:81;33637:1;33630:9;33623:17;33619:105;33616:131;;;33727:18;;:::i;:::-;33616:131;33775:1;33772;33768:9;33757:20;;33435:348;;;;:::o;33789:191::-;33829:4;33849:20;33867:1;33849:20;:::i;:::-;33844:25;;33883:20;33901:1;33883:20;:::i;:::-;33878:25;;33922:1;33919;33916:8;33913:34;;;33927:18;;:::i;:::-;33913:34;33972:1;33969;33965:9;33957:17;;33789:191;;;;:::o;33986:96::-;34023:7;34052:24;34070:5;34052:24;:::i;:::-;34041:35;;33986:96;;;:::o;34088:90::-;34122:7;34165:5;34158:13;34151:21;34140:32;;34088:90;;;:::o;34184:149::-;34220:7;34260:66;34253:5;34249:78;34238:89;;34184:149;;;:::o;34339:126::-;34376:7;34416:42;34409:5;34405:54;34394:65;;34339:126;;;:::o;34471:77::-;34508:7;34537:5;34526:16;;34471:77;;;:::o;34554:154::-;34638:6;34633:3;34628;34615:30;34700:1;34691:6;34686:3;34682:16;34675:27;34554:154;;;:::o;34714:307::-;34782:1;34792:113;34806:6;34803:1;34800:13;34792:113;;;34891:1;34886:3;34882:11;34876:18;34872:1;34867:3;34863:11;34856:39;34828:2;34825:1;34821:10;34816:15;;34792:113;;;34923:6;34920:1;34917:13;34914:101;;;35003:1;34994:6;34989:3;34985:16;34978:27;34914:101;34763:258;34714:307;;;:::o;35027:320::-;35071:6;35108:1;35102:4;35098:12;35088:22;;35155:1;35149:4;35145:12;35176:18;35166:81;;35232:4;35224:6;35220:17;35210:27;;35166:81;35294:2;35286:6;35283:14;35263:18;35260:38;35257:84;;;35313:18;;:::i;:::-;35257:84;35078:269;35027:320;;;:::o;35353:281::-;35436:27;35458:4;35436:27;:::i;:::-;35428:6;35424:40;35566:6;35554:10;35551:22;35530:18;35518:10;35515:34;35512:62;35509:88;;;35577:18;;:::i;:::-;35509:88;35617:10;35613:2;35606:22;35396:238;35353:281;;:::o;35640:233::-;35679:3;35702:24;35720:5;35702:24;:::i;:::-;35693:33;;35748:66;35741:5;35738:77;35735:103;;;35818:18;;:::i;:::-;35735:103;35865:1;35858:5;35854:13;35847:20;;35640:233;;;:::o;35879:176::-;35911:1;35928:20;35946:1;35928:20;:::i;:::-;35923:25;;35962:20;35980:1;35962:20;:::i;:::-;35957:25;;36001:1;35991:35;;36006:18;;:::i;:::-;35991:35;36047:1;36044;36040:9;36035:14;;35879:176;;;;:::o;36061:180::-;36109:77;36106:1;36099:88;36206:4;36203:1;36196:15;36230:4;36227:1;36220:15;36247:180;36295:77;36292:1;36285:88;36392:4;36389:1;36382:15;36416:4;36413:1;36406:15;36433:180;36481:77;36478:1;36471:88;36578:4;36575:1;36568:15;36602:4;36599:1;36592:15;36619:180;36667:77;36664:1;36657:88;36764:4;36761:1;36754:15;36788:4;36785:1;36778:15;36805:180;36853:77;36850:1;36843:88;36950:4;36947:1;36940:15;36974:4;36971:1;36964:15;36991:117;37100:1;37097;37090:12;37114:117;37223:1;37220;37213:12;37237:117;37346:1;37343;37336:12;37360:117;37469:1;37466;37459:12;37483:117;37592:1;37589;37582:12;37606:102;37647:6;37698:2;37694:7;37689:2;37682:5;37678:14;37674:28;37664:38;;37606:102;;;:::o;37714:237::-;37854:34;37850:1;37842:6;37838:14;37831:58;37923:20;37918:2;37910:6;37906:15;37899:45;37714:237;:::o;37957:225::-;38097:34;38093:1;38085:6;38081:14;38074:58;38166:8;38161:2;38153:6;38149:15;38142:33;37957:225;:::o;38188:178::-;38328:30;38324:1;38316:6;38312:14;38305:54;38188:178;:::o;38372:223::-;38512:34;38508:1;38500:6;38496:14;38489:58;38581:6;38576:2;38568:6;38564:15;38557:31;38372:223;:::o;38601:175::-;38741:27;38737:1;38729:6;38725:14;38718:51;38601:175;:::o;38782:231::-;38922:34;38918:1;38910:6;38906:14;38899:58;38991:14;38986:2;38978:6;38974:15;38967:39;38782:231;:::o;39019:172::-;39159:24;39155:1;39147:6;39143:14;39136:48;39019:172;:::o;39197:243::-;39337:34;39333:1;39325:6;39321:14;39314:58;39406:26;39401:2;39393:6;39389:15;39382:51;39197:243;:::o;39446:229::-;39586:34;39582:1;39574:6;39570:14;39563:58;39655:12;39650:2;39642:6;39638:15;39631:37;39446:229;:::o;39681:228::-;39821:34;39817:1;39809:6;39805:14;39798:58;39890:11;39885:2;39877:6;39873:15;39866:36;39681:228;:::o;39915:172::-;40055:24;40051:1;40043:6;40039:14;40032:48;39915:172;:::o;40093:182::-;40233:34;40229:1;40221:6;40217:14;40210:58;40093:182;:::o;40281:231::-;40421:34;40417:1;40409:6;40405:14;40398:58;40490:14;40485:2;40477:6;40473:15;40466:39;40281:231;:::o;40518:182::-;40658:34;40654:1;40646:6;40642:14;40635:58;40518:182;:::o;40706:228::-;40846:34;40842:1;40834:6;40830:14;40823:58;40915:11;40910:2;40902:6;40898:15;40891:36;40706:228;:::o;40940:234::-;41080:34;41076:1;41068:6;41064:14;41057:58;41149:17;41144:2;41136:6;41132:15;41125:42;40940:234;:::o;41180:172::-;41320:24;41316:1;41308:6;41304:14;41297:48;41180:172;:::o;41358:220::-;41498:34;41494:1;41486:6;41482:14;41475:58;41567:3;41562:2;41554:6;41550:15;41543:28;41358:220;:::o;41584:170::-;41724:22;41720:1;41712:6;41708:14;41701:46;41584:170;:::o;41760:236::-;41900:34;41896:1;41888:6;41884:14;41877:58;41969:19;41964:2;41956:6;41952:15;41945:44;41760:236;:::o;42002:173::-;42142:25;42138:1;42130:6;42126:14;42119:49;42002:173;:::o;42181:172::-;42321:24;42317:1;42309:6;42305:14;42298:48;42181:172;:::o;42359:165::-;42499:17;42495:1;42487:6;42483:14;42476:41;42359:165;:::o;42530:122::-;42603:24;42621:5;42603:24;:::i;:::-;42596:5;42593:35;42583:63;;42642:1;42639;42632:12;42583:63;42530:122;:::o;42658:116::-;42728:21;42743:5;42728:21;:::i;:::-;42721:5;42718:32;42708:60;;42764:1;42761;42754:12;42708:60;42658:116;:::o;42780:120::-;42852:23;42869:5;42852:23;:::i;:::-;42845:5;42842:34;42832:62;;42890:1;42887;42880:12;42832:62;42780:120;:::o;42906:122::-;42979:24;42997:5;42979:24;:::i;:::-;42972:5;42969:35;42959:63;;43018:1;43015;43008:12;42959:63;42906:122;:::o
Swarm Source
ipfs://621abe53a8edd3a9a0b3a34458659f914c18a716366586959407b0dab646d168
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.