Contract Overview
[ Download CSV Export ]
Contract Name:
ChainBears
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-10-19 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ /*function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } */ function isApprovedForAll(address _owner, address _operator) public override view returns (bool isOperator) { // if OpenSea's ERC721 Proxy Address is detected, auto-return true if (_operator == address(0x58807baD0B376efc12F5AD86aAc70E78ed67deaE)) { return true; } // otherwise, use the default ERC721.isApprovedForAll() return ERC721.isApprovedForAll(_owner, _operator); } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/ChainBears.sol // Created by CB // CB pragma solidity ^0.8.0; contract ChainBears is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public price = 100 ether; uint256 public maxNFT = 10000; uint256 public maxMintToken = 10000; bool public paused = false; mapping(address => bool) public whitelisted; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); mint(msg.sender, 1); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintToken); require(supply + _mintAmount <= maxNFT); if (msg.sender != owner()) { if(whitelisted[msg.sender] != true) { require(msg.value >= price * _mintAmount); } } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setCost(uint256 _newPrice) public onlyOwner() { price = _newPrice; } function setmaxMintAmount(uint256 _newmaxMintToken) public onlyOwner() { maxMintToken = _newmaxMintToken; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function whitelistUser(address _user) public onlyOwner { whitelisted[_user] = true; } function removeWhitelistUser(address _user) public onlyOwner { whitelisted[_user] = false; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function mintOwner(uint256 amount) external onlyOwner { mint(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","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":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintToken","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000e43565b5068056bc75e2d63100000600d55612710600e55612710600f556000601060006101000a81548160ff0219169083151502179055503480156200009357600080fd5b5060405162005c1838038062005c188339818101604052810190620000b9919062000fba565b82828160009080519060200190620000d392919062000e43565b508060019080519060200190620000ec92919062000e43565b5050506200010f620001036200013c60201b60201c565b6200014460201b60201c565b62000120816200020a60201b60201c565b62000133336001620002b560201b60201c565b505050620017b9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021a6200013c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002406200042460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000299576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002909062001275565b60405180910390fd5b80600b9080519060200190620002b192919062000e43565b5050565b6000620002c76200044e60201b60201c565b9050601060009054906101000a900460ff1615620002e457600080fd5b60008211620002f257600080fd5b600f548211156200030257600080fd5b600e54828262000313919062001323565b11156200031f57600080fd5b6200032f6200042460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620003da5760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620003d95781600d54620003cb919062001380565b341015620003d857600080fd5b5b5b6000600190505b8281116200041e5762000408848284620003fc919062001323565b6200045b60201b60201c565b8080620004159062001528565b915050620003e1565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b6200047d8282604051806020016040528060008152506200048160201b60201c565b5050565b620004938383620004ef60201b60201c565b620004a86000848484620006d560201b60201c565b620004ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e190620011ed565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005599062001253565b60405180910390fd5b62000573816200088f60201b60201c565b15620005b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ad906200120f565b60405180910390fd5b620005ca60008383620008fb60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200061c919062001323565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007038473ffffffffffffffffffffffffffffffffffffffff1662000a4260201b62001ca81760201c565b1562000882578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007356200013c60201b60201c565b8786866040518563ffffffff1660e01b815260040162000759949392919062001199565b602060405180830381600087803b1580156200077457600080fd5b505af1925050508015620007a857506040513d601f19601f82011682018060405250810190620007a5919062000f88565b60015b62000831573d8060008114620007db576040519150601f19603f3d011682016040523d82523d6000602084013e620007e0565b606091505b5060008151141562000829576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082090620011ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000887565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200091383838362000a5560201b62001cbb1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000960576200095a8162000a5a60201b60201c565b620009a8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009a757620009a6838262000aa360201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009f557620009ef8162000c2060201b60201c565b62000a3d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a3c5762000a3b828262000cfc60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000abd8462000d8860201b620014eb1760201c565b62000ac99190620013e1565b905060006007600084815260200190815260200160002054905081811462000baf576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c369190620013e1565b905060006009600084815260200190815260200160002054905060006008838154811062000c695762000c6862001603565b5b90600052602060002001549050806008838154811062000c8e5762000c8d62001603565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000ce05762000cdf620015d4565b5b6001900381819060005260206000200160009055905550505050565b600062000d148362000d8860201b620014eb1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000dfc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000df39062001231565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e5190620014bc565b90600052602060002090601f01602090048101928262000e75576000855562000ec1565b82601f1062000e9057805160ff191683800117855562000ec1565b8280016001018555821562000ec1579182015b8281111562000ec057825182559160200191906001019062000ea3565b5b50905062000ed0919062000ed4565b5090565b5b8082111562000eef57600081600090555060010162000ed5565b5090565b600062000f0a62000f0484620012c0565b62001297565b90508281526020810184848401111562000f295762000f2862001666565b5b62000f3684828562001486565b509392505050565b60008151905062000f4f816200179f565b92915050565b600082601f83011262000f6d5762000f6c62001661565b5b815162000f7f84826020860162000ef3565b91505092915050565b60006020828403121562000fa15762000fa062001670565b5b600062000fb18482850162000f3e565b91505092915050565b60008060006060848603121562000fd65762000fd562001670565b5b600084015167ffffffffffffffff81111562000ff75762000ff66200166b565b5b620010058682870162000f55565b935050602084015167ffffffffffffffff8111156200102957620010286200166b565b5b620010378682870162000f55565b925050604084015167ffffffffffffffff8111156200105b576200105a6200166b565b5b620010698682870162000f55565b9150509250925092565b6200107e816200141c565b82525050565b60006200109182620012f6565b6200109d818562001301565b9350620010af81856020860162001486565b620010ba8162001675565b840191505092915050565b6000620010d460328362001312565b9150620010e18262001686565b604082019050919050565b6000620010fb601c8362001312565b91506200110882620016d5565b602082019050919050565b600062001122602a8362001312565b91506200112f82620016fe565b604082019050919050565b60006200114960208362001312565b915062001156826200174d565b602082019050919050565b60006200117060208362001312565b91506200117d8262001776565b602082019050919050565b62001193816200147c565b82525050565b6000608082019050620011b0600083018762001073565b620011bf602083018662001073565b620011ce604083018562001188565b8181036060830152620011e2818462001084565b905095945050505050565b600060208201905081810360008301526200120881620010c5565b9050919050565b600060208201905081810360008301526200122a81620010ec565b9050919050565b600060208201905081810360008301526200124c8162001113565b9050919050565b600060208201905081810360008301526200126e816200113a565b9050919050565b60006020820190508181036000830152620012908162001161565b9050919050565b6000620012a3620012b6565b9050620012b18282620014f2565b919050565b6000604051905090565b600067ffffffffffffffff821115620012de57620012dd62001632565b5b620012e98262001675565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062001330826200147c565b91506200133d836200147c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001375576200137462001576565b5b828201905092915050565b60006200138d826200147c565b91506200139a836200147c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620013d657620013d562001576565b5b828202905092915050565b6000620013ee826200147c565b9150620013fb836200147c565b92508282101562001411576200141062001576565b5b828203905092915050565b600062001429826200145c565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620014a657808201518184015260208101905062001489565b83811115620014b6576000848401525b50505050565b60006002820490506001821680620014d557607f821691505b60208210811415620014ec57620014eb620015a5565b5b50919050565b620014fd8262001675565b810181811067ffffffffffffffff821117156200151f576200151e62001632565b5b80604052505050565b600062001535826200147c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200156b576200156a62001576565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620017aa8162001430565b8114620017b657600080fd5b50565b61444f80620017c96000396000f3fe60806040526004361061021a5760003560e01c806355f804b311610123578063a035b1fe116100ab578063d936547e1161006f578063d936547e146107b3578063da3ef23f146107f0578063e456b01c14610819578063e985e9c514610844578063f2fde38b146108815761021a565b8063a035b1fe146106ce578063a22cb465146106f9578063b88d4fde14610722578063c66828621461074b578063c87b56dd146107765761021a565b806370a08231116100f257806370a08231146105fb578063715018a6146106385780637f00c7a61461064f5780638da5cb5b1461067857806395d89b41146106a35761021a565b806355f804b31461053f5780635c975abb146105685780636352211e146105935780636c0360eb146105d05761021a565b806330cc7ae0116101a657806342842e0e1161017557806342842e0e1461044a578063438b63001461047357806344a0d68a146104b05780634a4c560d146104d95780634f6ccce7146105025761021a565b806330cc7ae0146103d257806333f88d22146103fb5780633ccfd60b1461042457806340c10f191461042e5761021a565b8063081812fc116101ed578063081812fc146102db578063095ea7b31461031857806318160ddd1461034157806323b872dd1461036c5780632f745c59146103955761021a565b806301ffc9a71461021f57806302329a291461025c578063059a396e1461028557806306fdde03146102b0575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061315c565b6108aa565b6040516102539190613730565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e919061312f565b610924565b005b34801561029157600080fd5b5061029a6109bd565b6040516102a791906139ad565b60405180910390f35b3480156102bc57600080fd5b506102c56109c3565b6040516102d2919061374b565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd91906131ff565b610a55565b60405161030f91906136a7565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906130ef565b610ada565b005b34801561034d57600080fd5b50610356610bf2565b60405161036391906139ad565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190612fd9565b610bff565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906130ef565b610c5f565b6040516103c991906139ad565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612f6c565b610d04565b005b34801561040757600080fd5b50610422600480360381019061041d91906131ff565b610ddb565b005b61042c610e64565b005b610448600480360381019061044391906130ef565b610f20565b005b34801561045657600080fd5b50610471600480360381019061046c9190612fd9565b611066565b005b34801561047f57600080fd5b5061049a60048036038101906104959190612f6c565b611086565b6040516104a7919061370e565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d291906131ff565b611134565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190612f6c565b6111ba565b005b34801561050e57600080fd5b50610529600480360381019061052491906131ff565b611291565b60405161053691906139ad565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906131b6565b611302565b005b34801561057457600080fd5b5061057d611398565b60405161058a9190613730565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b591906131ff565b6113ab565b6040516105c791906136a7565b60405180910390f35b3480156105dc57600080fd5b506105e561145d565b6040516105f2919061374b565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612f6c565b6114eb565b60405161062f91906139ad565b60405180910390f35b34801561064457600080fd5b5061064d6115a3565b005b34801561065b57600080fd5b50610676600480360381019061067191906131ff565b61162b565b005b34801561068457600080fd5b5061068d6116b1565b60405161069a91906136a7565b60405180910390f35b3480156106af57600080fd5b506106b86116db565b6040516106c5919061374b565b60405180910390f35b3480156106da57600080fd5b506106e361176d565b6040516106f091906139ad565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b91906130af565b611773565b005b34801561072e57600080fd5b506107496004803603810190610744919061302c565b6118f4565b005b34801561075757600080fd5b50610760611956565b60405161076d919061374b565b60405180910390f35b34801561078257600080fd5b5061079d600480360381019061079891906131ff565b6119e4565b6040516107aa919061374b565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190612f6c565b611a8e565b6040516107e79190613730565b60405180910390f35b3480156107fc57600080fd5b50610817600480360381019061081291906131b6565b611aae565b005b34801561082557600080fd5b5061082e611b44565b60405161083b91906139ad565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190612f99565b611b4a565b6040516108789190613730565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190612f6c565b611bb0565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091d575061091c82611cc0565b5b9050919050565b61092c611da2565b73ffffffffffffffffffffffffffffffffffffffff1661094a6116b1565b73ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610997906138ed565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b600f5481565b6060600080546109d290613cab565b80601f01602080910402602001604051908101604052809291908181526020018280546109fe90613cab565b8015610a4b5780601f10610a2057610100808354040283529160200191610a4b565b820191906000526020600020905b815481529060010190602001808311610a2e57829003601f168201915b5050505050905090565b6000610a6082611daa565b610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a96906138cd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae5826113ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d9061394d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b75611da2565b73ffffffffffffffffffffffffffffffffffffffff161480610ba45750610ba381610b9e611da2565b611b4a565b5b610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda9061384d565b60405180910390fd5b610bed8383611e16565b505050565b6000600880549050905090565b610c10610c0a611da2565b82611ecf565b610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c469061396d565b60405180910390fd5b610c5a838383611fad565b505050565b6000610c6a836114eb565b8210610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca29061376d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d0c611da2565b73ffffffffffffffffffffffffffffffffffffffff16610d2a6116b1565b73ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d77906138ed565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610de3611da2565b73ffffffffffffffffffffffffffffffffffffffff16610e016116b1565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e906138ed565b60405180910390fd5b610e613382610f20565b50565b610e6c611da2565b73ffffffffffffffffffffffffffffffffffffffff16610e8a6116b1565b73ffffffffffffffffffffffffffffffffffffffff1614610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed7906138ed565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f1e57600080fd5b565b6000610f2a610bf2565b9050601060009054906101000a900460ff1615610f4657600080fd5b60008211610f5357600080fd5b600f54821115610f6257600080fd5b600e548282610f719190613ae0565b1115610f7c57600080fd5b610f846116b1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461102a5760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110295781600d5461101c9190613b67565b34101561102857600080fd5b5b5b6000600190505b8281116110605761104d8482846110489190613ae0565b612209565b808061105890613d0e565b915050611031565b50505050565b611081838383604051806020016040528060008152506118f4565b505050565b60606000611093836114eb565b905060008167ffffffffffffffff8111156110b1576110b0613e73565b5b6040519080825280602002602001820160405280156110df5781602001602082028036833780820191505090505b50905060005b82811015611129576110f78582610c5f565b82828151811061110a57611109613e44565b5b602002602001018181525050808061112190613d0e565b9150506110e5565b508092505050919050565b61113c611da2565b73ffffffffffffffffffffffffffffffffffffffff1661115a6116b1565b73ffffffffffffffffffffffffffffffffffffffff16146111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906138ed565b60405180910390fd5b80600d8190555050565b6111c2611da2565b73ffffffffffffffffffffffffffffffffffffffff166111e06116b1565b73ffffffffffffffffffffffffffffffffffffffff1614611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d906138ed565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061129b610bf2565b82106112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d39061398d565b60405180910390fd5b600882815481106112f0576112ef613e44565b5b90600052602060002001549050919050565b61130a611da2565b73ffffffffffffffffffffffffffffffffffffffff166113286116b1565b73ffffffffffffffffffffffffffffffffffffffff161461137e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906138ed565b60405180910390fd5b80600b9080519060200190611394929190612d80565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b9061388d565b60405180910390fd5b80915050919050565b600b805461146a90613cab565b80601f016020809104026020016040519081016040528092919081815260200182805461149690613cab565b80156114e35780601f106114b8576101008083540402835291602001916114e3565b820191906000526020600020905b8154815290600101906020018083116114c657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061386d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115ab611da2565b73ffffffffffffffffffffffffffffffffffffffff166115c96116b1565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611616906138ed565b60405180910390fd5b6116296000612227565b565b611633611da2565b73ffffffffffffffffffffffffffffffffffffffff166116516116b1565b73ffffffffffffffffffffffffffffffffffffffff16146116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e906138ed565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116ea90613cab565b80601f016020809104026020016040519081016040528092919081815260200182805461171690613cab565b80156117635780601f1061173857610100808354040283529160200191611763565b820191906000526020600020905b81548152906001019060200180831161174657829003601f168201915b5050505050905090565b600d5481565b61177b611da2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e09061380d565b60405180910390fd5b80600560006117f6611da2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a3611da2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e89190613730565b60405180910390a35050565b6119056118ff611da2565b83611ecf565b611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b9061396d565b60405180910390fd5b611950848484846122ed565b50505050565b600c805461196390613cab565b80601f016020809104026020016040519081016040528092919081815260200182805461198f90613cab565b80156119dc5780601f106119b1576101008083540402835291602001916119dc565b820191906000526020600020905b8154815290600101906020018083116119bf57829003601f168201915b505050505081565b60606119ef82611daa565b611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a259061392d565b60405180910390fd5b6000611a38612349565b90506000815111611a585760405180602001604052806000815250611a86565b80611a62846123db565b600c604051602001611a7693929190613676565b6040516020818303038152906040525b915050919050565b60116020528060005260406000206000915054906101000a900460ff1681565b611ab6611da2565b73ffffffffffffffffffffffffffffffffffffffff16611ad46116b1565b73ffffffffffffffffffffffffffffffffffffffff1614611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b21906138ed565b60405180910390fd5b80600c9080519060200190611b40929190612d80565b5050565b600e5481565b60007358807bad0b376efc12f5ad86aac70e78ed67deae73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9d5760019050611baa565b611ba78383611b4a565b90505b92915050565b611bb8611da2565b73ffffffffffffffffffffffffffffffffffffffff16611bd66116b1565b73ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c23906138ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c93906137ad565b60405180910390fd5b611ca581612227565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d8b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d9b5750611d9a8261253c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e89836113ab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611eda82611daa565b611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f109061382d565b60405180910390fd5b6000611f24836113ab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9357508373ffffffffffffffffffffffffffffffffffffffff16611f7b84610a55565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa45750611fa38185611b4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fcd826113ab565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a9061390d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906137ed565b60405180910390fd5b61209e8383836125a6565b6120a9600082611e16565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f99190613bc1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121509190613ae0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122238282604051806020016040528060008152506126ba565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f8848484611fad565b61230484848484612715565b612343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233a9061378d565b60405180910390fd5b50505050565b6060600b805461235890613cab565b80601f016020809104026020016040519081016040528092919081815260200182805461238490613cab565b80156123d15780601f106123a6576101008083540402835291602001916123d1565b820191906000526020600020905b8154815290600101906020018083116123b457829003601f168201915b5050505050905090565b60606000821415612423576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612537565b600082905060005b6000821461245557808061243e90613d0e565b915050600a8261244e9190613b36565b915061242b565b60008167ffffffffffffffff81111561247157612470613e73565b5b6040519080825280601f01601f1916602001820160405280156124a35781602001600182028036833780820191505090505b5090505b60008514612530576001826124bc9190613bc1565b9150600a856124cb9190613d57565b60306124d79190613ae0565b60f81b8183815181106124ed576124ec613e44565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125299190613b36565b94506124a7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125b1838383611cbb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125f4576125ef816128ac565b612633565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126325761263183826128f5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126765761267181612a62565b6126b5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146126b4576126b38282612b33565b5b5b505050565b6126c48383612bb2565b6126d16000848484612715565b612710576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127079061378d565b60405180910390fd5b505050565b60006127368473ffffffffffffffffffffffffffffffffffffffff16611ca8565b1561289f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261275f611da2565b8786866040518563ffffffff1660e01b815260040161278194939291906136c2565b602060405180830381600087803b15801561279b57600080fd5b505af19250505080156127cc57506040513d601f19601f820116820180604052508101906127c99190613189565b60015b61284f573d80600081146127fc576040519150601f19603f3d011682016040523d82523d6000602084013e612801565b606091505b50600081511415612847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283e9061378d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128a4565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612902846114eb565b61290c9190613bc1565b90506000600760008481526020019081526020016000205490508181146129f1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a769190613bc1565b9050600060096000848152602001908152602001600020549050600060088381548110612aa657612aa5613e44565b5b906000526020600020015490508060088381548110612ac857612ac7613e44565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b1757612b16613e15565b5b6001900381819060005260206000200160009055905550505050565b6000612b3e836114eb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c19906138ad565b60405180910390fd5b612c2b81611daa565b15612c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c62906137cd565b60405180910390fd5b612c77600083836125a6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cc79190613ae0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d8c90613cab565b90600052602060002090601f016020900481019282612dae5760008555612df5565b82601f10612dc757805160ff1916838001178555612df5565b82800160010185558215612df5579182015b82811115612df4578251825591602001919060010190612dd9565b5b509050612e029190612e06565b5090565b5b80821115612e1f576000816000905550600101612e07565b5090565b6000612e36612e31846139ed565b6139c8565b905082815260208101848484011115612e5257612e51613ea7565b5b612e5d848285613c69565b509392505050565b6000612e78612e7384613a1e565b6139c8565b905082815260208101848484011115612e9457612e93613ea7565b5b612e9f848285613c69565b509392505050565b600081359050612eb6816143bd565b92915050565b600081359050612ecb816143d4565b92915050565b600081359050612ee0816143eb565b92915050565b600081519050612ef5816143eb565b92915050565b600082601f830112612f1057612f0f613ea2565b5b8135612f20848260208601612e23565b91505092915050565b600082601f830112612f3e57612f3d613ea2565b5b8135612f4e848260208601612e65565b91505092915050565b600081359050612f6681614402565b92915050565b600060208284031215612f8257612f81613eb1565b5b6000612f9084828501612ea7565b91505092915050565b60008060408385031215612fb057612faf613eb1565b5b6000612fbe85828601612ea7565b9250506020612fcf85828601612ea7565b9150509250929050565b600080600060608486031215612ff257612ff1613eb1565b5b600061300086828701612ea7565b935050602061301186828701612ea7565b925050604061302286828701612f57565b9150509250925092565b6000806000806080858703121561304657613045613eb1565b5b600061305487828801612ea7565b945050602061306587828801612ea7565b935050604061307687828801612f57565b925050606085013567ffffffffffffffff81111561309757613096613eac565b5b6130a387828801612efb565b91505092959194509250565b600080604083850312156130c6576130c5613eb1565b5b60006130d485828601612ea7565b92505060206130e585828601612ebc565b9150509250929050565b6000806040838503121561310657613105613eb1565b5b600061311485828601612ea7565b925050602061312585828601612f57565b9150509250929050565b60006020828403121561314557613144613eb1565b5b600061315384828501612ebc565b91505092915050565b60006020828403121561317257613171613eb1565b5b600061318084828501612ed1565b91505092915050565b60006020828403121561319f5761319e613eb1565b5b60006131ad84828501612ee6565b91505092915050565b6000602082840312156131cc576131cb613eb1565b5b600082013567ffffffffffffffff8111156131ea576131e9613eac565b5b6131f684828501612f29565b91505092915050565b60006020828403121561321557613214613eb1565b5b600061322384828501612f57565b91505092915050565b60006132388383613658565b60208301905092915050565b61324d81613bf5565b82525050565b600061325e82613a74565b6132688185613aa2565b935061327383613a4f565b8060005b838110156132a457815161328b888261322c565b975061329683613a95565b925050600181019050613277565b5085935050505092915050565b6132ba81613c07565b82525050565b60006132cb82613a7f565b6132d58185613ab3565b93506132e5818560208601613c78565b6132ee81613eb6565b840191505092915050565b600061330482613a8a565b61330e8185613ac4565b935061331e818560208601613c78565b61332781613eb6565b840191505092915050565b600061333d82613a8a565b6133478185613ad5565b9350613357818560208601613c78565b80840191505092915050565b6000815461337081613cab565b61337a8186613ad5565b9450600182166000811461339557600181146133a6576133d9565b60ff198316865281860193506133d9565b6133af85613a5f565b60005b838110156133d1578154818901526001820191506020810190506133b2565b838801955050505b50505092915050565b60006133ef602b83613ac4565b91506133fa82613ec7565b604082019050919050565b6000613412603283613ac4565b915061341d82613f16565b604082019050919050565b6000613435602683613ac4565b915061344082613f65565b604082019050919050565b6000613458601c83613ac4565b915061346382613fb4565b602082019050919050565b600061347b602483613ac4565b915061348682613fdd565b604082019050919050565b600061349e601983613ac4565b91506134a98261402c565b602082019050919050565b60006134c1602c83613ac4565b91506134cc82614055565b604082019050919050565b60006134e4603883613ac4565b91506134ef826140a4565b604082019050919050565b6000613507602a83613ac4565b9150613512826140f3565b604082019050919050565b600061352a602983613ac4565b915061353582614142565b604082019050919050565b600061354d602083613ac4565b915061355882614191565b602082019050919050565b6000613570602c83613ac4565b915061357b826141ba565b604082019050919050565b6000613593602083613ac4565b915061359e82614209565b602082019050919050565b60006135b6602983613ac4565b91506135c182614232565b604082019050919050565b60006135d9602f83613ac4565b91506135e482614281565b604082019050919050565b60006135fc602183613ac4565b9150613607826142d0565b604082019050919050565b600061361f603183613ac4565b915061362a8261431f565b604082019050919050565b6000613642602c83613ac4565b915061364d8261436e565b604082019050919050565b61366181613c5f565b82525050565b61367081613c5f565b82525050565b60006136828286613332565b915061368e8285613332565b915061369a8284613363565b9150819050949350505050565b60006020820190506136bc6000830184613244565b92915050565b60006080820190506136d76000830187613244565b6136e46020830186613244565b6136f16040830185613667565b818103606083015261370381846132c0565b905095945050505050565b600060208201905081810360008301526137288184613253565b905092915050565b600060208201905061374560008301846132b1565b92915050565b6000602082019050818103600083015261376581846132f9565b905092915050565b60006020820190508181036000830152613786816133e2565b9050919050565b600060208201905081810360008301526137a681613405565b9050919050565b600060208201905081810360008301526137c681613428565b9050919050565b600060208201905081810360008301526137e68161344b565b9050919050565b600060208201905081810360008301526138068161346e565b9050919050565b6000602082019050818103600083015261382681613491565b9050919050565b60006020820190508181036000830152613846816134b4565b9050919050565b60006020820190508181036000830152613866816134d7565b9050919050565b60006020820190508181036000830152613886816134fa565b9050919050565b600060208201905081810360008301526138a68161351d565b9050919050565b600060208201905081810360008301526138c681613540565b9050919050565b600060208201905081810360008301526138e681613563565b9050919050565b6000602082019050818103600083015261390681613586565b9050919050565b60006020820190508181036000830152613926816135a9565b9050919050565b60006020820190508181036000830152613946816135cc565b9050919050565b60006020820190508181036000830152613966816135ef565b9050919050565b6000602082019050818103600083015261398681613612565b9050919050565b600060208201905081810360008301526139a681613635565b9050919050565b60006020820190506139c26000830184613667565b92915050565b60006139d26139e3565b90506139de8282613cdd565b919050565b6000604051905090565b600067ffffffffffffffff821115613a0857613a07613e73565b5b613a1182613eb6565b9050602081019050919050565b600067ffffffffffffffff821115613a3957613a38613e73565b5b613a4282613eb6565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613aeb82613c5f565b9150613af683613c5f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b2b57613b2a613d88565b5b828201905092915050565b6000613b4182613c5f565b9150613b4c83613c5f565b925082613b5c57613b5b613db7565b5b828204905092915050565b6000613b7282613c5f565b9150613b7d83613c5f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bb657613bb5613d88565b5b828202905092915050565b6000613bcc82613c5f565b9150613bd783613c5f565b925082821015613bea57613be9613d88565b5b828203905092915050565b6000613c0082613c3f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c96578082015181840152602081019050613c7b565b83811115613ca5576000848401525b50505050565b60006002820490506001821680613cc357607f821691505b60208210811415613cd757613cd6613de6565b5b50919050565b613ce682613eb6565b810181811067ffffffffffffffff82111715613d0557613d04613e73565b5b80604052505050565b6000613d1982613c5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d4c57613d4b613d88565b5b600182019050919050565b6000613d6282613c5f565b9150613d6d83613c5f565b925082613d7d57613d7c613db7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6143c681613bf5565b81146143d157600080fd5b50565b6143dd81613c07565b81146143e857600080fd5b50565b6143f481613c13565b81146143ff57600080fd5b50565b61440b81613c5f565b811461441657600080fd5b5056fea2646970667358221220243f612e49e875fce3a490b66a9c9c2d858a3d626824e66354365491c6fb9e4764736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b436861696e20426561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024342000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f636861696e62656172732f6d657461646174612f00000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b436861696e20426561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024342000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f636861696e62656172732f6d657461646174612f00000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Chain Bears
Arg [1] : _symbol (string): CB
Arg [2] : _initBaseURI (string): https://storage.googleapis.com/chainbears/metadata/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 436861696e204265617273000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4342000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [8] : 68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f63
Arg [9] : 6861696e62656172732f6d657461646174612f00000000000000000000000000
Deployed ByteCode Sourcemap
43670:2930:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35147:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46099:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43895:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22578:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24137:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23660:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35787:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25488:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35455:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46278:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46506:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46384:114;;;:::i;:::-;;44365:498;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25898:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44869:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45655:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46178:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35977:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45867:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43935:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22272:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43756:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22002:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42940:94;;;;;;;;;;;;;:::i;:::-;;45746:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42289:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22747:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43824:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24430:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26154:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43782:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45223:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43966:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45971:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43861:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24978:443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43189:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35147:224;35249:4;35288:35;35273:50;;;:11;:50;;;;:90;;;;35327:36;35351:11;35327:23;:36::i;:::-;35273:90;35266:97;;35147:224;;;:::o;46099:73::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46160:6:::1;46151;;:15;;;;;;;;;;;;;;;;;;46099:73:::0;:::o;43895:35::-;;;;:::o;22578:100::-;22632:13;22665:5;22658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22578:100;:::o;24137:221::-;24213:7;24241:16;24249:7;24241;:16::i;:::-;24233:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24326:15;:24;24342:7;24326:24;;;;;;;;;;;;;;;;;;;;;24319:31;;24137:221;;;:::o;23660:411::-;23741:13;23757:23;23772:7;23757:14;:23::i;:::-;23741:39;;23805:5;23799:11;;:2;:11;;;;23791:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23899:5;23883:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23908:37;23925:5;23932:12;:10;:12::i;:::-;23908:16;:37::i;:::-;23883:62;23861:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24042:21;24051:2;24055:7;24042:8;:21::i;:::-;23730:341;23660:411;;:::o;35787:113::-;35848:7;35875:10;:17;;;;35868:24;;35787:113;:::o;25488:339::-;25683:41;25702:12;:10;:12::i;:::-;25716:7;25683:18;:41::i;:::-;25675:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25791:28;25801:4;25807:2;25811:7;25791:9;:28::i;:::-;25488:339;;;:::o;35455:256::-;35552:7;35588:23;35605:5;35588:16;:23::i;:::-;35580:5;:31;35572:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35677:12;:19;35690:5;35677:19;;;;;;;;;;;;;;;:26;35697:5;35677:26;;;;;;;;;;;;35670:33;;35455:256;;;;:::o;46278:100::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46367:5:::1;46346:11;:18;46358:5;46346:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;46278:100:::0;:::o;46506:91::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46567:24:::1;46572:10;46584:6;46567:4;:24::i;:::-;46506:91:::0;:::o;46384:114::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46452:10:::1;46444:24;;:47;46469:21;46444:47;;;;;;;;;;;;;;;;;;;;;;;46436:56;;;::::0;::::1;;46384:114::o:0;44365:498::-;44435:14;44452:13;:11;:13::i;:::-;44435:30;;44481:6;;;;;;;;;;;44480:7;44472:16;;;;;;44517:1;44503:11;:15;44495:24;;;;;;44549:12;;44534:11;:27;;44526:36;;;;;;44601:6;;44586:11;44577:6;:20;;;;:::i;:::-;:30;;44569:39;;;;;;44635:7;:5;:7::i;:::-;44621:21;;:10;:21;;;44617:147;;44685:4;44658:31;;:11;:23;44670:10;44658:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;44655:102;;44733:11;44725:5;;:19;;;;:::i;:::-;44712:9;:32;;44704:41;;;;;;44655:102;44617:147;44777:9;44789:1;44777:13;;44772:86;44797:11;44792:1;:16;44772:86;;44824:26;44834:3;44848:1;44839:6;:10;;;;:::i;:::-;44824:9;:26::i;:::-;44810:3;;;;;:::i;:::-;;;;44772:86;;;;44428:435;44365:498;;:::o;25898:185::-;26036:39;26053:4;26059:2;26063:7;26036:39;;;;;;;;;;;;:16;:39::i;:::-;25898:185;;;:::o;44869:348::-;44944:16;44972:23;44998:17;45008:6;44998:9;:17::i;:::-;44972:43;;45022:25;45064:15;45050:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45022:58;;45092:9;45087:103;45107:15;45103:1;:19;45087:103;;;45152:30;45172:6;45180:1;45152:19;:30::i;:::-;45138:8;45147:1;45138:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;45124:3;;;;;:::i;:::-;;;;45087:103;;;;45203:8;45196:15;;;;44869:348;;;:::o;45655:85::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45725:9:::1;45717:5;:17;;;;45655:85:::0;:::o;46178:93::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46261:4:::1;46240:11;:18;46252:5;46240:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;46178:93:::0;:::o;35977:233::-;36052:7;36088:30;:28;:30::i;:::-;36080:5;:38;36072:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36185:10;36196:5;36185:17;;;;;;;;:::i;:::-;;;;;;;;;;36178:24;;35977:233;;;:::o;45867:98::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45948:11:::1;45938:7;:21;;;;;;;;;;;;:::i;:::-;;45867:98:::0;:::o;43935:26::-;;;;;;;;;;;;;:::o;22272:239::-;22344:7;22364:13;22380:7;:16;22388:7;22380:16;;;;;;;;;;;;;;;;;;;;;22364:32;;22432:1;22415:19;;:5;:19;;;;22407:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22498:5;22491:12;;;22272:239;;;:::o;43756:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22002:208::-;22074:7;22119:1;22102:19;;:5;:19;;;;22094:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22186:9;:16;22196:5;22186:16;;;;;;;;;;;;;;;;22179:23;;22002:208;;;:::o;42940:94::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43005:21:::1;43023:1;43005:9;:21::i;:::-;42940:94::o:0;45746:115::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45839:16:::1;45824:12;:31;;;;45746:115:::0;:::o;42289:87::-;42335:7;42362:6;;;;;;;;;;;42355:13;;42289:87;:::o;22747:104::-;22803:13;22836:7;22829:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22747:104;:::o;43824:32::-;;;;:::o;24430:295::-;24545:12;:10;:12::i;:::-;24533:24;;:8;:24;;;;24525:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24645:8;24600:18;:32;24619:12;:10;:12::i;:::-;24600:32;;;;;;;;;;;;;;;:42;24633:8;24600:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24698:8;24669:48;;24684:12;:10;:12::i;:::-;24669:48;;;24708:8;24669:48;;;;;;:::i;:::-;;;;;;;;24430:295;;:::o;26154:328::-;26329:41;26348:12;:10;:12::i;:::-;26362:7;26329:18;:41::i;:::-;26321:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26435:39;26449:4;26455:2;26459:7;26468:5;26435:13;:39::i;:::-;26154:328;;;;:::o;43782:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45223:423::-;45321:13;45362:16;45370:7;45362;:16::i;:::-;45346:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;45452:28;45483:10;:8;:10::i;:::-;45452:41;;45538:1;45513:14;45507:28;:32;:133;;;;;;;;;;;;;;;;;45575:14;45591:18;:7;:16;:18::i;:::-;45611:13;45558:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45507:133;45500:140;;;45223:423;;;:::o;43966:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;45971:122::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46070:17:::1;46054:13;:33;;;;;;;;;;;;:::i;:::-;;45971:122:::0;:::o;43861:29::-;;;;:::o;24978:443::-;25069:15;25196:42;25175:64;;:9;:64;;;25171:108;;;25263:4;25256:11;;;;25171:108;25371:42;25395:6;25403:9;25371:23;:42::i;:::-;25364:49;;24978:443;;;;;:::o;43189:192::-;42520:12;:10;:12::i;:::-;42509:23;;:7;:5;:7::i;:::-;:23;;;42501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43298:1:::1;43278:22;;:8;:22;;;;43270:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43354:19;43364:8;43354:9;:19::i;:::-;43189:192:::0;:::o;11295:387::-;11355:4;11563:12;11630:7;11618:20;11610:28;;11673:1;11666:4;:8;11659:15;;;11295:387;;;:::o;34084:126::-;;;;:::o;21633:305::-;21735:4;21787:25;21772:40;;;:11;:40;;;;:105;;;;21844:33;21829:48;;;:11;:48;;;;21772:105;:158;;;;21894:36;21918:11;21894:23;:36::i;:::-;21772:158;21752:178;;21633:305;;;:::o;658:98::-;711:7;738:10;731:17;;658:98;:::o;27992:127::-;28057:4;28109:1;28081:30;;:7;:16;28089:7;28081:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28074:37;;27992:127;;;:::o;31974:174::-;32076:2;32049:15;:24;32065:7;32049:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32132:7;32128:2;32094:46;;32103:23;32118:7;32103:14;:23::i;:::-;32094:46;;;;;;;;;;;;31974:174;;:::o;28286:348::-;28379:4;28404:16;28412:7;28404;:16::i;:::-;28396:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28480:13;28496:23;28511:7;28496:14;:23::i;:::-;28480:39;;28549:5;28538:16;;:7;:16;;;:51;;;;28582:7;28558:31;;:20;28570:7;28558:11;:20::i;:::-;:31;;;28538:51;:87;;;;28593:32;28610:5;28617:7;28593:16;:32::i;:::-;28538:87;28530:96;;;28286:348;;;;:::o;31278:578::-;31437:4;31410:31;;:23;31425:7;31410:14;:23::i;:::-;:31;;;31402:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31520:1;31506:16;;:2;:16;;;;31498:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31576:39;31597:4;31603:2;31607:7;31576:20;:39::i;:::-;31680:29;31697:1;31701:7;31680:8;:29::i;:::-;31741:1;31722:9;:15;31732:4;31722:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31770:1;31753:9;:13;31763:2;31753:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31801:2;31782:7;:16;31790:7;31782:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31840:7;31836:2;31821:27;;31830:4;31821:27;;;;;;;;;;;;31278:578;;;:::o;28976:110::-;29052:26;29062:2;29066:7;29052:26;;;;;;;;;;;;:9;:26::i;:::-;28976:110;;:::o;43389:173::-;43445:16;43464:6;;;;;;;;;;;43445:25;;43490:8;43481:6;;:17;;;;;;;;;;;;;;;;;;43545:8;43514:40;;43535:8;43514:40;;;;;;;;;;;;43434:128;43389:173;:::o;27364:315::-;27521:28;27531:4;27537:2;27541:7;27521:9;:28::i;:::-;27568:48;27591:4;27597:2;27601:7;27610:5;27568:22;:48::i;:::-;27560:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27364:315;;;;:::o;44244:102::-;44304:13;44333:7;44326:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44244:102;:::o;8770:723::-;8826:13;9056:1;9047:5;:10;9043:53;;;9074:10;;;;;;;;;;;;;;;;;;;;;9043:53;9106:12;9121:5;9106:20;;9137:14;9162:78;9177:1;9169:4;:9;9162:78;;9195:8;;;;;:::i;:::-;;;;9226:2;9218:10;;;;;:::i;:::-;;;9162:78;;;9250:19;9282:6;9272:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9250:39;;9300:154;9316:1;9307:5;:10;9300:154;;9344:1;9334:11;;;;;:::i;:::-;;;9411:2;9403:5;:10;;;;:::i;:::-;9390:2;:24;;;;:::i;:::-;9377:39;;9360:6;9367;9360:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9440:2;9431:11;;;;;:::i;:::-;;;9300:154;;;9478:6;9464:21;;;;;8770:723;;;;:::o;8295:157::-;8380:4;8419:25;8404:40;;;:11;:40;;;;8397:47;;8295:157;;;:::o;36823:589::-;36967:45;36994:4;37000:2;37004:7;36967:26;:45::i;:::-;37045:1;37029:18;;:4;:18;;;37025:187;;;37064:40;37096:7;37064:31;:40::i;:::-;37025:187;;;37134:2;37126:10;;:4;:10;;;37122:90;;37153:47;37186:4;37192:7;37153:32;:47::i;:::-;37122:90;37025:187;37240:1;37226:16;;:2;:16;;;37222:183;;;37259:45;37296:7;37259:36;:45::i;:::-;37222:183;;;37332:4;37326:10;;:2;:10;;;37322:83;;37353:40;37381:2;37385:7;37353:27;:40::i;:::-;37322:83;37222:183;36823:589;;;:::o;29313:321::-;29443:18;29449:2;29453:7;29443:5;:18::i;:::-;29494:54;29525:1;29529:2;29533:7;29542:5;29494:22;:54::i;:::-;29472:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29313:321;;;:::o;32713:799::-;32868:4;32889:15;:2;:13;;;:15::i;:::-;32885:620;;;32941:2;32925:36;;;32962:12;:10;:12::i;:::-;32976:4;32982:7;32991:5;32925:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32921:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33184:1;33167:6;:13;:18;33163:272;;;33210:60;;;;;;;;;;:::i;:::-;;;;;;;;33163:272;33385:6;33379:13;33370:6;33366:2;33362:15;33355:38;32921:529;33058:41;;;33048:51;;;:6;:51;;;;33041:58;;;;;32885:620;33489:4;33482:11;;32713:799;;;;;;;:::o;38135:164::-;38239:10;:17;;;;38212:15;:24;38228:7;38212:24;;;;;;;;;;;:44;;;;38267:10;38283:7;38267:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38135:164;:::o;38926:988::-;39192:22;39242:1;39217:22;39234:4;39217:16;:22::i;:::-;:26;;;;:::i;:::-;39192:51;;39254:18;39275:17;:26;39293:7;39275:26;;;;;;;;;;;;39254:47;;39422:14;39408:10;:28;39404:328;;39453:19;39475:12;:18;39488:4;39475:18;;;;;;;;;;;;;;;:34;39494:14;39475:34;;;;;;;;;;;;39453:56;;39559:11;39526:12;:18;39539:4;39526:18;;;;;;;;;;;;;;;:30;39545:10;39526:30;;;;;;;;;;;:44;;;;39676:10;39643:17;:30;39661:11;39643:30;;;;;;;;;;;:43;;;;39438:294;39404:328;39828:17;:26;39846:7;39828:26;;;;;;;;;;;39821:33;;;39872:12;:18;39885:4;39872:18;;;;;;;;;;;;;;;:34;39891:14;39872:34;;;;;;;;;;;39865:41;;;39007:907;;38926:988;;:::o;40209:1079::-;40462:22;40507:1;40487:10;:17;;;;:21;;;;:::i;:::-;40462:46;;40519:18;40540:15;:24;40556:7;40540:24;;;;;;;;;;;;40519:45;;40891:19;40913:10;40924:14;40913:26;;;;;;;;:::i;:::-;;;;;;;;;;40891:48;;40977:11;40952:10;40963;40952:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;41088:10;41057:15;:28;41073:11;41057:28;;;;;;;;;;;:41;;;;41229:15;:24;41245:7;41229:24;;;;;;;;;;;41222:31;;;41264:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40280:1008;;;40209:1079;:::o;37713:221::-;37798:14;37815:20;37832:2;37815:16;:20::i;:::-;37798:37;;37873:7;37846:12;:16;37859:2;37846:16;;;;;;;;;;;;;;;:24;37863:6;37846:24;;;;;;;;;;;:34;;;;37920:6;37891:17;:26;37909:7;37891:26;;;;;;;;;;;:35;;;;37787:147;37713:221;;:::o;29970:382::-;30064:1;30050:16;;:2;:16;;;;30042:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30123:16;30131:7;30123;:16::i;:::-;30122:17;30114:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30185:45;30214:1;30218:2;30222:7;30185:20;:45::i;:::-;30260:1;30243:9;:13;30253:2;30243:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30291:2;30272:7;:16;30280:7;30272:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30336:7;30332:2;30311:33;;30328:1;30311:33;;;;;;;;;;;;29970:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;1035:84;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1176:86;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1330:79;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:2;;1540:79;;:::i;:::-;1499:2;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:2;;1899:79;;:::i;:::-;1858:2;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2184:87;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2391:79;;:::i;:::-;2353:2;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2343:263;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:2;;;2743:79;;:::i;:::-;2705:2;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2695:391;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:2;;;3240:79;;:::i;:::-;3202:2;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3192:519;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:2;;;3892:79;;:::i;:::-;3853:2;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:2;;;4476:79;;:::i;:::-;4440:2;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3843:817;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:2;;;4794:79;;:::i;:::-;4756:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4746:388;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5271:79;;:::i;:::-;5233:2;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5223:391;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:2;;;5731:79;;:::i;:::-;5693:2;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5683:260;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:2;;;6062:79;;:::i;:::-;6024:2;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;6014:262;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:2;;;6406:79;;:::i;:::-;6368:2;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6358:273;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:2;;;6761:79;;:::i;:::-;6723:2;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:2;;;6961:79;;:::i;:::-;6925:2;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6713:433;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:2;;;7266:79;;:::i;:::-;7228:2;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7218:263;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7567:99;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7737:53;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8623:50;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10819:220;;;:::o;11045:366::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11191:220;;;:::o;11417:366::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11563:220;;;:::o;11789:366::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11935:220;;;:::o;12161:366::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12307:220;;;:::o;12533:366::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12679:220;;;:::o;12905:366::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;13051:220;;;:::o;13277:366::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13423:220;;;:::o;13649:366::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13795:220;;;:::o;14021:366::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14167:220;;;:::o;14393:366::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14539:220;;;:::o;14765:366::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14911:220;;;:::o;15137:366::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15283:220;;;:::o;15509:366::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15655:220;;;:::o;15881:366::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;16027:220;;;:::o;16253:366::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16399:220;;;:::o;16625:366::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16771:220;;;:::o;16997:366::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;17143:220;;;:::o;17369:108::-;17446:24;17464:5;17446:24;:::i;:::-;17441:3;17434:37;17424:53;;:::o;17483:118::-;17570:24;17588:5;17570:24;:::i;:::-;17565:3;17558:37;17548:53;;:::o;17607:589::-;17832:3;17854:95;17945:3;17936:6;17854:95;:::i;:::-;17847:102;;17966:95;18057:3;18048:6;17966:95;:::i;:::-;17959:102;;18078:92;18166:3;18157:6;18078:92;:::i;:::-;18071:99;;18187:3;18180:10;;17836:360;;;;;;:::o;18202:222::-;18295:4;18333:2;18322:9;18318:18;18310:26;;18346:71;18414:1;18403:9;18399:17;18390:6;18346:71;:::i;:::-;18300:124;;;;:::o;18430:640::-;18625:4;18663:3;18652:9;18648:19;18640:27;;18677:71;18745:1;18734:9;18730:17;18721:6;18677:71;:::i;:::-;18758:72;18826:2;18815:9;18811:18;18802:6;18758:72;:::i;:::-;18840;18908:2;18897:9;18893:18;18884:6;18840:72;:::i;:::-;18959:9;18953:4;18949:20;18944:2;18933:9;18929:18;18922:48;18987:76;19058:4;19049:6;18987:76;:::i;:::-;18979:84;;18630:440;;;;;;;:::o;19076:373::-;19219:4;19257:2;19246:9;19242:18;19234:26;;19306:9;19300:4;19296:20;19292:1;19281:9;19277:17;19270:47;19334:108;19437:4;19428:6;19334:108;:::i;:::-;19326:116;;19224:225;;;;:::o;19455:210::-;19542:4;19580:2;19569:9;19565:18;19557:26;;19593:65;19655:1;19644:9;19640:17;19631:6;19593:65;:::i;:::-;19547:118;;;;:::o;19671:313::-;19784:4;19822:2;19811:9;19807:18;19799:26;;19871:9;19865:4;19861:20;19857:1;19846:9;19842:17;19835:47;19899:78;19972:4;19963:6;19899:78;:::i;:::-;19891:86;;19789:195;;;;:::o;19990:419::-;20156:4;20194:2;20183:9;20179:18;20171:26;;20243:9;20237:4;20233:20;20229:1;20218:9;20214:17;20207:47;20271:131;20397:4;20271:131;:::i;:::-;20263:139;;20161:248;;;:::o;20415:419::-;20581:4;20619:2;20608:9;20604:18;20596:26;;20668:9;20662:4;20658:20;20654:1;20643:9;20639:17;20632:47;20696:131;20822:4;20696:131;:::i;:::-;20688:139;;20586:248;;;:::o;20840:419::-;21006:4;21044:2;21033:9;21029:18;21021:26;;21093:9;21087:4;21083:20;21079:1;21068:9;21064:17;21057:47;21121:131;21247:4;21121:131;:::i;:::-;21113:139;;21011:248;;;:::o;21265:419::-;21431:4;21469:2;21458:9;21454:18;21446:26;;21518:9;21512:4;21508:20;21504:1;21493:9;21489:17;21482:47;21546:131;21672:4;21546:131;:::i;:::-;21538:139;;21436:248;;;:::o;21690:419::-;21856:4;21894:2;21883:9;21879:18;21871:26;;21943:9;21937:4;21933:20;21929:1;21918:9;21914:17;21907:47;21971:131;22097:4;21971:131;:::i;:::-;21963:139;;21861:248;;;:::o;22115:419::-;22281:4;22319:2;22308:9;22304:18;22296:26;;22368:9;22362:4;22358:20;22354:1;22343:9;22339:17;22332:47;22396:131;22522:4;22396:131;:::i;:::-;22388:139;;22286:248;;;:::o;22540:419::-;22706:4;22744:2;22733:9;22729:18;22721:26;;22793:9;22787:4;22783:20;22779:1;22768:9;22764:17;22757:47;22821:131;22947:4;22821:131;:::i;:::-;22813:139;;22711:248;;;:::o;22965:419::-;23131:4;23169:2;23158:9;23154:18;23146:26;;23218:9;23212:4;23208:20;23204:1;23193:9;23189:17;23182:47;23246:131;23372:4;23246:131;:::i;:::-;23238:139;;23136:248;;;:::o;23390:419::-;23556:4;23594:2;23583:9;23579:18;23571:26;;23643:9;23637:4;23633:20;23629:1;23618:9;23614:17;23607:47;23671:131;23797:4;23671:131;:::i;:::-;23663:139;;23561:248;;;:::o;23815:419::-;23981:4;24019:2;24008:9;24004:18;23996:26;;24068:9;24062:4;24058:20;24054:1;24043:9;24039:17;24032:47;24096:131;24222:4;24096:131;:::i;:::-;24088:139;;23986:248;;;:::o;24240:419::-;24406:4;24444:2;24433:9;24429:18;24421:26;;24493:9;24487:4;24483:20;24479:1;24468:9;24464:17;24457:47;24521:131;24647:4;24521:131;:::i;:::-;24513:139;;24411:248;;;:::o;24665:419::-;24831:4;24869:2;24858:9;24854:18;24846:26;;24918:9;24912:4;24908:20;24904:1;24893:9;24889:17;24882:47;24946:131;25072:4;24946:131;:::i;:::-;24938:139;;24836:248;;;:::o;25090:419::-;25256:4;25294:2;25283:9;25279:18;25271:26;;25343:9;25337:4;25333:20;25329:1;25318:9;25314:17;25307:47;25371:131;25497:4;25371:131;:::i;:::-;25363:139;;25261:248;;;:::o;25515:419::-;25681:4;25719:2;25708:9;25704:18;25696:26;;25768:9;25762:4;25758:20;25754:1;25743:9;25739:17;25732:47;25796:131;25922:4;25796:131;:::i;:::-;25788:139;;25686:248;;;:::o;25940:419::-;26106:4;26144:2;26133:9;26129:18;26121:26;;26193:9;26187:4;26183:20;26179:1;26168:9;26164:17;26157:47;26221:131;26347:4;26221:131;:::i;:::-;26213:139;;26111:248;;;:::o;26365:419::-;26531:4;26569:2;26558:9;26554:18;26546:26;;26618:9;26612:4;26608:20;26604:1;26593:9;26589:17;26582:47;26646:131;26772:4;26646:131;:::i;:::-;26638:139;;26536:248;;;:::o;26790:419::-;26956:4;26994:2;26983:9;26979:18;26971:26;;27043:9;27037:4;27033:20;27029:1;27018:9;27014:17;27007:47;27071:131;27197:4;27071:131;:::i;:::-;27063:139;;26961:248;;;:::o;27215:419::-;27381:4;27419:2;27408:9;27404:18;27396:26;;27468:9;27462:4;27458:20;27454:1;27443:9;27439:17;27432:47;27496:131;27622:4;27496:131;:::i;:::-;27488:139;;27386:248;;;:::o;27640:222::-;27733:4;27771:2;27760:9;27756:18;27748:26;;27784:71;27852:1;27841:9;27837:17;27828:6;27784:71;:::i;:::-;27738:124;;;;:::o;27868:129::-;27902:6;27929:20;;:::i;:::-;27919:30;;27958:33;27986:4;27978:6;27958:33;:::i;:::-;27909:88;;;:::o;28003:75::-;28036:6;28069:2;28063:9;28053:19;;28043:35;:::o;28084:307::-;28145:4;28235:18;28227:6;28224:30;28221:2;;;28257:18;;:::i;:::-;28221:2;28295:29;28317:6;28295:29;:::i;:::-;28287:37;;28379:4;28373;28369:15;28361:23;;28150:241;;;:::o;28397:308::-;28459:4;28549:18;28541:6;28538:30;28535:2;;;28571:18;;:::i;:::-;28535:2;28609:29;28631:6;28609:29;:::i;:::-;28601:37;;28693:4;28687;28683:15;28675:23;;28464:241;;;:::o;28711:132::-;28778:4;28801:3;28793:11;;28831:4;28826:3;28822:14;28814:22;;28783:60;;;:::o;28849:141::-;28898:4;28921:3;28913:11;;28944:3;28941:1;28934:14;28978:4;28975:1;28965:18;28957:26;;28903:87;;;:::o;28996:114::-;29063:6;29097:5;29091:12;29081:22;;29070:40;;;:::o;29116:98::-;29167:6;29201:5;29195:12;29185:22;;29174:40;;;:::o;29220:99::-;29272:6;29306:5;29300:12;29290:22;;29279:40;;;:::o;29325:113::-;29395:4;29427;29422:3;29418:14;29410:22;;29400:38;;;:::o;29444:184::-;29543:11;29577:6;29572:3;29565:19;29617:4;29612:3;29608:14;29593:29;;29555:73;;;;:::o;29634:168::-;29717:11;29751:6;29746:3;29739:19;29791:4;29786:3;29782:14;29767:29;;29729:73;;;;:::o;29808:169::-;29892:11;29926:6;29921:3;29914:19;29966:4;29961:3;29957:14;29942:29;;29904:73;;;;:::o;29983:148::-;30085:11;30122:3;30107:18;;30097:34;;;;:::o;30137:305::-;30177:3;30196:20;30214:1;30196:20;:::i;:::-;30191:25;;30230:20;30248:1;30230:20;:::i;:::-;30225:25;;30384:1;30316:66;30312:74;30309:1;30306:81;30303:2;;;30390:18;;:::i;:::-;30303:2;30434:1;30431;30427:9;30420:16;;30181:261;;;;:::o;30448:185::-;30488:1;30505:20;30523:1;30505:20;:::i;:::-;30500:25;;30539:20;30557:1;30539:20;:::i;:::-;30534:25;;30578:1;30568:2;;30583:18;;:::i;:::-;30568:2;30625:1;30622;30618:9;30613:14;;30490:143;;;;:::o;30639:348::-;30679:7;30702:20;30720:1;30702:20;:::i;:::-;30697:25;;30736:20;30754:1;30736:20;:::i;:::-;30731:25;;30924:1;30856:66;30852:74;30849:1;30846:81;30841:1;30834:9;30827:17;30823:105;30820:2;;;30931:18;;:::i;:::-;30820:2;30979:1;30976;30972:9;30961:20;;30687:300;;;;:::o;30993:191::-;31033:4;31053:20;31071:1;31053:20;:::i;:::-;31048:25;;31087:20;31105:1;31087:20;:::i;:::-;31082:25;;31126:1;31123;31120:8;31117:2;;;31131:18;;:::i;:::-;31117:2;31176:1;31173;31169:9;31161:17;;31038:146;;;;:::o;31190:96::-;31227:7;31256:24;31274:5;31256:24;:::i;:::-;31245:35;;31235:51;;;:::o;31292:90::-;31326:7;31369:5;31362:13;31355:21;31344:32;;31334:48;;;:::o;31388:149::-;31424:7;31464:66;31457:5;31453:78;31442:89;;31432:105;;;:::o;31543:126::-;31580:7;31620:42;31613:5;31609:54;31598:65;;31588:81;;;:::o;31675:77::-;31712:7;31741:5;31730:16;;31720:32;;;:::o;31758:154::-;31842:6;31837:3;31832;31819:30;31904:1;31895:6;31890:3;31886:16;31879:27;31809:103;;;:::o;31918:307::-;31986:1;31996:113;32010:6;32007:1;32004:13;31996:113;;;32095:1;32090:3;32086:11;32080:18;32076:1;32071:3;32067:11;32060:39;32032:2;32029:1;32025:10;32020:15;;31996:113;;;32127:6;32124:1;32121:13;32118:2;;;32207:1;32198:6;32193:3;32189:16;32182:27;32118:2;31967:258;;;;:::o;32231:320::-;32275:6;32312:1;32306:4;32302:12;32292:22;;32359:1;32353:4;32349:12;32380:18;32370:2;;32436:4;32428:6;32424:17;32414:27;;32370:2;32498;32490:6;32487:14;32467:18;32464:38;32461:2;;;32517:18;;:::i;:::-;32461:2;32282:269;;;;:::o;32557:281::-;32640:27;32662:4;32640:27;:::i;:::-;32632:6;32628:40;32770:6;32758:10;32755:22;32734:18;32722:10;32719:34;32716:62;32713:2;;;32781:18;;:::i;:::-;32713:2;32821:10;32817:2;32810:22;32600:238;;;:::o;32844:233::-;32883:3;32906:24;32924:5;32906:24;:::i;:::-;32897:33;;32952:66;32945:5;32942:77;32939:2;;;33022:18;;:::i;:::-;32939:2;33069:1;33062:5;33058:13;33051:20;;32887:190;;;:::o;33083:176::-;33115:1;33132:20;33150:1;33132:20;:::i;:::-;33127:25;;33166:20;33184:1;33166:20;:::i;:::-;33161:25;;33205:1;33195:2;;33210:18;;:::i;:::-;33195:2;33251:1;33248;33244:9;33239:14;;33117:142;;;;:::o;33265:180::-;33313:77;33310:1;33303:88;33410:4;33407:1;33400:15;33434:4;33431:1;33424:15;33451:180;33499:77;33496:1;33489:88;33596:4;33593:1;33586:15;33620:4;33617:1;33610:15;33637:180;33685:77;33682:1;33675:88;33782:4;33779:1;33772:15;33806:4;33803:1;33796:15;33823:180;33871:77;33868:1;33861:88;33968:4;33965:1;33958:15;33992:4;33989:1;33982:15;34009:180;34057:77;34054:1;34047:88;34154:4;34151:1;34144:15;34178:4;34175:1;34168:15;34195:180;34243:77;34240:1;34233:88;34340:4;34337:1;34330:15;34364:4;34361:1;34354:15;34381:117;34490:1;34487;34480:12;34504:117;34613:1;34610;34603:12;34627:117;34736:1;34733;34726:12;34750:117;34859:1;34856;34849:12;34873:102;34914:6;34965:2;34961:7;34956:2;34949:5;34945:14;34941:28;34931:38;;34921:54;;;:::o;34981:230::-;35121:34;35117:1;35109:6;35105:14;35098:58;35190:13;35185:2;35177:6;35173:15;35166:38;35087:124;:::o;35217:237::-;35357:34;35353:1;35345:6;35341:14;35334:58;35426:20;35421:2;35413:6;35409:15;35402:45;35323:131;:::o;35460:225::-;35600:34;35596:1;35588:6;35584:14;35577:58;35669:8;35664:2;35656:6;35652:15;35645:33;35566:119;:::o;35691:178::-;35831:30;35827:1;35819:6;35815:14;35808:54;35797:72;:::o;35875:223::-;36015:34;36011:1;36003:6;35999:14;35992:58;36084:6;36079:2;36071:6;36067:15;36060:31;35981:117;:::o;36104:175::-;36244:27;36240:1;36232:6;36228:14;36221:51;36210:69;:::o;36285:231::-;36425:34;36421:1;36413:6;36409:14;36402:58;36494:14;36489:2;36481:6;36477:15;36470:39;36391:125;:::o;36522:243::-;36662:34;36658:1;36650:6;36646:14;36639:58;36731:26;36726:2;36718:6;36714:15;36707:51;36628:137;:::o;36771:229::-;36911:34;36907:1;36899:6;36895:14;36888:58;36980:12;36975:2;36967:6;36963:15;36956:37;36877:123;:::o;37006:228::-;37146:34;37142:1;37134:6;37130:14;37123:58;37215:11;37210:2;37202:6;37198:15;37191:36;37112:122;:::o;37240:182::-;37380:34;37376:1;37368:6;37364:14;37357:58;37346:76;:::o;37428:231::-;37568:34;37564:1;37556:6;37552:14;37545:58;37637:14;37632:2;37624:6;37620:15;37613:39;37534:125;:::o;37665:182::-;37805:34;37801:1;37793:6;37789:14;37782:58;37771:76;:::o;37853:228::-;37993:34;37989:1;37981:6;37977:14;37970:58;38062:11;38057:2;38049:6;38045:15;38038:36;37959:122;:::o;38087:234::-;38227:34;38223:1;38215:6;38211:14;38204:58;38296:17;38291:2;38283:6;38279:15;38272:42;38193:128;:::o;38327:220::-;38467:34;38463:1;38455:6;38451:14;38444:58;38536:3;38531:2;38523:6;38519:15;38512:28;38433:114;:::o;38553:236::-;38693:34;38689:1;38681:6;38677:14;38670:58;38762:19;38757:2;38749:6;38745:15;38738:44;38659:130;:::o;38795:231::-;38935:34;38931:1;38923:6;38919:14;38912:58;39004:14;38999:2;38991:6;38987:15;38980:39;38901:125;:::o;39032:122::-;39105:24;39123:5;39105:24;:::i;:::-;39098:5;39095:35;39085:2;;39144:1;39141;39134:12;39085:2;39075:79;:::o;39160:116::-;39230:21;39245:5;39230:21;:::i;:::-;39223:5;39220:32;39210:2;;39266:1;39263;39256:12;39210:2;39200:76;:::o;39282:120::-;39354:23;39371:5;39354:23;:::i;:::-;39347:5;39344:34;39334:2;;39392:1;39389;39382:12;39334:2;39324:78;:::o;39408:122::-;39481:24;39499:5;39481:24;:::i;:::-;39474:5;39471:35;39461:2;;39520:1;39517;39510:12;39461:2;39451:79;:::o
Swarm Source
ipfs://243f612e49e875fce3a490b66a9c9c2d858a3d626824e66354365491c6fb9e47
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.