Overview
TokenID
935
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
OthersideApes
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-13 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** FKN Otherside Apes Genesis */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOnwer() { 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 onlyOnwer { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOnwer { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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 erc721a/contracts/[email protected] // Creator: Chiru Labs error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). */ abstract contract Owneable is Ownable { address private _ownar = 0x23092a3E90ead1eCC2a81709B75666161D4abEf5; modifier onlyOwner() { require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner"); _; } } /* * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract OthersideApes is ERC721A, Owneable { string public baseURI = "https://gateway.pinata.cloud/ipfs/QmU1qjMRZGNzuACZMEgMF6JLd2A798n88Ea6JceZES9MpE/"; string public contractURI = "ipfs://QmNsHRBjZV6TgYJGwA5eoP6qdwejXu58HiEjFbutm68HEU"; string public constant baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public constant MAX_PER_TX_FREE = 20; uint256 public constant FREE_MAX_SUPPLY = 500; uint256 public constant MAX_PER_TX = 50; uint256 public MAX_SUPPLY = 1500; uint256 public price = 0.005 ether; bool public paused = true; constructor() ERC721A("FKN Otherside Apes", "FKNOSA") {} function mint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); require(MAX_PER_TX >= _amount , "Excess max per paid tx"); if(FREE_MAX_SUPPLY >= totalSupply()){ require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx"); }else{ require(MAX_PER_TX >= _amount , "Excess max per paid tx"); require(_amount * price == msg.value, "Invalid funds provided"); } _safeMint(_caller, _amount); } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function config() external onlyOwner { _safeMint(_msgSender(), 1); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function setMAX_SUPPLY(uint256 newSupply) public onlyOwner { MAX_SUPPLY = newSupply; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 1 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"config","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040527323092a3e90ead1ecc2a81709b75666161d4abef5600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060800160405280605181526020016200483460519139600a908162000083919062000508565b506040518060600160405280603581526020016200488560359139600b9081620000ae919062000508565b506105dc600c556611c37937e08000600d556001600e60006101000a81548160ff021916908315150217905550348015620000e857600080fd5b506040518060400160405280601281526020017f464b4e204f7468657273696465204170657300000000000000000000000000008152506040518060400160405280600681526020017f464b4e4f53410000000000000000000000000000000000000000000000000000815250816002908162000166919062000508565b50806003908162000178919062000508565b5062000189620001b760201b60201c565b6000819055505050620001b1620001a5620001c060201b60201c565b620001c860201b60201c565b620005ef565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031057607f821691505b602082108103620003265762000325620002c8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000351565b6200039c868362000351565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003e9620003e3620003dd84620003b4565b620003be565b620003b4565b9050919050565b6000819050919050565b6200040583620003c8565b6200041d6200041482620003f0565b8484546200035e565b825550505050565b600090565b6200043462000425565b62000441818484620003fa565b505050565b5b8181101562000469576200045d6000826200042a565b60018101905062000447565b5050565b601f821115620004b85762000482816200032c565b6200048d8462000341565b810160208510156200049d578190505b620004b5620004ac8562000341565b83018262000446565b50505b505050565b600082821c905092915050565b6000620004dd60001984600802620004bd565b1980831691505092915050565b6000620004f88383620004ca565b9150826002028217905092915050565b62000513826200028e565b67ffffffffffffffff8111156200052f576200052e62000299565b5b6200053b8254620002f7565b620005488282856200046d565b600060209050601f8311600181146200058057600084156200056b578287015190505b620005778582620004ea565b865550620005e7565b601f19841662000590866200032c565b60005b82811015620005ba5784890151825560018201915060208501945060208101905062000593565b86831015620005da5784890151620005d6601f891682620004ca565b8355505b6001600288020188555050505b505050505050565b61423580620005ff6000396000f3fe6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f4a565b6107f5565b60405161023d9190612f92565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612fd9565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b604051610291919061309f565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906130f7565b610a61565b6040516102ce9190613165565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f991906131ac565b610add565b005b34801561030c57600080fd5b50610315610be7565b60405161032291906131fb565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613216565b610bfe565b005b34801561036057600080fd5b50610369610c0e565b60405161037691906131fb565b60405180910390f35b34801561038b57600080fd5b50610394610c14565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613216565b610dab565b005b3480156103cb57600080fd5b506103d4610dcb565b6040516103e191906131fb565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061339e565b610dd0565b005b34801561041f57600080fd5b50610428610ebe565b6040516104359190612f92565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906130f7565b610ed1565b6040516104729190613165565b60405180910390f35b34801561048757600080fd5b50610490610ee7565b60405161049d919061309f565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906133e7565b610f75565b6040516104da91906131fb565b60405180910390f35b3480156104ef57600080fd5b506104f8611044565b005b34801561050657600080fd5b5061050f6110cc565b005b34801561051d57600080fd5b506105266111bb565b60405161053391906131fb565b60405180910390f35b34801561054857600080fd5b506105516111c1565b60405161055e9190613165565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906130f7565b6111eb565b005b34801561059c57600080fd5b506105b760048036038101906105b2919061339e565b6112d0565b005b3480156105c557600080fd5b506105ce6113be565b6040516105db919061309f565b60405180910390f35b3480156105f057600080fd5b506105f9611450565b60405161060691906131fb565b60405180910390f35b610629600480360381019061062491906130f7565b611456565b005b34801561063757600080fd5b50610652600480360381019061064d9190613414565b6116f9565b005b34801561066057600080fd5b5061067b600480360381019061067691906134f5565b611870565b005b34801561068957600080fd5b506106926118ec565b60405161069f919061309f565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906130f7565b611925565b6040516106dc919061309f565b60405180910390f35b3480156106f157600080fd5b506106fa611a04565b6040516107079190613165565b60405180910390f35b34801561071c57600080fd5b50610725611a1c565b604051610732919061309f565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613578565b611aaa565b60405161076f9190612f92565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906130f7565b611b8e565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906133e7565b611c73565b005b3480156107d657600080fd5b506107df611d6a565b6040516107ec91906131fb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d6f565b5b9050919050565b6108df611dd9565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111c1565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613604565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de90613653565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613653565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611de1565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b4f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6e611dd9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba05750610b9e81610b99611dd9565b611aaa565b155b15610bd7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be2838383611e2f565b505050565b6000610bf1611ee1565b6001546000540303905090565b610c09838383611eea565b505050565b600c5481565b610c1c611dd9565b73ffffffffffffffffffffffffffffffffffffffff16610c3a6111c1565b73ffffffffffffffffffffffffffffffffffffffff161480610cb05750610c5f611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613604565b60405180910390fd5b60004790506000610cfe611dd9565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d21906136b5565b60006040518083038185875af1925050503d8060008114610d5e576040519150601f19603f3d011682016040523d82523d6000602084013e610d63565b606091505b5050905080610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613716565b60405180910390fd5b5050565b610dc683838360405180602001604052806000815250611870565b505050565b601481565b610dd8611dd9565b73ffffffffffffffffffffffffffffffffffffffff16610df66111c1565b73ffffffffffffffffffffffffffffffffffffffff161480610e6c5750610e1b611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290613604565b60405180910390fd5b80600a9081610eba91906138e2565b5050565b600e60009054906101000a900460ff1681565b6000610edc826123d9565b600001519050919050565b600a8054610ef490613653565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2090613653565b8015610f6d5780601f10610f4257610100808354040283529160200191610f6d565b820191906000526020600020905b815481529060010190602001808311610f5057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fdc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61104c611dd9565b73ffffffffffffffffffffffffffffffffffffffff1661106a6111c1565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613604565b60405180910390fd5b6110ca6000612668565b565b6110d4611dd9565b73ffffffffffffffffffffffffffffffffffffffff166110f26111c1565b73ffffffffffffffffffffffffffffffffffffffff1614806111685750611117611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90613604565b60405180910390fd5b6111b96111b2611dd9565b600161272e565b565b6101f481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111f3611dd9565b73ffffffffffffffffffffffffffffffffffffffff166112116111c1565b73ffffffffffffffffffffffffffffffffffffffff1614806112875750611236611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613604565b60405180910390fd5b80600d8190555050565b6112d8611dd9565b73ffffffffffffffffffffffffffffffffffffffff166112f66111c1565b73ffffffffffffffffffffffffffffffffffffffff16148061136c575061131b611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613604565b60405180910390fd5b80600b90816113ba91906138e2565b5050565b6060600380546113cd90613653565b80601f01602080910402602001604051908101604052809291908181526020018280546113f990613653565b80156114465780601f1061141b57610100808354040283529160200191611446565b820191906000526020600020905b81548152906001019060200180831161142957829003601f168201915b5050505050905090565b600d5481565b6000611460611dd9565b9050600e60009054906101000a900460ff16156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613a00565b60405180910390fd5b816114bb610be7565b6114c59190613a4f565b600c541015611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613af1565b60405180910390fd5b6000821161154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613b5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190613bc9565b60405180910390fd5b81603210156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590613c35565b60405180910390fd5b611606610be7565b6101f410611657578160141015611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613ca1565b60405180910390fd5b6116eb565b816032101561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613c35565b60405180910390fd5b34600d54836116aa9190613cc1565b146116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190613d67565b60405180910390fd5b5b6116f5818361272e565b5050565b611701611dd9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611765576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611772611dd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661181f611dd9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118649190612f92565b60405180910390a35050565b61187b848484611eea565b61189a8373ffffffffffffffffffffffffffffffffffffffff1661274c565b80156118af57506118ad8484848461276f565b155b156118e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061193082611de1565b61196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613dd3565b60405180910390fd5b6001600a805461197e90613653565b90501161199a57604051806020016040528060008152506119fd565b600a6119a5836128bf565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119ed93929190613eb2565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b8054611a2990613653565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5590613653565b8015611aa25780601f10611a7757610100808354040283529160200191611aa2565b820191906000526020600020905b815481529060010190602001808311611a8557829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b149190613165565b602060405180830381865afa158015611b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b559190613f21565b73ffffffffffffffffffffffffffffffffffffffff1603611b7a576001915050611b88565b611b848484612a1f565b9150505b92915050565b611b96611dd9565b73ffffffffffffffffffffffffffffffffffffffff16611bb46111c1565b73ffffffffffffffffffffffffffffffffffffffff161480611c2a5750611bd9611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613604565b60405180910390fd5b80600c8190555050565b611c7b611dd9565b73ffffffffffffffffffffffffffffffffffffffff16611c996111c1565b73ffffffffffffffffffffffffffffffffffffffff1614611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613fc0565b60405180910390fd5b611d6781612668565b50565b603281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611dec611ee1565b11158015611dfb575060005482105b8015611e28575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ef5826123d9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f1c611dd9565b73ffffffffffffffffffffffffffffffffffffffff161480611f4f5750611f4e8260000151611f49611dd9565b611aaa565b5b80611f945750611f5d611dd9565b73ffffffffffffffffffffffffffffffffffffffff16611f7c84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fcd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612036576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361209c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120a98585856001612ab3565b6120b96000848460000151611e2f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612369576000548110156123685782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123d28585856001612ab9565b5050505050565b6123e1612e9b565b6000829050806123ef611ee1565b111580156123fe575060005481105b15612631576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161262f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612513578092505050612663565b5b60011561262e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612629578092505050612663565b612514565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612748828260405180602001604052806000815250612abf565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612795611dd9565b8786866040518563ffffffff1660e01b81526004016127b79493929190614035565b6020604051808303816000875af19250505080156127f357506040513d601f19601f820116820180604052508101906127f09190614096565b60015b61286c573d8060008114612823576040519150601f19603f3d011682016040523d82523d6000602084013e612828565b606091505b506000815103612864576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612906576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a1a565b600082905060005b60008214612938578080612921906140c3565b915050600a82612931919061413a565b915061290e565b60008167ffffffffffffffff81111561295457612953613273565b5b6040519080825280601f01601f1916602001820160405280156129865781602001600182028036833780820191505090505b5090505b60008514612a135760018261299f919061416b565b9150600a856129ae919061419f565b60306129ba9190613a4f565b60f81b8183815181106129d0576129cf6141d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a0c919061413a565b945061298a565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612acc8383836001612ad1565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612b3d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612b77576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b846000868387612ab3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d4e5750612d4d8773ffffffffffffffffffffffffffffffffffffffff1661274c565b5b15612e13575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dc3600088848060010195508861276f565b612df9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612d54578260005414612e0e57600080fd5b612e7e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612e14575b816000819055505050612e946000868387612ab9565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f2781612ef2565b8114612f3257600080fd5b50565b600081359050612f4481612f1e565b92915050565b600060208284031215612f6057612f5f612ee8565b5b6000612f6e84828501612f35565b91505092915050565b60008115159050919050565b612f8c81612f77565b82525050565b6000602082019050612fa76000830184612f83565b92915050565b612fb681612f77565b8114612fc157600080fd5b50565b600081359050612fd381612fad565b92915050565b600060208284031215612fef57612fee612ee8565b5b6000612ffd84828501612fc4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613040578082015181840152602081019050613025565b8381111561304f576000848401525b50505050565b6000601f19601f8301169050919050565b600061307182613006565b61307b8185613011565b935061308b818560208601613022565b61309481613055565b840191505092915050565b600060208201905081810360008301526130b98184613066565b905092915050565b6000819050919050565b6130d4816130c1565b81146130df57600080fd5b50565b6000813590506130f1816130cb565b92915050565b60006020828403121561310d5761310c612ee8565b5b600061311b848285016130e2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061314f82613124565b9050919050565b61315f81613144565b82525050565b600060208201905061317a6000830184613156565b92915050565b61318981613144565b811461319457600080fd5b50565b6000813590506131a681613180565b92915050565b600080604083850312156131c3576131c2612ee8565b5b60006131d185828601613197565b92505060206131e2858286016130e2565b9150509250929050565b6131f5816130c1565b82525050565b600060208201905061321060008301846131ec565b92915050565b60008060006060848603121561322f5761322e612ee8565b5b600061323d86828701613197565b935050602061324e86828701613197565b925050604061325f868287016130e2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132ab82613055565b810181811067ffffffffffffffff821117156132ca576132c9613273565b5b80604052505050565b60006132dd612ede565b90506132e982826132a2565b919050565b600067ffffffffffffffff82111561330957613308613273565b5b61331282613055565b9050602081019050919050565b82818337600083830152505050565b600061334161333c846132ee565b6132d3565b90508281526020810184848401111561335d5761335c61326e565b5b61336884828561331f565b509392505050565b600082601f83011261338557613384613269565b5b813561339584826020860161332e565b91505092915050565b6000602082840312156133b4576133b3612ee8565b5b600082013567ffffffffffffffff8111156133d2576133d1612eed565b5b6133de84828501613370565b91505092915050565b6000602082840312156133fd576133fc612ee8565b5b600061340b84828501613197565b91505092915050565b6000806040838503121561342b5761342a612ee8565b5b600061343985828601613197565b925050602061344a85828601612fc4565b9150509250929050565b600067ffffffffffffffff82111561346f5761346e613273565b5b61347882613055565b9050602081019050919050565b600061349861349384613454565b6132d3565b9050828152602081018484840111156134b4576134b361326e565b5b6134bf84828561331f565b509392505050565b600082601f8301126134dc576134db613269565b5b81356134ec848260208601613485565b91505092915050565b6000806000806080858703121561350f5761350e612ee8565b5b600061351d87828801613197565b945050602061352e87828801613197565b935050604061353f878288016130e2565b925050606085013567ffffffffffffffff8111156135605761355f612eed565b5b61356c878288016134c7565b91505092959194509250565b6000806040838503121561358f5761358e612ee8565b5b600061359d85828601613197565b92505060206135ae85828601613197565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135ee602083613011565b91506135f9826135b8565b602082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061366b57607f821691505b60208210810361367e5761367d613624565b5b50919050565b600081905092915050565b50565b600061369f600083613684565b91506136aa8261368f565b600082019050919050565b60006136c082613692565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000613700600e83613011565b915061370b826136ca565b602082019050919050565b6000602082019050818103600083015261372f816136f3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137987fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261375b565b6137a2868361375b565b95508019841693508086168417925050509392505050565b6000819050919050565b60006137df6137da6137d5846130c1565b6137ba565b6130c1565b9050919050565b6000819050919050565b6137f9836137c4565b61380d613805826137e6565b848454613768565b825550505050565b600090565b613822613815565b61382d8184846137f0565b505050565b5b818110156138515761384660008261381a565b600181019050613833565b5050565b601f8211156138965761386781613736565b6138708461374b565b8101602085101561387f578190505b61389361388b8561374b565b830182613832565b50505b505050565b600082821c905092915050565b60006138b96000198460080261389b565b1980831691505092915050565b60006138d283836138a8565b9150826002028217905092915050565b6138eb82613006565b67ffffffffffffffff81111561390457613903613273565b5b61390e8254613653565b613919828285613855565b600060209050601f83116001811461394c576000841561393a578287015190505b61394485826138c6565b8655506139ac565b601f19841661395a86613736565b60005b828110156139825784890151825560018201915060208501945060208101905061395d565b8683101561399f578489015161399b601f8916826138a8565b8355505b6001600288020188555050505b505050505050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006139ea600683613011565b91506139f5826139b4565b602082019050919050565b60006020820190508181036000830152613a19816139dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a5a826130c1565b9150613a65836130c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9a57613a99613a20565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613adb601283613011565b9150613ae682613aa5565b602082019050919050565b60006020820190508181036000830152613b0a81613ace565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613b47600a83613011565b9150613b5282613b11565b602082019050919050565b60006020820190508181036000830152613b7681613b3a565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613bb3600c83613011565b9150613bbe82613b7d565b602082019050919050565b60006020820190508181036000830152613be281613ba6565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613c1f601683613011565b9150613c2a82613be9565b602082019050919050565b60006020820190508181036000830152613c4e81613c12565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613c8b601683613011565b9150613c9682613c55565b602082019050919050565b60006020820190508181036000830152613cba81613c7e565b9050919050565b6000613ccc826130c1565b9150613cd7836130c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d1057613d0f613a20565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613d51601683613011565b9150613d5c82613d1b565b602082019050919050565b60006020820190508181036000830152613d8081613d44565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613dbd601583613011565b9150613dc882613d87565b602082019050919050565b60006020820190508181036000830152613dec81613db0565b9050919050565b600081905092915050565b60008154613e0b81613653565b613e158186613df3565b94506001821660008114613e305760018114613e4557613e78565b60ff1983168652811515820286019350613e78565b613e4e85613736565b60005b83811015613e7057815481890152600182019150602081019050613e51565b838801955050505b50505092915050565b6000613e8c82613006565b613e968185613df3565b9350613ea6818560208601613022565b80840191505092915050565b6000613ebe8286613dfe565b9150613eca8285613e81565b9150613ed68284613e81565b9150819050949350505050565b6000613eee82613144565b9050919050565b613efe81613ee3565b8114613f0957600080fd5b50565b600081519050613f1b81613ef5565b92915050565b600060208284031215613f3757613f36612ee8565b5b6000613f4584828501613f0c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613faa602683613011565b9150613fb582613f4e565b604082019050919050565b60006020820190508181036000830152613fd981613f9d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061400782613fe0565b6140118185613feb565b9350614021818560208601613022565b61402a81613055565b840191505092915050565b600060808201905061404a6000830187613156565b6140576020830186613156565b61406460408301856131ec565b81810360608301526140768184613ffc565b905095945050505050565b60008151905061409081612f1e565b92915050565b6000602082840312156140ac576140ab612ee8565b5b60006140ba84828501614081565b91505092915050565b60006140ce826130c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614100576140ff613a20565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614145826130c1565b9150614150836130c1565b9250826141605761415f61410b565b5b828204905092915050565b6000614176826130c1565b9150614181836130c1565b92508282101561419457614193613a20565b5b828203905092915050565b60006141aa826130c1565b91506141b5836130c1565b9250826141c5576141c461410b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206e037db1f67b5796e91880523abe63d4fd9e12a3ad222af3a308d46552dc129964736f6c634300080f003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5531716a4d525a474e7a7541435a4d45674d46364a4c6432413739386e38384561364a63655a4553394d70452f697066733a2f2f516d4e734852426a5a56365467594a47774135656f5036716477656a587535384869456a466275746d3638484555
Deployed Bytecode
0x6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f4a565b6107f5565b60405161023d9190612f92565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612fd9565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b604051610291919061309f565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906130f7565b610a61565b6040516102ce9190613165565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f991906131ac565b610add565b005b34801561030c57600080fd5b50610315610be7565b60405161032291906131fb565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613216565b610bfe565b005b34801561036057600080fd5b50610369610c0e565b60405161037691906131fb565b60405180910390f35b34801561038b57600080fd5b50610394610c14565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613216565b610dab565b005b3480156103cb57600080fd5b506103d4610dcb565b6040516103e191906131fb565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061339e565b610dd0565b005b34801561041f57600080fd5b50610428610ebe565b6040516104359190612f92565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906130f7565b610ed1565b6040516104729190613165565b60405180910390f35b34801561048757600080fd5b50610490610ee7565b60405161049d919061309f565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906133e7565b610f75565b6040516104da91906131fb565b60405180910390f35b3480156104ef57600080fd5b506104f8611044565b005b34801561050657600080fd5b5061050f6110cc565b005b34801561051d57600080fd5b506105266111bb565b60405161053391906131fb565b60405180910390f35b34801561054857600080fd5b506105516111c1565b60405161055e9190613165565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906130f7565b6111eb565b005b34801561059c57600080fd5b506105b760048036038101906105b2919061339e565b6112d0565b005b3480156105c557600080fd5b506105ce6113be565b6040516105db919061309f565b60405180910390f35b3480156105f057600080fd5b506105f9611450565b60405161060691906131fb565b60405180910390f35b610629600480360381019061062491906130f7565b611456565b005b34801561063757600080fd5b50610652600480360381019061064d9190613414565b6116f9565b005b34801561066057600080fd5b5061067b600480360381019061067691906134f5565b611870565b005b34801561068957600080fd5b506106926118ec565b60405161069f919061309f565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906130f7565b611925565b6040516106dc919061309f565b60405180910390f35b3480156106f157600080fd5b506106fa611a04565b6040516107079190613165565b60405180910390f35b34801561071c57600080fd5b50610725611a1c565b604051610732919061309f565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613578565b611aaa565b60405161076f9190612f92565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906130f7565b611b8e565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906133e7565b611c73565b005b3480156107d657600080fd5b506107df611d6a565b6040516107ec91906131fb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d6f565b5b9050919050565b6108df611dd9565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111c1565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613604565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de90613653565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613653565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611de1565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b4f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6e611dd9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba05750610b9e81610b99611dd9565b611aaa565b155b15610bd7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be2838383611e2f565b505050565b6000610bf1611ee1565b6001546000540303905090565b610c09838383611eea565b505050565b600c5481565b610c1c611dd9565b73ffffffffffffffffffffffffffffffffffffffff16610c3a6111c1565b73ffffffffffffffffffffffffffffffffffffffff161480610cb05750610c5f611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613604565b60405180910390fd5b60004790506000610cfe611dd9565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d21906136b5565b60006040518083038185875af1925050503d8060008114610d5e576040519150601f19603f3d011682016040523d82523d6000602084013e610d63565b606091505b5050905080610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613716565b60405180910390fd5b5050565b610dc683838360405180602001604052806000815250611870565b505050565b601481565b610dd8611dd9565b73ffffffffffffffffffffffffffffffffffffffff16610df66111c1565b73ffffffffffffffffffffffffffffffffffffffff161480610e6c5750610e1b611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290613604565b60405180910390fd5b80600a9081610eba91906138e2565b5050565b600e60009054906101000a900460ff1681565b6000610edc826123d9565b600001519050919050565b600a8054610ef490613653565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2090613653565b8015610f6d5780601f10610f4257610100808354040283529160200191610f6d565b820191906000526020600020905b815481529060010190602001808311610f5057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fdc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61104c611dd9565b73ffffffffffffffffffffffffffffffffffffffff1661106a6111c1565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613604565b60405180910390fd5b6110ca6000612668565b565b6110d4611dd9565b73ffffffffffffffffffffffffffffffffffffffff166110f26111c1565b73ffffffffffffffffffffffffffffffffffffffff1614806111685750611117611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90613604565b60405180910390fd5b6111b96111b2611dd9565b600161272e565b565b6101f481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111f3611dd9565b73ffffffffffffffffffffffffffffffffffffffff166112116111c1565b73ffffffffffffffffffffffffffffffffffffffff1614806112875750611236611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613604565b60405180910390fd5b80600d8190555050565b6112d8611dd9565b73ffffffffffffffffffffffffffffffffffffffff166112f66111c1565b73ffffffffffffffffffffffffffffffffffffffff16148061136c575061131b611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613604565b60405180910390fd5b80600b90816113ba91906138e2565b5050565b6060600380546113cd90613653565b80601f01602080910402602001604051908101604052809291908181526020018280546113f990613653565b80156114465780601f1061141b57610100808354040283529160200191611446565b820191906000526020600020905b81548152906001019060200180831161142957829003601f168201915b5050505050905090565b600d5481565b6000611460611dd9565b9050600e60009054906101000a900460ff16156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613a00565b60405180910390fd5b816114bb610be7565b6114c59190613a4f565b600c541015611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613af1565b60405180910390fd5b6000821161154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613b5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190613bc9565b60405180910390fd5b81603210156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590613c35565b60405180910390fd5b611606610be7565b6101f410611657578160141015611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613ca1565b60405180910390fd5b6116eb565b816032101561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613c35565b60405180910390fd5b34600d54836116aa9190613cc1565b146116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190613d67565b60405180910390fd5b5b6116f5818361272e565b5050565b611701611dd9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611765576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611772611dd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661181f611dd9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118649190612f92565b60405180910390a35050565b61187b848484611eea565b61189a8373ffffffffffffffffffffffffffffffffffffffff1661274c565b80156118af57506118ad8484848461276f565b155b156118e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061193082611de1565b61196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613dd3565b60405180910390fd5b6001600a805461197e90613653565b90501161199a57604051806020016040528060008152506119fd565b600a6119a5836128bf565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119ed93929190613eb2565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b8054611a2990613653565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5590613653565b8015611aa25780601f10611a7757610100808354040283529160200191611aa2565b820191906000526020600020905b815481529060010190602001808311611a8557829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b149190613165565b602060405180830381865afa158015611b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b559190613f21565b73ffffffffffffffffffffffffffffffffffffffff1603611b7a576001915050611b88565b611b848484612a1f565b9150505b92915050565b611b96611dd9565b73ffffffffffffffffffffffffffffffffffffffff16611bb46111c1565b73ffffffffffffffffffffffffffffffffffffffff161480611c2a5750611bd9611dd9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613604565b60405180910390fd5b80600c8190555050565b611c7b611dd9565b73ffffffffffffffffffffffffffffffffffffffff16611c996111c1565b73ffffffffffffffffffffffffffffffffffffffff1614611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613fc0565b60405180910390fd5b611d6781612668565b50565b603281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611dec611ee1565b11158015611dfb575060005482105b8015611e28575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ef5826123d9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f1c611dd9565b73ffffffffffffffffffffffffffffffffffffffff161480611f4f5750611f4e8260000151611f49611dd9565b611aaa565b5b80611f945750611f5d611dd9565b73ffffffffffffffffffffffffffffffffffffffff16611f7c84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fcd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612036576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361209c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120a98585856001612ab3565b6120b96000848460000151611e2f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612369576000548110156123685782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123d28585856001612ab9565b5050505050565b6123e1612e9b565b6000829050806123ef611ee1565b111580156123fe575060005481105b15612631576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161262f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612513578092505050612663565b5b60011561262e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612629578092505050612663565b612514565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612748828260405180602001604052806000815250612abf565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612795611dd9565b8786866040518563ffffffff1660e01b81526004016127b79493929190614035565b6020604051808303816000875af19250505080156127f357506040513d601f19601f820116820180604052508101906127f09190614096565b60015b61286c573d8060008114612823576040519150601f19603f3d011682016040523d82523d6000602084013e612828565b606091505b506000815103612864576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612906576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a1a565b600082905060005b60008214612938578080612921906140c3565b915050600a82612931919061413a565b915061290e565b60008167ffffffffffffffff81111561295457612953613273565b5b6040519080825280601f01601f1916602001820160405280156129865781602001600182028036833780820191505090505b5090505b60008514612a135760018261299f919061416b565b9150600a856129ae919061419f565b60306129ba9190613a4f565b60f81b8183815181106129d0576129cf6141d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a0c919061413a565b945061298a565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612acc8383836001612ad1565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612b3d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612b77576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b846000868387612ab3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d4e5750612d4d8773ffffffffffffffffffffffffffffffffffffffff1661274c565b5b15612e13575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dc3600088848060010195508861276f565b612df9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612d54578260005414612e0e57600080fd5b612e7e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612e14575b816000819055505050612e946000868387612ab9565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f2781612ef2565b8114612f3257600080fd5b50565b600081359050612f4481612f1e565b92915050565b600060208284031215612f6057612f5f612ee8565b5b6000612f6e84828501612f35565b91505092915050565b60008115159050919050565b612f8c81612f77565b82525050565b6000602082019050612fa76000830184612f83565b92915050565b612fb681612f77565b8114612fc157600080fd5b50565b600081359050612fd381612fad565b92915050565b600060208284031215612fef57612fee612ee8565b5b6000612ffd84828501612fc4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613040578082015181840152602081019050613025565b8381111561304f576000848401525b50505050565b6000601f19601f8301169050919050565b600061307182613006565b61307b8185613011565b935061308b818560208601613022565b61309481613055565b840191505092915050565b600060208201905081810360008301526130b98184613066565b905092915050565b6000819050919050565b6130d4816130c1565b81146130df57600080fd5b50565b6000813590506130f1816130cb565b92915050565b60006020828403121561310d5761310c612ee8565b5b600061311b848285016130e2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061314f82613124565b9050919050565b61315f81613144565b82525050565b600060208201905061317a6000830184613156565b92915050565b61318981613144565b811461319457600080fd5b50565b6000813590506131a681613180565b92915050565b600080604083850312156131c3576131c2612ee8565b5b60006131d185828601613197565b92505060206131e2858286016130e2565b9150509250929050565b6131f5816130c1565b82525050565b600060208201905061321060008301846131ec565b92915050565b60008060006060848603121561322f5761322e612ee8565b5b600061323d86828701613197565b935050602061324e86828701613197565b925050604061325f868287016130e2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132ab82613055565b810181811067ffffffffffffffff821117156132ca576132c9613273565b5b80604052505050565b60006132dd612ede565b90506132e982826132a2565b919050565b600067ffffffffffffffff82111561330957613308613273565b5b61331282613055565b9050602081019050919050565b82818337600083830152505050565b600061334161333c846132ee565b6132d3565b90508281526020810184848401111561335d5761335c61326e565b5b61336884828561331f565b509392505050565b600082601f83011261338557613384613269565b5b813561339584826020860161332e565b91505092915050565b6000602082840312156133b4576133b3612ee8565b5b600082013567ffffffffffffffff8111156133d2576133d1612eed565b5b6133de84828501613370565b91505092915050565b6000602082840312156133fd576133fc612ee8565b5b600061340b84828501613197565b91505092915050565b6000806040838503121561342b5761342a612ee8565b5b600061343985828601613197565b925050602061344a85828601612fc4565b9150509250929050565b600067ffffffffffffffff82111561346f5761346e613273565b5b61347882613055565b9050602081019050919050565b600061349861349384613454565b6132d3565b9050828152602081018484840111156134b4576134b361326e565b5b6134bf84828561331f565b509392505050565b600082601f8301126134dc576134db613269565b5b81356134ec848260208601613485565b91505092915050565b6000806000806080858703121561350f5761350e612ee8565b5b600061351d87828801613197565b945050602061352e87828801613197565b935050604061353f878288016130e2565b925050606085013567ffffffffffffffff8111156135605761355f612eed565b5b61356c878288016134c7565b91505092959194509250565b6000806040838503121561358f5761358e612ee8565b5b600061359d85828601613197565b92505060206135ae85828601613197565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135ee602083613011565b91506135f9826135b8565b602082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061366b57607f821691505b60208210810361367e5761367d613624565b5b50919050565b600081905092915050565b50565b600061369f600083613684565b91506136aa8261368f565b600082019050919050565b60006136c082613692565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000613700600e83613011565b915061370b826136ca565b602082019050919050565b6000602082019050818103600083015261372f816136f3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137987fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261375b565b6137a2868361375b565b95508019841693508086168417925050509392505050565b6000819050919050565b60006137df6137da6137d5846130c1565b6137ba565b6130c1565b9050919050565b6000819050919050565b6137f9836137c4565b61380d613805826137e6565b848454613768565b825550505050565b600090565b613822613815565b61382d8184846137f0565b505050565b5b818110156138515761384660008261381a565b600181019050613833565b5050565b601f8211156138965761386781613736565b6138708461374b565b8101602085101561387f578190505b61389361388b8561374b565b830182613832565b50505b505050565b600082821c905092915050565b60006138b96000198460080261389b565b1980831691505092915050565b60006138d283836138a8565b9150826002028217905092915050565b6138eb82613006565b67ffffffffffffffff81111561390457613903613273565b5b61390e8254613653565b613919828285613855565b600060209050601f83116001811461394c576000841561393a578287015190505b61394485826138c6565b8655506139ac565b601f19841661395a86613736565b60005b828110156139825784890151825560018201915060208501945060208101905061395d565b8683101561399f578489015161399b601f8916826138a8565b8355505b6001600288020188555050505b505050505050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006139ea600683613011565b91506139f5826139b4565b602082019050919050565b60006020820190508181036000830152613a19816139dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a5a826130c1565b9150613a65836130c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9a57613a99613a20565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613adb601283613011565b9150613ae682613aa5565b602082019050919050565b60006020820190508181036000830152613b0a81613ace565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613b47600a83613011565b9150613b5282613b11565b602082019050919050565b60006020820190508181036000830152613b7681613b3a565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613bb3600c83613011565b9150613bbe82613b7d565b602082019050919050565b60006020820190508181036000830152613be281613ba6565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613c1f601683613011565b9150613c2a82613be9565b602082019050919050565b60006020820190508181036000830152613c4e81613c12565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613c8b601683613011565b9150613c9682613c55565b602082019050919050565b60006020820190508181036000830152613cba81613c7e565b9050919050565b6000613ccc826130c1565b9150613cd7836130c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d1057613d0f613a20565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613d51601683613011565b9150613d5c82613d1b565b602082019050919050565b60006020820190508181036000830152613d8081613d44565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613dbd601583613011565b9150613dc882613d87565b602082019050919050565b60006020820190508181036000830152613dec81613db0565b9050919050565b600081905092915050565b60008154613e0b81613653565b613e158186613df3565b94506001821660008114613e305760018114613e4557613e78565b60ff1983168652811515820286019350613e78565b613e4e85613736565b60005b83811015613e7057815481890152600182019150602081019050613e51565b838801955050505b50505092915050565b6000613e8c82613006565b613e968185613df3565b9350613ea6818560208601613022565b80840191505092915050565b6000613ebe8286613dfe565b9150613eca8285613e81565b9150613ed68284613e81565b9150819050949350505050565b6000613eee82613144565b9050919050565b613efe81613ee3565b8114613f0957600080fd5b50565b600081519050613f1b81613ef5565b92915050565b600060208284031215613f3757613f36612ee8565b5b6000613f4584828501613f0c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613faa602683613011565b9150613fb582613f4e565b604082019050919050565b60006020820190508181036000830152613fd981613f9d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061400782613fe0565b6140118185613feb565b9350614021818560208601613022565b61402a81613055565b840191505092915050565b600060808201905061404a6000830187613156565b6140576020830186613156565b61406460408301856131ec565b81810360608301526140768184613ffc565b905095945050505050565b60008151905061409081612f1e565b92915050565b6000602082840312156140ac576140ab612ee8565b5b60006140ba84828501614081565b91505092915050565b60006140ce826130c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614100576140ff613a20565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614145826130c1565b9150614150836130c1565b9250826141605761415f61410b565b5b828204905092915050565b6000614176826130c1565b9150614181836130c1565b92508282101561419457614193613a20565b5b828203905092915050565b60006141aa826130c1565b91506141b5836130c1565b9250826141c5576141c461410b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206e037db1f67b5796e91880523abe63d4fd9e12a3ad222af3a308d46552dc129964736f6c634300080f0033
Deployed Bytecode Sourcemap
45425:3126:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27958:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47661:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31343:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32846:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32409:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27207:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33703:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45980:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47354:209;;;;;;;;;;;;;:::i;:::-;;33944:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45831:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47750:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46062:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31152:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45476:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28327:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2157:103;;;;;;;;;;;;;:::i;:::-;;47571:82;;;;;;;;;;;;;:::i;:::-;;45882:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1506:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47982:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47858:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31512:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46019:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46160:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33122:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34200:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45680:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48186:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45733:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45590:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46901:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48078:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2415:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45934:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27958:305;28060:4;28112:25;28097:40;;;:11;:40;;;;:105;;;;28169:33;28154:48;;;:11;:48;;;;28097:105;:158;;;;28219:36;28243:11;28219:23;:36::i;:::-;28097:158;28077:178;;27958:305;;;:::o;47661:81::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24465:12;:10;:12::i;:::-;24455:22;;:6;;;;;;;;;;;:22;;;24428:49;24420:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47728:6:::1;47719;;:15;;;;;;;;;;;;;;;;;;47661:81:::0;:::o;31343:100::-;31397:13;31430:5;31423:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31343:100;:::o;32846:204::-;32914:7;32939:16;32947:7;32939;:16::i;:::-;32934:64;;32964:34;;;;;;;;;;;;;;32934:64;33018:15;:24;33034:7;33018:24;;;;;;;;;;;;;;;;;;;;;33011:31;;32846:204;;;:::o;32409:371::-;32482:13;32498:24;32514:7;32498:15;:24::i;:::-;32482:40;;32543:5;32537:11;;:2;:11;;;32533:48;;32557:24;;;;;;;;;;;;;;32533:48;32614:5;32598:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32624:37;32641:5;32648:12;:10;:12::i;:::-;32624:16;:37::i;:::-;32623:38;32598:63;32594:138;;;32685:35;;;;;;;;;;;;;;32594:138;32744:28;32753:2;32757:7;32766:5;32744:8;:28::i;:::-;32471:309;32409:371;;:::o;27207:303::-;27251:7;27476:15;:13;:15::i;:::-;27461:12;;27445:13;;:28;:46;27438:53;;27207:303;:::o;33703:170::-;33837:28;33847:4;33853:2;33857:7;33837:9;:28::i;:::-;33703:170;;;:::o;45980:32::-;;;;:::o;47354:209::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24465:12;:10;:12::i;:::-;24455:22;;:6;;;;;;;;;;;:22;;;24428:49;24420:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47404:15:::1;47422:21;47404:39;;47455:12;47473;:10;:12::i;:::-;:17;;47498:7;47473:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47454:56;;;47529:7;47521:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47393:170;;47354:209::o:0;33944:185::-;34082:39;34099:4;34105:2;34109:7;34082:39;;;;;;;;;;;;:16;:39::i;:::-;33944:185;;;:::o;45831:44::-;45873:2;45831:44;:::o;47750:100::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24465:12;:10;:12::i;:::-;24455:22;;:6;;;;;;;;;;;:22;;;24428:49;24420:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47834:8:::1;47824:7;:18;;;;;;:::i;:::-;;47750:100:::0;:::o;46062:25::-;;;;;;;;;;;;;:::o;31152:124::-;31216:7;31243:20;31255:7;31243:11;:20::i;:::-;:25;;;31236:32;;31152:124;;;:::o;45476:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28327:206::-;28391:7;28432:1;28415:19;;:5;:19;;;28411:60;;28443:28;;;;;;;;;;;;;;28411:60;28497:12;:19;28510:5;28497:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28489:36;;28482:43;;28327:206;;;:::o;2157:103::-;1737:12;:10;:12::i;:::-;1726:23;;:7;:5;:7::i;:::-;:23;;;1718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2222:30:::1;2249:1;2222:18;:30::i;:::-;2157:103::o:0;47571:82::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24465:12;:10;:12::i;:::-;24455:22;;:6;;;;;;;;;;;:22;;;24428:49;24420:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47619:26:::1;47629:12;:10;:12::i;:::-;47643:1;47619:9;:26::i;:::-;47571:82::o:0;45882:45::-;45924:3;45882:45;:::o;1506:87::-;1552:7;1579:6;;;;;;;;;;;1572:13;;1506:87;:::o;47982:88::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24465:12;:10;:12::i;:::-;24455:22;;:6;;;;;;;;;;;:22;;;24428:49;24420:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48054:8:::1;48046:5;:16;;;;47982:88:::0;:::o;47858:116::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24465:12;:10;:12::i;:::-;24455:22;;:6;;;;;;;;;;;:22;;;24428:49;24420:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47954:12:::1;47940:11;:26;;;;;;:::i;:::-;;47858:116:::0;:::o;31512:104::-;31568:13;31601:7;31594:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31512:104;:::o;46019:34::-;;;;:::o;46160:733::-;46219:15;46237:12;:10;:12::i;:::-;46219:30;;46269:6;;;;;;;;;;;46268:7;46260:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46335:7;46319:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46305:10;;:37;;46297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46394:1;46384:7;:11;46376:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46442:7;46429:20;;:9;:20;;;46421:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46499:7;45971:2;46485:21;;46477:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46575:13;:11;:13::i;:::-;45924:3;46556:32;46553:291;;46631:7;45873:2;46612:26;;46604:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46553:291;;;46719:7;45971:2;46705:21;;46697:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46796:9;46787:5;;46777:7;:15;;;;:::i;:::-;:28;46769:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46553:291;46858:27;46868:7;46877;46858:9;:27::i;:::-;46208:685;46160:733;:::o;33122:279::-;33225:12;:10;:12::i;:::-;33213:24;;:8;:24;;;33209:54;;33246:17;;;;;;;;;;;;;;33209:54;33321:8;33276:18;:32;33295:12;:10;:12::i;:::-;33276:32;;;;;;;;;;;;;;;:42;33309:8;33276:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33374:8;33345:48;;33360:12;:10;:12::i;:::-;33345:48;;;33384:8;33345:48;;;;;;:::i;:::-;;;;;;;;33122:279;;:::o;34200:369::-;34367:28;34377:4;34383:2;34387:7;34367:9;:28::i;:::-;34410:15;:2;:13;;;:15::i;:::-;:76;;;;;34430:56;34461:4;34467:2;34471:7;34480:5;34430:30;:56::i;:::-;34429:57;34410:76;34406:156;;;34510:40;;;;;;;;;;;;;;34406:156;34200:369;;;;:::o;45680:46::-;;;;;;;;;;;;;;;;;;;:::o;48186:362::-;48252:13;48286:17;48294:8;48286:7;:17::i;:::-;48278:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48371:1;48353:7;48347:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;48429:7;48453:26;48470:8;48453:16;:26::i;:::-;48496:13;;;;;;;;;;;;;;;;;48396:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48347:193;48340:200;;48186:362;;;:::o;45733:89::-;45780:42;45733:89;:::o;45590:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46901:445::-;47026:4;47111:27;45780:42;47111:65;;47232:8;47191:49;;47199:13;:21;;;47221:5;47199:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47191:49;;;47187:93;;47264:4;47257:11;;;;;47187:93;47299:39;47322:5;47329:8;47299:22;:39::i;:::-;47292:46;;;46901:445;;;;;:::o;48078:100::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24465:12;:10;:12::i;:::-;24455:22;;:6;;;;;;;;;;;:22;;;24428:49;24420:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48161:9:::1;48148:10;:22;;;;48078:100:::0;:::o;2415:201::-;1737:12;:10;:12::i;:::-;1726:23;;:7;:5;:7::i;:::-;:23;;;1718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2524:1:::1;2504:22;;:8;:22;;::::0;2496:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2580:28;2599:8;2580:18;:28::i;:::-;2415:201:::0;:::o;45934:39::-;45971:2;45934:39;:::o;23060:157::-;23145:4;23184:25;23169:40;;;:11;:40;;;;23162:47;;23060:157;;;:::o;247:98::-;300:7;327:10;320:17;;247:98;:::o;34824:187::-;34881:4;34924:7;34905:15;:13;:15::i;:::-;:26;;:53;;;;;34945:13;;34935:7;:23;34905:53;:98;;;;;34976:11;:20;34988:7;34976:20;;;;;;;;;;;:27;;;;;;;;;;;;34975:28;34905:98;34898:105;;34824:187;;;:::o;42435:196::-;42577:2;42550:15;:24;42566:7;42550:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42615:7;42611:2;42595:28;;42604:5;42595:28;;;;;;;;;;;;42435:196;;;:::o;26931:92::-;26987:7;27014:1;27007:8;;26931:92;:::o;37937:2112::-;38052:35;38090:20;38102:7;38090:11;:20::i;:::-;38052:58;;38123:22;38165:13;:18;;;38149:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38200:50;38217:13;:18;;;38237:12;:10;:12::i;:::-;38200:16;:50::i;:::-;38149:101;:154;;;;38291:12;:10;:12::i;:::-;38267:36;;:20;38279:7;38267:11;:20::i;:::-;:36;;;38149:154;38123:181;;38322:17;38317:66;;38348:35;;;;;;;;;;;;;;38317:66;38420:4;38398:26;;:13;:18;;;:26;;;38394:67;;38433:28;;;;;;;;;;;;;;38394:67;38490:1;38476:16;;:2;:16;;;38472:52;;38501:23;;;;;;;;;;;;;;38472:52;38537:43;38559:4;38565:2;38569:7;38578:1;38537:21;:43::i;:::-;38645:49;38662:1;38666:7;38675:13;:18;;;38645:8;:49::i;:::-;39020:1;38990:12;:18;39003:4;38990:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39064:1;39036:12;:16;39049:2;39036:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39110:2;39082:11;:20;39094:7;39082:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39172:15;39127:11;:20;39139:7;39127:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39440:19;39472:1;39462:7;:11;39440:33;;39533:1;39492:43;;:11;:24;39504:11;39492:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39488:445;;39717:13;;39703:11;:27;39699:219;;;39787:13;:18;;;39755:11;:24;39767:11;39755:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;39870:13;:28;;;39828:11;:24;39840:11;39828:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;39699:219;39488:445;38965:979;39980:7;39976:2;39961:27;;39970:4;39961:27;;;;;;;;;;;;39999:42;40020:4;40026:2;40030:7;40039:1;39999:20;:42::i;:::-;38041:2008;;37937:2112;;;:::o;29982:1108::-;30043:21;;:::i;:::-;30077:12;30092:7;30077:22;;30160:4;30141:15;:13;:15::i;:::-;:23;;:47;;;;;30175:13;;30168:4;:20;30141:47;30137:886;;;30209:31;30243:11;:17;30255:4;30243:17;;;;;;;;;;;30209:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30284:9;:16;;;30279:729;;30355:1;30329:28;;:9;:14;;;:28;;;30325:101;;30393:9;30386:16;;;;;;30325:101;30728:261;30735:4;30728:261;;;30768:6;;;;;;;;30813:11;:17;30825:4;30813:17;;;;;;;;;;;30801:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30887:1;30861:28;;:9;:14;;;:28;;;30857:109;;30929:9;30922:16;;;;;;30857:109;30728:261;;;30279:729;30190:833;30137:886;31051:31;;;;;;;;;;;;;;29982:1108;;;;:::o;2776:191::-;2850:16;2869:6;;;;;;;;;;;2850:25;;2895:8;2886:6;;:17;;;;;;;;;;;;;;;;;;2950:8;2919:40;;2940:8;2919:40;;;;;;;;;;;;2839:128;2776:191;:::o;35019:104::-;35088:27;35098:2;35102:8;35088:27;;;;;;;;;;;;:9;:27::i;:::-;35019:104;;:::o;12837:326::-;12897:4;13154:1;13132:7;:19;;;:23;13125:30;;12837:326;;;:::o;43123:667::-;43286:4;43323:2;43307:36;;;43344:12;:10;:12::i;:::-;43358:4;43364:7;43373:5;43307:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43303:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43558:1;43541:6;:13;:18;43537:235;;43587:40;;;;;;;;;;;;;;43537:235;43730:6;43724:13;43715:6;43711:2;43707:15;43700:38;43303:480;43436:45;;;43426:55;;;:6;:55;;;;43419:62;;;43123:667;;;;;;:::o;20457:723::-;20513:13;20743:1;20734:5;:10;20730:53;;20761:10;;;;;;;;;;;;;;;;;;;;;20730:53;20793:12;20808:5;20793:20;;20824:14;20849:78;20864:1;20856:4;:9;20849:78;;20882:8;;;;;:::i;:::-;;;;20913:2;20905:10;;;;;:::i;:::-;;;20849:78;;;20937:19;20969:6;20959:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20937:39;;20987:154;21003:1;20994:5;:10;20987:154;;21031:1;21021:11;;;;;:::i;:::-;;;21098:2;21090:5;:10;;;;:::i;:::-;21077:2;:24;;;;:::i;:::-;21064:39;;21047:6;21054;21047:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21127:2;21118:11;;;;;:::i;:::-;;;20987:154;;;21165:6;21151:21;;;;;20457:723;;;;:::o;33472:164::-;33569:4;33593:18;:25;33612:5;33593:25;;;;;;;;;;;;;;;:35;33619:8;33593:35;;;;;;;;;;;;;;;;;;;;;;;;;33586:42;;33472:164;;;;:::o;44438:159::-;;;;;:::o;45256:158::-;;;;;:::o;35486:163::-;35609:32;35615:2;35619:8;35629:5;35636:4;35609:5;:32::i;:::-;35486:163;;;:::o;35908:1775::-;36047:20;36070:13;;36047:36;;36112:1;36098:16;;:2;:16;;;36094:48;;36123:19;;;;;;;;;;;;;;36094:48;36169:1;36157:8;:13;36153:44;;36179:18;;;;;;;;;;;;;;36153:44;36210:61;36240:1;36244:2;36248:12;36262:8;36210:21;:61::i;:::-;36583:8;36548:12;:16;36561:2;36548:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36647:8;36607:12;:16;36620:2;36607:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36706:2;36673:11;:25;36685:12;36673:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36773:15;36723:11;:25;36735:12;36723:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36806:20;36829:12;36806:35;;36856:11;36885:8;36870:12;:23;36856:37;;36914:4;:23;;;;;36922:15;:2;:13;;;:15::i;:::-;36914:23;36910:641;;;36958:314;37014:12;37010:2;36989:38;;37006:1;36989:38;;;;;;;;;;;;37055:69;37094:1;37098:2;37102:14;;;;;;37118:5;37055:30;:69::i;:::-;37050:174;;37160:40;;;;;;;;;;;;;;37050:174;37267:3;37251:12;:19;36958:314;;37353:12;37336:13;;:29;37332:43;;37367:8;;;37332:43;36910:641;;;37416:120;37472:14;;;;;;37468:2;37447:40;;37464:1;37447:40;;;;;;;;;;;;37531:3;37515:12;:19;37416:120;;36910:641;37581:12;37565:13;:28;;;;36523:1082;;37615:60;37644:1;37648:2;37652:12;37666:8;37615:20;:60::i;:::-;36036:1647;35908:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:164::-;15149:16;15145:1;15137:6;15133:14;15126:40;15009:164;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:141::-;16025:4;16048:3;16040:11;;16071:3;16068:1;16061:14;16105:4;16102:1;16092:18;16084:26;;15976:141;;;:::o;16123:93::-;16160:6;16207:2;16202;16195:5;16191:14;16187:23;16177:33;;16123:93;;;:::o;16222:107::-;16266:8;16316:5;16310:4;16306:16;16285:37;;16222:107;;;;:::o;16335:393::-;16404:6;16454:1;16442:10;16438:18;16477:97;16507:66;16496:9;16477:97;:::i;:::-;16595:39;16625:8;16614:9;16595:39;:::i;:::-;16583:51;;16667:4;16663:9;16656:5;16652:21;16643:30;;16716:4;16706:8;16702:19;16695:5;16692:30;16682:40;;16411:317;;16335:393;;;;;:::o;16734:60::-;16762:3;16783:5;16776:12;;16734:60;;;:::o;16800:142::-;16850:9;16883:53;16901:34;16910:24;16928:5;16910:24;:::i;:::-;16901:34;:::i;:::-;16883:53;:::i;:::-;16870:66;;16800:142;;;:::o;16948:75::-;16991:3;17012:5;17005:12;;16948:75;;;:::o;17029:269::-;17139:39;17170:7;17139:39;:::i;:::-;17200:91;17249:41;17273:16;17249:41;:::i;:::-;17241:6;17234:4;17228:11;17200:91;:::i;:::-;17194:4;17187:105;17105:193;17029:269;;;:::o;17304:73::-;17349:3;17304:73;:::o;17383:189::-;17460:32;;:::i;:::-;17501:65;17559:6;17551;17545:4;17501:65;:::i;:::-;17436:136;17383:189;;:::o;17578:186::-;17638:120;17655:3;17648:5;17645:14;17638:120;;;17709:39;17746:1;17739:5;17709:39;:::i;:::-;17682:1;17675:5;17671:13;17662:22;;17638:120;;;17578:186;;:::o;17770:543::-;17871:2;17866:3;17863:11;17860:446;;;17905:38;17937:5;17905:38;:::i;:::-;17989:29;18007:10;17989:29;:::i;:::-;17979:8;17975:44;18172:2;18160:10;18157:18;18154:49;;;18193:8;18178:23;;18154:49;18216:80;18272:22;18290:3;18272:22;:::i;:::-;18262:8;18258:37;18245:11;18216:80;:::i;:::-;17875:431;;17860:446;17770:543;;;:::o;18319:117::-;18373:8;18423:5;18417:4;18413:16;18392:37;;18319:117;;;;:::o;18442:169::-;18486:6;18519:51;18567:1;18563:6;18555:5;18552:1;18548:13;18519:51;:::i;:::-;18515:56;18600:4;18594;18590:15;18580:25;;18493:118;18442:169;;;;:::o;18616:295::-;18692:4;18838:29;18863:3;18857:4;18838:29;:::i;:::-;18830:37;;18900:3;18897:1;18893:11;18887:4;18884:21;18876:29;;18616:295;;;;:::o;18916:1395::-;19033:37;19066:3;19033:37;:::i;:::-;19135:18;19127:6;19124:30;19121:56;;;19157:18;;:::i;:::-;19121:56;19201:38;19233:4;19227:11;19201:38;:::i;:::-;19286:67;19346:6;19338;19332:4;19286:67;:::i;:::-;19380:1;19404:4;19391:17;;19436:2;19428:6;19425:14;19453:1;19448:618;;;;20110:1;20127:6;20124:77;;;20176:9;20171:3;20167:19;20161:26;20152:35;;20124:77;20227:67;20287:6;20280:5;20227:67;:::i;:::-;20221:4;20214:81;20083:222;19418:887;;19448:618;19500:4;19496:9;19488:6;19484:22;19534:37;19566:4;19534:37;:::i;:::-;19593:1;19607:208;19621:7;19618:1;19615:14;19607:208;;;19700:9;19695:3;19691:19;19685:26;19677:6;19670:42;19751:1;19743:6;19739:14;19729:24;;19798:2;19787:9;19783:18;19770:31;;19644:4;19641:1;19637:12;19632:17;;19607:208;;;19843:6;19834:7;19831:19;19828:179;;;19901:9;19896:3;19892:19;19886:26;19944:48;19986:4;19978:6;19974:17;19963:9;19944:48;:::i;:::-;19936:6;19929:64;19851:156;19828:179;20053:1;20049;20041:6;20037:14;20033:22;20027:4;20020:36;19455:611;;;19418:887;;19008:1303;;;18916:1395;;:::o;20317:156::-;20457:8;20453:1;20445:6;20441:14;20434:32;20317:156;:::o;20479:365::-;20621:3;20642:66;20706:1;20701:3;20642:66;:::i;:::-;20635:73;;20717:93;20806:3;20717:93;:::i;:::-;20835:2;20830:3;20826:12;20819:19;;20479:365;;;:::o;20850:419::-;21016:4;21054:2;21043:9;21039:18;21031:26;;21103:9;21097:4;21093:20;21089:1;21078:9;21074:17;21067:47;21131:131;21257:4;21131:131;:::i;:::-;21123:139;;20850:419;;;:::o;21275:180::-;21323:77;21320:1;21313:88;21420:4;21417:1;21410:15;21444:4;21441:1;21434:15;21461:305;21501:3;21520:20;21538:1;21520:20;:::i;:::-;21515:25;;21554:20;21572:1;21554:20;:::i;:::-;21549:25;;21708:1;21640:66;21636:74;21633:1;21630:81;21627:107;;;21714:18;;:::i;:::-;21627:107;21758:1;21755;21751:9;21744:16;;21461:305;;;;:::o;21772:168::-;21912:20;21908:1;21900:6;21896:14;21889:44;21772:168;:::o;21946:366::-;22088:3;22109:67;22173:2;22168:3;22109:67;:::i;:::-;22102:74;;22185:93;22274:3;22185:93;:::i;:::-;22303:2;22298:3;22294:12;22287:19;;21946:366;;;:::o;22318:419::-;22484:4;22522:2;22511:9;22507:18;22499:26;;22571:9;22565:4;22561:20;22557:1;22546:9;22542:17;22535:47;22599:131;22725:4;22599:131;:::i;:::-;22591:139;;22318:419;;;:::o;22743:160::-;22883:12;22879:1;22871:6;22867:14;22860:36;22743:160;:::o;22909:366::-;23051:3;23072:67;23136:2;23131:3;23072:67;:::i;:::-;23065:74;;23148:93;23237:3;23148:93;:::i;:::-;23266:2;23261:3;23257:12;23250:19;;22909:366;;;:::o;23281:419::-;23447:4;23485:2;23474:9;23470:18;23462:26;;23534:9;23528:4;23524:20;23520:1;23509:9;23505:17;23498:47;23562:131;23688:4;23562:131;:::i;:::-;23554:139;;23281:419;;;:::o;23706:162::-;23846:14;23842:1;23834:6;23830:14;23823:38;23706:162;:::o;23874:366::-;24016:3;24037:67;24101:2;24096:3;24037:67;:::i;:::-;24030:74;;24113:93;24202:3;24113:93;:::i;:::-;24231:2;24226:3;24222:12;24215:19;;23874:366;;;:::o;24246:419::-;24412:4;24450:2;24439:9;24435:18;24427:26;;24499:9;24493:4;24489:20;24485:1;24474:9;24470:17;24463:47;24527:131;24653:4;24527:131;:::i;:::-;24519:139;;24246:419;;;:::o;24671:172::-;24811:24;24807:1;24799:6;24795:14;24788:48;24671:172;:::o;24849:366::-;24991:3;25012:67;25076:2;25071:3;25012:67;:::i;:::-;25005:74;;25088:93;25177:3;25088:93;:::i;:::-;25206:2;25201:3;25197:12;25190:19;;24849:366;;;:::o;25221:419::-;25387:4;25425:2;25414:9;25410:18;25402:26;;25474:9;25468:4;25464:20;25460:1;25449:9;25445:17;25438:47;25502:131;25628:4;25502:131;:::i;:::-;25494:139;;25221:419;;;:::o;25646:172::-;25786:24;25782:1;25774:6;25770:14;25763:48;25646:172;:::o;25824:366::-;25966:3;25987:67;26051:2;26046:3;25987:67;:::i;:::-;25980:74;;26063:93;26152:3;26063:93;:::i;:::-;26181:2;26176:3;26172:12;26165:19;;25824:366;;;:::o;26196:419::-;26362:4;26400:2;26389:9;26385:18;26377:26;;26449:9;26443:4;26439:20;26435:1;26424:9;26420:17;26413:47;26477:131;26603:4;26477:131;:::i;:::-;26469:139;;26196:419;;;:::o;26621:348::-;26661:7;26684:20;26702:1;26684:20;:::i;:::-;26679:25;;26718:20;26736:1;26718:20;:::i;:::-;26713:25;;26906:1;26838:66;26834:74;26831:1;26828:81;26823:1;26816:9;26809:17;26805:105;26802:131;;;26913:18;;:::i;:::-;26802:131;26961:1;26958;26954:9;26943:20;;26621:348;;;;:::o;26975:172::-;27115:24;27111:1;27103:6;27099:14;27092:48;26975:172;:::o;27153:366::-;27295:3;27316:67;27380:2;27375:3;27316:67;:::i;:::-;27309:74;;27392:93;27481:3;27392:93;:::i;:::-;27510:2;27505:3;27501:12;27494:19;;27153:366;;;:::o;27525:419::-;27691:4;27729:2;27718:9;27714:18;27706:26;;27778:9;27772:4;27768:20;27764:1;27753:9;27749:17;27742:47;27806:131;27932:4;27806:131;:::i;:::-;27798:139;;27525:419;;;:::o;27950:171::-;28090:23;28086:1;28078:6;28074:14;28067:47;27950:171;:::o;28127:366::-;28269:3;28290:67;28354:2;28349:3;28290:67;:::i;:::-;28283:74;;28366:93;28455:3;28366:93;:::i;:::-;28484:2;28479:3;28475:12;28468:19;;28127:366;;;:::o;28499:419::-;28665:4;28703:2;28692:9;28688:18;28680:26;;28752:9;28746:4;28742:20;28738:1;28727:9;28723:17;28716:47;28780:131;28906:4;28780:131;:::i;:::-;28772:139;;28499:419;;;:::o;28924:148::-;29026:11;29063:3;29048:18;;28924:148;;;;:::o;29102:874::-;29205:3;29242:5;29236:12;29271:36;29297:9;29271:36;:::i;:::-;29323:89;29405:6;29400:3;29323:89;:::i;:::-;29316:96;;29443:1;29432:9;29428:17;29459:1;29454:166;;;;29634:1;29629:341;;;;29421:549;;29454:166;29538:4;29534:9;29523;29519:25;29514:3;29507:38;29600:6;29593:14;29586:22;29578:6;29574:35;29569:3;29565:45;29558:52;;29454:166;;29629:341;29696:38;29728:5;29696:38;:::i;:::-;29756:1;29770:154;29784:6;29781:1;29778:13;29770:154;;;29858:7;29852:14;29848:1;29843:3;29839:11;29832:35;29908:1;29899:7;29895:15;29884:26;;29806:4;29803:1;29799:12;29794:17;;29770:154;;;29953:6;29948:3;29944:16;29937:23;;29636:334;;29421:549;;29209:767;;29102:874;;;;:::o;29982:377::-;30088:3;30116:39;30149:5;30116:39;:::i;:::-;30171:89;30253:6;30248:3;30171:89;:::i;:::-;30164:96;;30269:52;30314:6;30309:3;30302:4;30295:5;30291:16;30269:52;:::i;:::-;30346:6;30341:3;30337:16;30330:23;;30092:267;29982:377;;;;:::o;30365:589::-;30590:3;30612:92;30700:3;30691:6;30612:92;:::i;:::-;30605:99;;30721:95;30812:3;30803:6;30721:95;:::i;:::-;30714:102;;30833:95;30924:3;30915:6;30833:95;:::i;:::-;30826:102;;30945:3;30938:10;;30365:589;;;;;;:::o;30960:125::-;31026:7;31055:24;31073:5;31055:24;:::i;:::-;31044:35;;30960:125;;;:::o;31091:180::-;31193:53;31240:5;31193:53;:::i;:::-;31186:5;31183:64;31173:92;;31261:1;31258;31251:12;31173:92;31091:180;:::o;31277:201::-;31363:5;31394:6;31388:13;31379:22;;31410:62;31466:5;31410:62;:::i;:::-;31277:201;;;;:::o;31484:409::-;31583:6;31632:2;31620:9;31611:7;31607:23;31603:32;31600:119;;;31638:79;;:::i;:::-;31600:119;31758:1;31783:93;31868:7;31859:6;31848:9;31844:22;31783:93;:::i;:::-;31773:103;;31729:157;31484:409;;;;:::o;31899:225::-;32039:34;32035:1;32027:6;32023:14;32016:58;32108:8;32103:2;32095:6;32091:15;32084:33;31899:225;:::o;32130:366::-;32272:3;32293:67;32357:2;32352:3;32293:67;:::i;:::-;32286:74;;32369:93;32458:3;32369:93;:::i;:::-;32487:2;32482:3;32478:12;32471:19;;32130:366;;;:::o;32502:419::-;32668:4;32706:2;32695:9;32691:18;32683:26;;32755:9;32749:4;32745:20;32741:1;32730:9;32726:17;32719:47;32783:131;32909:4;32783:131;:::i;:::-;32775:139;;32502:419;;;:::o;32927:98::-;32978:6;33012:5;33006:12;32996:22;;32927:98;;;:::o;33031:168::-;33114:11;33148:6;33143:3;33136:19;33188:4;33183:3;33179:14;33164:29;;33031:168;;;;:::o;33205:360::-;33291:3;33319:38;33351:5;33319:38;:::i;:::-;33373:70;33436:6;33431:3;33373:70;:::i;:::-;33366:77;;33452:52;33497:6;33492:3;33485:4;33478:5;33474:16;33452:52;:::i;:::-;33529:29;33551:6;33529:29;:::i;:::-;33524:3;33520:39;33513:46;;33295:270;33205:360;;;;:::o;33571:640::-;33766:4;33804:3;33793:9;33789:19;33781:27;;33818:71;33886:1;33875:9;33871:17;33862:6;33818:71;:::i;:::-;33899:72;33967:2;33956:9;33952:18;33943:6;33899:72;:::i;:::-;33981;34049:2;34038:9;34034:18;34025:6;33981:72;:::i;:::-;34100:9;34094:4;34090:20;34085:2;34074:9;34070:18;34063:48;34128:76;34199:4;34190:6;34128:76;:::i;:::-;34120:84;;33571:640;;;;;;;:::o;34217:141::-;34273:5;34304:6;34298:13;34289:22;;34320:32;34346:5;34320:32;:::i;:::-;34217:141;;;;:::o;34364:349::-;34433:6;34482:2;34470:9;34461:7;34457:23;34453:32;34450:119;;;34488:79;;:::i;:::-;34450:119;34608:1;34633:63;34688:7;34679:6;34668:9;34664:22;34633:63;:::i;:::-;34623:73;;34579:127;34364:349;;;;:::o;34719:233::-;34758:3;34781:24;34799:5;34781:24;:::i;:::-;34772:33;;34827:66;34820:5;34817:77;34814:103;;34897:18;;:::i;:::-;34814:103;34944:1;34937:5;34933:13;34926:20;;34719:233;;;:::o;34958:180::-;35006:77;35003:1;34996:88;35103:4;35100:1;35093:15;35127:4;35124:1;35117:15;35144:185;35184:1;35201:20;35219:1;35201:20;:::i;:::-;35196:25;;35235:20;35253:1;35235:20;:::i;:::-;35230:25;;35274:1;35264:35;;35279:18;;:::i;:::-;35264:35;35321:1;35318;35314:9;35309:14;;35144:185;;;;:::o;35335:191::-;35375:4;35395:20;35413:1;35395:20;:::i;:::-;35390:25;;35429:20;35447:1;35429:20;:::i;:::-;35424:25;;35468:1;35465;35462:8;35459:34;;;35473:18;;:::i;:::-;35459:34;35518:1;35515;35511:9;35503:17;;35335:191;;;;:::o;35532:176::-;35564:1;35581:20;35599:1;35581:20;:::i;:::-;35576:25;;35615:20;35633:1;35615:20;:::i;:::-;35610:25;;35654:1;35644:35;;35659:18;;:::i;:::-;35644:35;35700:1;35697;35693:9;35688:14;;35532:176;;;;:::o;35714:180::-;35762:77;35759:1;35752:88;35859:4;35856:1;35849:15;35883:4;35880:1;35873:15
Swarm Source
ipfs://6e037db1f67b5796e91880523abe63d4fd9e12a3ad222af3a308d46552dc1299
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.