Overview
TokenID
138
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 Name:
GoblinSoldier
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-02 */ /** *Submitted for verification at Etherscan.io on 2022-05-27 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity 0.8.10; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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); } // OpenZeppelin Contracts (last updated v4.6.0) (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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } /** * @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); } // ERC721A Contracts v3.3.0 // Creator: Chiru Labs /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // 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; } } // 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 onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @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); } } } } // 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); } } // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // ERC721A Contracts v3.3.0 // Creator: Chiru Labs /** * @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..). * * 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, IERC721A { using Address for address; using Strings for uint256; // 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 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override 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) { 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) { 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) { 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 { _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) if (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) if(!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 virtual 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()) if(!_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; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 (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 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) 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; 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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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 {} } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol) /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol) /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } contract GoblinSoldier is ERC721A, ERC2981, Ownable, ReentrancyGuard { using SafeMath for uint256; string public baseURI = "https://nftservice.s3.amazonaws.com/goblinsoldier/"; uint256 public tokenPrice = 5000000000000000; //0.005 ETH uint public maxTokensPerTx = 20; uint256 public MAX_TOKENS = 8888; bool public saleIsActive = false; uint public maxFreePerUser = 1; mapping (address => uint256) addressToUserFreeMinted; enum TokenURIMode { MODE_ONE, MODE_TWO } TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE; constructor( ) ERC721A("GoblinSoldier", "GS") { _setDefaultRoyalty(msg.sender, 200); _safeMint(msg.sender, 100); } struct HelperState { uint256 tokenPrice; uint256 maxTokensPerTx; uint256 MAX_TOKENS; bool saleIsActive; uint256 totalSupply; uint256 userMinted; uint256 userFreeMinted; } function _state(address minter) external view returns (HelperState memory) { return HelperState({ tokenPrice: tokenPrice, maxTokensPerTx: maxTokensPerTx, MAX_TOKENS: MAX_TOKENS, saleIsActive: saleIsActive, totalSupply: uint256(totalSupply()), userMinted: uint256(_numberMinted(minter)), userFreeMinted : addressToUserFreeMinted[minter] }); } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTo(address to, uint256 amount) public onlyOwner { require(amount <= address(this).balance, "Request would exceed balance of this contract"); payable(to).transfer(amount); } function reserveTokens(address to, uint numberOfTokens) public onlyOwner { require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Request would exceed max supply of tokens"); _safeMint(to, numberOfTokens); } function setBaseURI(string memory newURI) public onlyOwner { baseURI = newURI; } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function mintToken(uint numberOfTokens) public payable nonReentrant { require(saleIsActive, "Sale must be active to mint token"); require(numberOfTokens <= maxTokensPerTx, "The number of tokens per transaction exceeds the allowed number"); require(numberOfTokens > 0, "You must mint at least one token"); require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of tokens"); uint256 minted = _numberMinted(msg.sender); bool hasFreeToken = false; if ( maxFreePerUser <= addressToUserFreeMinted[msg.sender] || maxFreePerUser <= minted) { require(msg.value >= numberOfTokens * tokenPrice, "Ether value sent is not correct"); } else { require(msg.value >= (numberOfTokens - 1) * tokenPrice, "Ether value sent is not correct"); hasFreeToken= true; } _safeMint(msg.sender, numberOfTokens); if(hasFreeToken){ addressToUserFreeMinted[msg.sender] = addressToUserFreeMinted[msg.sender] + 1; } } function setTokenPrice(uint256 newTokenPrice) public onlyOwner{ tokenPrice = newTokenPrice; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); if (tokenUriMode == TokenURIMode.MODE_TWO) { return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId) ) ) : ""; } else { return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), ".json" ) ) : ""; } } function setTokenURIMode(uint256 mode) external onlyOwner { if (mode == 2) { tokenUriMode = TokenURIMode.MODE_TWO; } else { tokenUriMode = TokenURIMode.MODE_ONE; } } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function numberFreeMinted(address owner) public view returns (uint256) { return addressToUserFreeMinted[owner]; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { MAX_TOKENS = _maxSupply; } function setMaxTokensPerTx(uint _maxTokensPerTx) external onlyOwner{ maxTokensPerTx = _maxTokensPerTx; } function setMaxFreePerUser(uint _maxFreePerUser) external onlyOwner{ maxFreePerUser = _maxFreePerUser; } /** @notice Sets the contract-wide royalty info. */ function setRoyaltyInfo(address receiver, uint96 feeBasisPoints) external onlyOwner { _setDefaultRoyalty(receiver, feeBasisPoints); } function supportsInterface(bytes4 interfaceId) public view override(ERC721A, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } }
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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"},{"internalType":"uint256","name":"userFreeMinted","type":"uint256"}],"internalType":"struct GoblinSoldier.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreePerUser","type":"uint256"}],"name":"setMaxFreePerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060328152602001620058b860329139600c908051906020019062000035929190620009d9565b506611c37937e08000600d556014600e556122b8600f556000601060006101000a81548160ff02191690831515021790555060016011556000601360006101000a81548160ff0219169083600181111562000095576200009462000a89565b5b0217905550348015620000a757600080fd5b506040518060400160405280600d81526020017f476f626c696e536f6c64696572000000000000000000000000000000000000008152506040518060400160405280600281526020017f475300000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012c929190620009d9565b50806003908051906020019062000145929190620009d9565b5062000156620001b260201b60201c565b60008190555050506200017e62000172620001b760201b60201c565b620001bf60201b60201c565b6001600b81905550620001993360c86200028560201b60201c565b620001ac3360646200042960201b60201c565b62000e24565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002956200044f60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ed9062000b3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003609062000bb1565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6200044b8282604051806020016040528060008152506200045960201b60201c565b5050565b6000612710905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620004c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000503576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200051860008583866200084860201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620006e68673ffffffffffffffffffffffffffffffffffffffff166200084e60201b620020d51760201c565b15620007b8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200076460008784806001019550876200087160201b60201c565b6200079b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620006ed578260005414620007b257600080fd5b62000824565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620007b9575b816000819055505050620008426000858386620009d360201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200089f620001b760201b60201c565b8786866040518563ffffffff1660e01b8152600401620008c3949392919062000cd7565b6020604051808303816000875af19250505080156200090257506040513d601f19601f82011682018060405250810190620008ff919062000d8d565b60015b62000980573d806000811462000935576040519150601f19603f3d011682016040523d82523d6000602084013e6200093a565b606091505b5060008151141562000978576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009e79062000dee565b90600052602060002090601f01602090048101928262000a0b576000855562000a57565b82601f1062000a2657805160ff191683800117855562000a57565b8280016001018555821562000a57579182015b8281111562000a5657825182559160200191906001019062000a39565b5b50905062000a66919062000a6a565b5090565b5b8082111562000a8557600081600090555060010162000a6b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000b27602a8362000ab8565b915062000b348262000ac9565b604082019050919050565b6000602082019050818103600083015262000b5a8162000b18565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000b9960198362000ab8565b915062000ba68262000b61565b602082019050919050565b6000602082019050818103600083015262000bcc8162000b8a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c008262000bd3565b9050919050565b62000c128162000bf3565b82525050565b6000819050919050565b62000c2d8162000c18565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c6f57808201518184015260208101905062000c52565b8381111562000c7f576000848401525b50505050565b6000601f19601f8301169050919050565b600062000ca38262000c33565b62000caf818562000c3e565b935062000cc181856020860162000c4f565b62000ccc8162000c85565b840191505092915050565b600060808201905062000cee600083018762000c07565b62000cfd602083018662000c07565b62000d0c604083018562000c22565b818103606083015262000d20818462000c96565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d678162000d30565b811462000d7357600080fd5b50565b60008151905062000d878162000d5c565b92915050565b60006020828403121562000da65762000da562000d2b565b5b600062000db68482850162000d76565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e0757607f821691505b6020821081141562000e1e5762000e1d62000dbf565b5b50919050565b614a848062000e346000396000f3fe6080604052600436106102305760003560e01c80636f8b44b01161012e578063b88d4fde116100ab578063e5a519521161006f578063e5a5195214610815578063e985e9c514610852578063eb8d24441461088f578063f2fde38b146108ba578063f47c84c5146108e357610230565b8063b88d4fde1461072d578063b9bed05e14610756578063c634d0321461077f578063c87b56dd1461079b578063dc33e681146107d857610230565b80637ff9b596116100f25780637ff9b5961461065a5780638da5cb5b14610685578063900c71f5146106b057806395d89b41146106d9578063a22cb4651461070457610230565b80636f8b44b01461058b57806370a08231146105b4578063715018a6146105f157806378cf19e914610608578063790750ce1461063157610230565b80632a55205a116101bc57806355f804b31161018057806355f804b3146104a65780635e307a48146104cf5780636352211e146104fa5780636a61e5fc146105375780636c0360eb1461056057610230565b80632a55205a146103d457806334918dfd146104125780633ccfd60b1461042957806342842e0e146104405780634df8bb451461046957610230565b8063095ea7b311610203578063095ea7b3146103035780630f2663511461032c57806318160ddd14610357578063205c28781461038257806323b872dd146103ab57610230565b806301ffc9a71461023557806302fa7c471461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613669565b61090e565b60405161026991906136b1565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061376e565b610920565b005b3480156102a757600080fd5b506102b06109aa565b6040516102bd9190613847565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e8919061389f565b610a3c565b6040516102fa91906138db565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906138f6565b610ab8565b005b34801561033857600080fd5b50610341610bbd565b60405161034e9190613945565b60405180910390f35b34801561036357600080fd5b5061036c610bc3565b6040516103799190613945565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906138f6565b610bda565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613960565b610ce4565b005b3480156103e057600080fd5b506103fb60048036038101906103f691906139b3565b610cf4565b6040516104099291906139f3565b60405180910390f35b34801561041e57600080fd5b50610427610edf565b005b34801561043557600080fd5b5061043e610f87565b005b34801561044c57600080fd5b5061046760048036038101906104629190613960565b611052565b005b34801561047557600080fd5b50610490600480360381019061048b9190613a1c565b611072565b60405161049d9190613af5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613c45565b611119565b005b3480156104db57600080fd5b506104e46111af565b6040516104f19190613945565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061389f565b6111b5565b60405161052e91906138db565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061389f565b6111cb565b005b34801561056c57600080fd5b50610575611251565b6040516105829190613847565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061389f565b6112df565b005b3480156105c057600080fd5b506105db60048036038101906105d69190613a1c565b611365565b6040516105e89190613945565b60405180910390f35b3480156105fd57600080fd5b50610606611435565b005b34801561061457600080fd5b5061062f600480360381019061062a91906138f6565b6114bd565b005b34801561063d57600080fd5b506106586004803603810190610653919061389f565b6115a5565b005b34801561066657600080fd5b5061066f61162b565b60405161067c9190613945565b60405180910390f35b34801561069157600080fd5b5061069a611631565b6040516106a791906138db565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061389f565b61165b565b005b3480156106e557600080fd5b506106ee61173f565b6040516106fb9190613847565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613cba565b6117d1565b005b34801561073957600080fd5b50610754600480360381019061074f9190613d9b565b611949565b005b34801561076257600080fd5b5061077d6004803603810190610778919061389f565b6119c1565b005b6107996004803603810190610794919061389f565b611a47565b005b3480156107a757600080fd5b506107c260048036038101906107bd919061389f565b611d93565b6040516107cf9190613847565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613a1c565b611ed5565b60405161080c9190613945565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190613a1c565b611ee7565b6040516108499190613945565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613e1e565b611f30565b60405161088691906136b1565b60405180910390f35b34801561089b57600080fd5b506108a4611fc4565b6040516108b191906136b1565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613a1c565b611fd7565b005b3480156108ef57600080fd5b506108f86120cf565b6040516109059190613945565b60405180910390f35b6000610919826120f8565b9050919050565b610928612172565b73ffffffffffffffffffffffffffffffffffffffff16610946611631565b73ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390613eaa565b60405180910390fd5b6109a6828261217a565b5050565b6060600280546109b990613ef9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590613ef9565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000610a4782612310565b610a7d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac3826111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4a612172565b73ffffffffffffffffffffffffffffffffffffffff1614610bad57610b7681610b71612172565b611f30565b610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bb883838361235e565b505050565b60115481565b6000610bcd612410565b6001546000540303905090565b610be2612172565b73ffffffffffffffffffffffffffffffffffffffff16610c00611631565b73ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613eaa565b60405180910390fd5b47811115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090613f9d565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cdf573d6000803e3d6000fd5b505050565b610cef838383612415565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e8a5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e946128cb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ec09190613fec565b610eca9190614075565b90508160000151819350935050509250929050565b610ee7612172565b73ffffffffffffffffffffffffffffffffffffffff16610f05611631565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613eaa565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610f8f612172565b73ffffffffffffffffffffffffffffffffffffffff16610fad611631565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613eaa565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104e573d6000803e3d6000fd5b5050565b61106d83838360405180602001604052806000815250611949565b505050565b61107a6134d8565b6040518060e00160405280600d548152602001600e548152602001600f548152602001601060009054906101000a900460ff16151581526020016110bc610bc3565b81526020016110ca846128d5565b8152602001601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152509050919050565b611121612172565b73ffffffffffffffffffffffffffffffffffffffff1661113f611631565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613eaa565b60405180910390fd5b80600c90805190602001906111ab929190613517565b5050565b600e5481565b60006111c08261293f565b600001519050919050565b6111d3612172565b73ffffffffffffffffffffffffffffffffffffffff166111f1611631565b73ffffffffffffffffffffffffffffffffffffffff1614611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613eaa565b60405180910390fd5b80600d8190555050565b600c805461125e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461128a90613ef9565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b6112e7612172565b73ffffffffffffffffffffffffffffffffffffffff16611305611631565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613eaa565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61143d612172565b73ffffffffffffffffffffffffffffffffffffffff1661145b611631565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613eaa565b60405180910390fd5b6114bb6000612bca565b565b6114c5612172565b73ffffffffffffffffffffffffffffffffffffffff166114e3611631565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613eaa565b60405180910390fd5b600f5461155682611548610bc3565b612c9090919063ffffffff16565b1115611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90614118565b60405180910390fd5b6115a18282612cee565b5050565b6115ad612172565b73ffffffffffffffffffffffffffffffffffffffff166115cb611631565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613eaa565b60405180910390fd5b8060118190555050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611663612172565b73ffffffffffffffffffffffffffffffffffffffff16611681611631565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613eaa565b60405180910390fd5b6002811415611710576001601360006101000a81548160ff0219169083600181111561170657611705614138565b5b021790555061173c565b6000601360006101000a81548160ff0219169083600181111561173657611735614138565b5b02179055505b50565b60606003805461174e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461177a90613ef9565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b5050505050905090565b6117d9612172565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061184b612172565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f8612172565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193d91906136b1565b60405180910390a35050565b611954848484612415565b6119738373ffffffffffffffffffffffffffffffffffffffff166120d5565b156119bb5761198484848484612d0c565b6119ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119c9612172565b73ffffffffffffffffffffffffffffffffffffffff166119e7611631565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613eaa565b60405180910390fd5b80600e8190555050565b6002600b541415611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a84906141b3565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff16611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90614245565b60405180910390fd5b600e54811115611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906142d7565b60405180910390fd5b60008111611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390614343565b60405180910390fd5b600f54611b8982611b7b610bc3565b612c9090919063ffffffff16565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906143d5565b60405180910390fd5b6000611bd5336128d5565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154111580611c2b57508160115411155b15611c8557600d5483611c3e9190613fec565b341015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614441565b60405180910390fd5b611ce6565b600d54600184611c959190614461565b611c9f9190613fec565b341015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614441565b60405180910390fd5b600190505b611cf03384612cee565b8015611d86576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d429190614495565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50506001600b8190555050565b6060611d9e82612310565b611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614537565b60405180910390fd5b600180811115611df057611def614138565b5b601360009054906101000a900460ff166001811115611e1257611e11614138565b5b1415611e76576000600c8054611e2790613ef9565b905011611e435760405180602001604052806000815250611e6f565b600c611e4e83612e5d565b604051602001611e5f929190614627565b6040516020818303038152906040525b9050611ed0565b6000600c8054611e8590613ef9565b905011611ea15760405180602001604052806000815250611ecd565b600c611eac83612e5d565b604051602001611ebd929190614697565b6040516020818303038152906040525b90505b919050565b6000611ee0826128d5565b9050919050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611fdf612172565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611631565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613eaa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614738565b60405180910390fd5b6120cc81612bca565b50565b600f5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061216b575061216a82612fbe565b5b9050919050565b600033905090565b6121826128cb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d7906147ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224790614836565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008161231b612410565b1115801561232a575060005482105b8015612357575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006124208261293f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124ac612172565b73ffffffffffffffffffffffffffffffffffffffff1614806124db57506124da856124d5612172565b611f30565b5b8061252057506124e9612172565b73ffffffffffffffffffffffffffffffffffffffff1661250884610a3c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612559576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125cd85858560016130a0565b6125d96000848761235e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285957600054821461285857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c485858560016130a6565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61294761359d565b600082905080612955612410565b11612b9357600054811015612b92576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b9057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a74578092505050612bc5565b5b600115612b8f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b8a578092505050612bc5565b612a75565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808284612c9f9190614495565b905083811015612ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdb906148a2565b60405180910390fd5b8091505092915050565b612d088282604051806020016040528060008152506130ac565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d32612172565b8786866040518563ffffffff1660e01b8152600401612d549493929190614917565b6020604051808303816000875af1925050508015612d9057506040513d601f19601f82011682018060405250810190612d8d9190614978565b60015b612e0a573d8060008114612dc0576040519150601f19603f3d011682016040523d82523d6000602084013e612dc5565b606091505b50600081511415612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ea5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fb9565b600082905060005b60008214612ed7578080612ec0906149a5565b915050600a82612ed09190614075565b9150612ead565b60008167ffffffffffffffff811115612ef357612ef2613b1a565b5b6040519080825280601f01601f191660200182016040528015612f255781602001600182028036833780820191505090505b5090505b60008514612fb257600182612f3e9190614461565b9150600a85612f4d91906149ee565b6030612f599190614495565b60f81b818381518110612f6f57612f6e614a1f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fab9190614075565b9450612f29565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061308957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061309957506130988261346e565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613119576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613154576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61316160008583866130a0565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506133228673ffffffffffffffffffffffffffffffffffffffff166120d5565b156133e7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133976000878480600101955087612d0c565b6133cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106133285782600054146133e257600080fd5b613452565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106133e8575b81600081905550505061346860008583866130a6565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060e001604052806000815260200160008152602001600081526020016000151581526020016000815260200160008152602001600081525090565b82805461352390613ef9565b90600052602060002090601f016020900481019282613545576000855561358c565b82601f1061355e57805160ff191683800117855561358c565b8280016001018555821561358c579182015b8281111561358b578251825591602001919060010190613570565b5b50905061359991906135e0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135f95760008160009055506001016135e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61364681613611565b811461365157600080fd5b50565b6000813590506136638161363d565b92915050565b60006020828403121561367f5761367e613607565b5b600061368d84828501613654565b91505092915050565b60008115159050919050565b6136ab81613696565b82525050565b60006020820190506136c660008301846136a2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f7826136cc565b9050919050565b613707816136ec565b811461371257600080fd5b50565b600081359050613724816136fe565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61374b8161372a565b811461375657600080fd5b50565b60008135905061376881613742565b92915050565b6000806040838503121561378557613784613607565b5b600061379385828601613715565b92505060206137a485828601613759565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e85780820151818401526020810190506137cd565b838111156137f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613819826137ae565b61382381856137b9565b93506138338185602086016137ca565b61383c816137fd565b840191505092915050565b60006020820190508181036000830152613861818461380e565b905092915050565b6000819050919050565b61387c81613869565b811461388757600080fd5b50565b60008135905061389981613873565b92915050565b6000602082840312156138b5576138b4613607565b5b60006138c38482850161388a565b91505092915050565b6138d5816136ec565b82525050565b60006020820190506138f060008301846138cc565b92915050565b6000806040838503121561390d5761390c613607565b5b600061391b85828601613715565b925050602061392c8582860161388a565b9150509250929050565b61393f81613869565b82525050565b600060208201905061395a6000830184613936565b92915050565b60008060006060848603121561397957613978613607565b5b600061398786828701613715565b935050602061399886828701613715565b92505060406139a98682870161388a565b9150509250925092565b600080604083850312156139ca576139c9613607565b5b60006139d88582860161388a565b92505060206139e98582860161388a565b9150509250929050565b6000604082019050613a0860008301856138cc565b613a156020830184613936565b9392505050565b600060208284031215613a3257613a31613607565b5b6000613a4084828501613715565b91505092915050565b613a5281613869565b82525050565b613a6181613696565b82525050565b60e082016000820151613a7d6000850182613a49565b506020820151613a906020850182613a49565b506040820151613aa36040850182613a49565b506060820151613ab66060850182613a58565b506080820151613ac96080850182613a49565b5060a0820151613adc60a0850182613a49565b5060c0820151613aef60c0850182613a49565b50505050565b600060e082019050613b0a6000830184613a67565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b52826137fd565b810181811067ffffffffffffffff82111715613b7157613b70613b1a565b5b80604052505050565b6000613b846135fd565b9050613b908282613b49565b919050565b600067ffffffffffffffff821115613bb057613baf613b1a565b5b613bb9826137fd565b9050602081019050919050565b82818337600083830152505050565b6000613be8613be384613b95565b613b7a565b905082815260208101848484011115613c0457613c03613b15565b5b613c0f848285613bc6565b509392505050565b600082601f830112613c2c57613c2b613b10565b5b8135613c3c848260208601613bd5565b91505092915050565b600060208284031215613c5b57613c5a613607565b5b600082013567ffffffffffffffff811115613c7957613c7861360c565b5b613c8584828501613c17565b91505092915050565b613c9781613696565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613607565b5b6000613cdf85828601613715565b9250506020613cf085828601613ca5565b9150509250929050565b600067ffffffffffffffff821115613d1557613d14613b1a565b5b613d1e826137fd565b9050602081019050919050565b6000613d3e613d3984613cfa565b613b7a565b905082815260208101848484011115613d5a57613d59613b15565b5b613d65848285613bc6565b509392505050565b600082601f830112613d8257613d81613b10565b5b8135613d92848260208601613d2b565b91505092915050565b60008060008060808587031215613db557613db4613607565b5b6000613dc387828801613715565b9450506020613dd487828801613715565b9350506040613de58782880161388a565b925050606085013567ffffffffffffffff811115613e0657613e0561360c565b5b613e1287828801613d6d565b91505092959194509250565b60008060408385031215613e3557613e34613607565b5b6000613e4385828601613715565b9250506020613e5485828601613715565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e946020836137b9565b9150613e9f82613e5e565b602082019050919050565b60006020820190508181036000830152613ec381613e87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1157607f821691505b60208210811415613f2557613f24613eca565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613f87602d836137b9565b9150613f9282613f2b565b604082019050919050565b60006020820190508181036000830152613fb681613f7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ff782613869565b915061400283613869565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403b5761403a613fbd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408082613869565b915061408b83613869565b92508261409b5761409a614046565b5b828204905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b60006141026029836137b9565b915061410d826140a6565b604082019050919050565b60006020820190508181036000830152614131816140f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061419d601f836137b9565b91506141a882614167565b602082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061422f6021836137b9565b915061423a826141d3565b604082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f546865206e756d626572206f6620746f6b656e7320706572207472616e73616360008201527f74696f6e20657863656564732074686520616c6c6f776564206e756d62657200602082015250565b60006142c1603f836137b9565b91506142cc82614265565b604082019050919050565b600060208201905081810360008301526142f0816142b4565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b600061432d6020836137b9565b9150614338826142f7565b602082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006143bf602a836137b9565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061442b601f836137b9565b9150614436826143f5565b602082019050919050565b6000602082019050818103600083015261445a8161441e565b9050919050565b600061446c82613869565b915061447783613869565b92508282101561448a57614489613fbd565b5b828203905092915050565b60006144a082613869565b91506144ab83613869565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e0576144df613fbd565b5b828201905092915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006145216015836137b9565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461458481613ef9565b61458e8186614557565b945060018216600081146145a957600181146145ba576145ed565b60ff198316865281860193506145ed565b6145c385614562565b60005b838110156145e5578154818901526001820191506020810190506145c6565b838801955050505b50505092915050565b6000614601826137ae565b61460b8185614557565b935061461b8185602086016137ca565b80840191505092915050565b60006146338285614577565b915061463f82846145f6565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614681600583614557565b915061468c8261464b565b600582019050919050565b60006146a38285614577565b91506146af82846145f6565b91506146ba82614674565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147226026836137b9565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006147b4602a836137b9565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006148206019836137b9565b915061482b826147ea565b602082019050919050565b6000602082019050818103600083015261484f81614813565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061488c601b836137b9565b915061489782614856565b602082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148e9826148c2565b6148f381856148cd565b93506149038185602086016137ca565b61490c816137fd565b840191505092915050565b600060808201905061492c60008301876138cc565b61493960208301866138cc565b6149466040830185613936565b818103606083015261495881846148de565b905095945050505050565b6000815190506149728161363d565b92915050565b60006020828403121561498e5761498d613607565b5b600061499c84828501614963565b91505092915050565b60006149b082613869565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e3576149e2613fbd565b5b600182019050919050565b60006149f982613869565b9150614a0483613869565b925082614a1457614a13614046565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220b68e79bf6b0d662258e54b9fac35bb737f4186bd7d189e85662e19c8408265d464736f6c634300080a003368747470733a2f2f6e6674736572766963652e73332e616d617a6f6e6177732e636f6d2f676f626c696e736f6c646965722f
Deployed Bytecode
0x6080604052600436106102305760003560e01c80636f8b44b01161012e578063b88d4fde116100ab578063e5a519521161006f578063e5a5195214610815578063e985e9c514610852578063eb8d24441461088f578063f2fde38b146108ba578063f47c84c5146108e357610230565b8063b88d4fde1461072d578063b9bed05e14610756578063c634d0321461077f578063c87b56dd1461079b578063dc33e681146107d857610230565b80637ff9b596116100f25780637ff9b5961461065a5780638da5cb5b14610685578063900c71f5146106b057806395d89b41146106d9578063a22cb4651461070457610230565b80636f8b44b01461058b57806370a08231146105b4578063715018a6146105f157806378cf19e914610608578063790750ce1461063157610230565b80632a55205a116101bc57806355f804b31161018057806355f804b3146104a65780635e307a48146104cf5780636352211e146104fa5780636a61e5fc146105375780636c0360eb1461056057610230565b80632a55205a146103d457806334918dfd146104125780633ccfd60b1461042957806342842e0e146104405780634df8bb451461046957610230565b8063095ea7b311610203578063095ea7b3146103035780630f2663511461032c57806318160ddd14610357578063205c28781461038257806323b872dd146103ab57610230565b806301ffc9a71461023557806302fa7c471461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613669565b61090e565b60405161026991906136b1565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061376e565b610920565b005b3480156102a757600080fd5b506102b06109aa565b6040516102bd9190613847565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e8919061389f565b610a3c565b6040516102fa91906138db565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906138f6565b610ab8565b005b34801561033857600080fd5b50610341610bbd565b60405161034e9190613945565b60405180910390f35b34801561036357600080fd5b5061036c610bc3565b6040516103799190613945565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906138f6565b610bda565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613960565b610ce4565b005b3480156103e057600080fd5b506103fb60048036038101906103f691906139b3565b610cf4565b6040516104099291906139f3565b60405180910390f35b34801561041e57600080fd5b50610427610edf565b005b34801561043557600080fd5b5061043e610f87565b005b34801561044c57600080fd5b5061046760048036038101906104629190613960565b611052565b005b34801561047557600080fd5b50610490600480360381019061048b9190613a1c565b611072565b60405161049d9190613af5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613c45565b611119565b005b3480156104db57600080fd5b506104e46111af565b6040516104f19190613945565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061389f565b6111b5565b60405161052e91906138db565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061389f565b6111cb565b005b34801561056c57600080fd5b50610575611251565b6040516105829190613847565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061389f565b6112df565b005b3480156105c057600080fd5b506105db60048036038101906105d69190613a1c565b611365565b6040516105e89190613945565b60405180910390f35b3480156105fd57600080fd5b50610606611435565b005b34801561061457600080fd5b5061062f600480360381019061062a91906138f6565b6114bd565b005b34801561063d57600080fd5b506106586004803603810190610653919061389f565b6115a5565b005b34801561066657600080fd5b5061066f61162b565b60405161067c9190613945565b60405180910390f35b34801561069157600080fd5b5061069a611631565b6040516106a791906138db565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061389f565b61165b565b005b3480156106e557600080fd5b506106ee61173f565b6040516106fb9190613847565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613cba565b6117d1565b005b34801561073957600080fd5b50610754600480360381019061074f9190613d9b565b611949565b005b34801561076257600080fd5b5061077d6004803603810190610778919061389f565b6119c1565b005b6107996004803603810190610794919061389f565b611a47565b005b3480156107a757600080fd5b506107c260048036038101906107bd919061389f565b611d93565b6040516107cf9190613847565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613a1c565b611ed5565b60405161080c9190613945565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190613a1c565b611ee7565b6040516108499190613945565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613e1e565b611f30565b60405161088691906136b1565b60405180910390f35b34801561089b57600080fd5b506108a4611fc4565b6040516108b191906136b1565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613a1c565b611fd7565b005b3480156108ef57600080fd5b506108f86120cf565b6040516109059190613945565b60405180910390f35b6000610919826120f8565b9050919050565b610928612172565b73ffffffffffffffffffffffffffffffffffffffff16610946611631565b73ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390613eaa565b60405180910390fd5b6109a6828261217a565b5050565b6060600280546109b990613ef9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590613ef9565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000610a4782612310565b610a7d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac3826111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4a612172565b73ffffffffffffffffffffffffffffffffffffffff1614610bad57610b7681610b71612172565b611f30565b610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bb883838361235e565b505050565b60115481565b6000610bcd612410565b6001546000540303905090565b610be2612172565b73ffffffffffffffffffffffffffffffffffffffff16610c00611631565b73ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613eaa565b60405180910390fd5b47811115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090613f9d565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cdf573d6000803e3d6000fd5b505050565b610cef838383612415565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e8a5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e946128cb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ec09190613fec565b610eca9190614075565b90508160000151819350935050509250929050565b610ee7612172565b73ffffffffffffffffffffffffffffffffffffffff16610f05611631565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613eaa565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610f8f612172565b73ffffffffffffffffffffffffffffffffffffffff16610fad611631565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613eaa565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104e573d6000803e3d6000fd5b5050565b61106d83838360405180602001604052806000815250611949565b505050565b61107a6134d8565b6040518060e00160405280600d548152602001600e548152602001600f548152602001601060009054906101000a900460ff16151581526020016110bc610bc3565b81526020016110ca846128d5565b8152602001601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152509050919050565b611121612172565b73ffffffffffffffffffffffffffffffffffffffff1661113f611631565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613eaa565b60405180910390fd5b80600c90805190602001906111ab929190613517565b5050565b600e5481565b60006111c08261293f565b600001519050919050565b6111d3612172565b73ffffffffffffffffffffffffffffffffffffffff166111f1611631565b73ffffffffffffffffffffffffffffffffffffffff1614611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613eaa565b60405180910390fd5b80600d8190555050565b600c805461125e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461128a90613ef9565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b6112e7612172565b73ffffffffffffffffffffffffffffffffffffffff16611305611631565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613eaa565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61143d612172565b73ffffffffffffffffffffffffffffffffffffffff1661145b611631565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613eaa565b60405180910390fd5b6114bb6000612bca565b565b6114c5612172565b73ffffffffffffffffffffffffffffffffffffffff166114e3611631565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613eaa565b60405180910390fd5b600f5461155682611548610bc3565b612c9090919063ffffffff16565b1115611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90614118565b60405180910390fd5b6115a18282612cee565b5050565b6115ad612172565b73ffffffffffffffffffffffffffffffffffffffff166115cb611631565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613eaa565b60405180910390fd5b8060118190555050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611663612172565b73ffffffffffffffffffffffffffffffffffffffff16611681611631565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613eaa565b60405180910390fd5b6002811415611710576001601360006101000a81548160ff0219169083600181111561170657611705614138565b5b021790555061173c565b6000601360006101000a81548160ff0219169083600181111561173657611735614138565b5b02179055505b50565b60606003805461174e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461177a90613ef9565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b5050505050905090565b6117d9612172565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061184b612172565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f8612172565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193d91906136b1565b60405180910390a35050565b611954848484612415565b6119738373ffffffffffffffffffffffffffffffffffffffff166120d5565b156119bb5761198484848484612d0c565b6119ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119c9612172565b73ffffffffffffffffffffffffffffffffffffffff166119e7611631565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613eaa565b60405180910390fd5b80600e8190555050565b6002600b541415611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a84906141b3565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff16611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90614245565b60405180910390fd5b600e54811115611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906142d7565b60405180910390fd5b60008111611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390614343565b60405180910390fd5b600f54611b8982611b7b610bc3565b612c9090919063ffffffff16565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906143d5565b60405180910390fd5b6000611bd5336128d5565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154111580611c2b57508160115411155b15611c8557600d5483611c3e9190613fec565b341015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614441565b60405180910390fd5b611ce6565b600d54600184611c959190614461565b611c9f9190613fec565b341015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614441565b60405180910390fd5b600190505b611cf03384612cee565b8015611d86576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d429190614495565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50506001600b8190555050565b6060611d9e82612310565b611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614537565b60405180910390fd5b600180811115611df057611def614138565b5b601360009054906101000a900460ff166001811115611e1257611e11614138565b5b1415611e76576000600c8054611e2790613ef9565b905011611e435760405180602001604052806000815250611e6f565b600c611e4e83612e5d565b604051602001611e5f929190614627565b6040516020818303038152906040525b9050611ed0565b6000600c8054611e8590613ef9565b905011611ea15760405180602001604052806000815250611ecd565b600c611eac83612e5d565b604051602001611ebd929190614697565b6040516020818303038152906040525b90505b919050565b6000611ee0826128d5565b9050919050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611fdf612172565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611631565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613eaa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614738565b60405180910390fd5b6120cc81612bca565b50565b600f5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061216b575061216a82612fbe565b5b9050919050565b600033905090565b6121826128cb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d7906147ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224790614836565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008161231b612410565b1115801561232a575060005482105b8015612357575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006124208261293f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124ac612172565b73ffffffffffffffffffffffffffffffffffffffff1614806124db57506124da856124d5612172565b611f30565b5b8061252057506124e9612172565b73ffffffffffffffffffffffffffffffffffffffff1661250884610a3c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612559576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125cd85858560016130a0565b6125d96000848761235e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285957600054821461285857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c485858560016130a6565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61294761359d565b600082905080612955612410565b11612b9357600054811015612b92576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b9057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a74578092505050612bc5565b5b600115612b8f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b8a578092505050612bc5565b612a75565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808284612c9f9190614495565b905083811015612ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdb906148a2565b60405180910390fd5b8091505092915050565b612d088282604051806020016040528060008152506130ac565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d32612172565b8786866040518563ffffffff1660e01b8152600401612d549493929190614917565b6020604051808303816000875af1925050508015612d9057506040513d601f19601f82011682018060405250810190612d8d9190614978565b60015b612e0a573d8060008114612dc0576040519150601f19603f3d011682016040523d82523d6000602084013e612dc5565b606091505b50600081511415612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ea5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fb9565b600082905060005b60008214612ed7578080612ec0906149a5565b915050600a82612ed09190614075565b9150612ead565b60008167ffffffffffffffff811115612ef357612ef2613b1a565b5b6040519080825280601f01601f191660200182016040528015612f255781602001600182028036833780820191505090505b5090505b60008514612fb257600182612f3e9190614461565b9150600a85612f4d91906149ee565b6030612f599190614495565b60f81b818381518110612f6f57612f6e614a1f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fab9190614075565b9450612f29565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061308957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061309957506130988261346e565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613119576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613154576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61316160008583866130a0565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506133228673ffffffffffffffffffffffffffffffffffffffff166120d5565b156133e7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133976000878480600101955087612d0c565b6133cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106133285782600054146133e257600080fd5b613452565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106133e8575b81600081905550505061346860008583866130a6565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060e001604052806000815260200160008152602001600081526020016000151581526020016000815260200160008152602001600081525090565b82805461352390613ef9565b90600052602060002090601f016020900481019282613545576000855561358c565b82601f1061355e57805160ff191683800117855561358c565b8280016001018555821561358c579182015b8281111561358b578251825591602001919060010190613570565b5b50905061359991906135e0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135f95760008160009055506001016135e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61364681613611565b811461365157600080fd5b50565b6000813590506136638161363d565b92915050565b60006020828403121561367f5761367e613607565b5b600061368d84828501613654565b91505092915050565b60008115159050919050565b6136ab81613696565b82525050565b60006020820190506136c660008301846136a2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f7826136cc565b9050919050565b613707816136ec565b811461371257600080fd5b50565b600081359050613724816136fe565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61374b8161372a565b811461375657600080fd5b50565b60008135905061376881613742565b92915050565b6000806040838503121561378557613784613607565b5b600061379385828601613715565b92505060206137a485828601613759565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e85780820151818401526020810190506137cd565b838111156137f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613819826137ae565b61382381856137b9565b93506138338185602086016137ca565b61383c816137fd565b840191505092915050565b60006020820190508181036000830152613861818461380e565b905092915050565b6000819050919050565b61387c81613869565b811461388757600080fd5b50565b60008135905061389981613873565b92915050565b6000602082840312156138b5576138b4613607565b5b60006138c38482850161388a565b91505092915050565b6138d5816136ec565b82525050565b60006020820190506138f060008301846138cc565b92915050565b6000806040838503121561390d5761390c613607565b5b600061391b85828601613715565b925050602061392c8582860161388a565b9150509250929050565b61393f81613869565b82525050565b600060208201905061395a6000830184613936565b92915050565b60008060006060848603121561397957613978613607565b5b600061398786828701613715565b935050602061399886828701613715565b92505060406139a98682870161388a565b9150509250925092565b600080604083850312156139ca576139c9613607565b5b60006139d88582860161388a565b92505060206139e98582860161388a565b9150509250929050565b6000604082019050613a0860008301856138cc565b613a156020830184613936565b9392505050565b600060208284031215613a3257613a31613607565b5b6000613a4084828501613715565b91505092915050565b613a5281613869565b82525050565b613a6181613696565b82525050565b60e082016000820151613a7d6000850182613a49565b506020820151613a906020850182613a49565b506040820151613aa36040850182613a49565b506060820151613ab66060850182613a58565b506080820151613ac96080850182613a49565b5060a0820151613adc60a0850182613a49565b5060c0820151613aef60c0850182613a49565b50505050565b600060e082019050613b0a6000830184613a67565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b52826137fd565b810181811067ffffffffffffffff82111715613b7157613b70613b1a565b5b80604052505050565b6000613b846135fd565b9050613b908282613b49565b919050565b600067ffffffffffffffff821115613bb057613baf613b1a565b5b613bb9826137fd565b9050602081019050919050565b82818337600083830152505050565b6000613be8613be384613b95565b613b7a565b905082815260208101848484011115613c0457613c03613b15565b5b613c0f848285613bc6565b509392505050565b600082601f830112613c2c57613c2b613b10565b5b8135613c3c848260208601613bd5565b91505092915050565b600060208284031215613c5b57613c5a613607565b5b600082013567ffffffffffffffff811115613c7957613c7861360c565b5b613c8584828501613c17565b91505092915050565b613c9781613696565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613607565b5b6000613cdf85828601613715565b9250506020613cf085828601613ca5565b9150509250929050565b600067ffffffffffffffff821115613d1557613d14613b1a565b5b613d1e826137fd565b9050602081019050919050565b6000613d3e613d3984613cfa565b613b7a565b905082815260208101848484011115613d5a57613d59613b15565b5b613d65848285613bc6565b509392505050565b600082601f830112613d8257613d81613b10565b5b8135613d92848260208601613d2b565b91505092915050565b60008060008060808587031215613db557613db4613607565b5b6000613dc387828801613715565b9450506020613dd487828801613715565b9350506040613de58782880161388a565b925050606085013567ffffffffffffffff811115613e0657613e0561360c565b5b613e1287828801613d6d565b91505092959194509250565b60008060408385031215613e3557613e34613607565b5b6000613e4385828601613715565b9250506020613e5485828601613715565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e946020836137b9565b9150613e9f82613e5e565b602082019050919050565b60006020820190508181036000830152613ec381613e87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1157607f821691505b60208210811415613f2557613f24613eca565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613f87602d836137b9565b9150613f9282613f2b565b604082019050919050565b60006020820190508181036000830152613fb681613f7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ff782613869565b915061400283613869565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403b5761403a613fbd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408082613869565b915061408b83613869565b92508261409b5761409a614046565b5b828204905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b60006141026029836137b9565b915061410d826140a6565b604082019050919050565b60006020820190508181036000830152614131816140f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061419d601f836137b9565b91506141a882614167565b602082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061422f6021836137b9565b915061423a826141d3565b604082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f546865206e756d626572206f6620746f6b656e7320706572207472616e73616360008201527f74696f6e20657863656564732074686520616c6c6f776564206e756d62657200602082015250565b60006142c1603f836137b9565b91506142cc82614265565b604082019050919050565b600060208201905081810360008301526142f0816142b4565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b600061432d6020836137b9565b9150614338826142f7565b602082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006143bf602a836137b9565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061442b601f836137b9565b9150614436826143f5565b602082019050919050565b6000602082019050818103600083015261445a8161441e565b9050919050565b600061446c82613869565b915061447783613869565b92508282101561448a57614489613fbd565b5b828203905092915050565b60006144a082613869565b91506144ab83613869565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e0576144df613fbd565b5b828201905092915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006145216015836137b9565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461458481613ef9565b61458e8186614557565b945060018216600081146145a957600181146145ba576145ed565b60ff198316865281860193506145ed565b6145c385614562565b60005b838110156145e5578154818901526001820191506020810190506145c6565b838801955050505b50505092915050565b6000614601826137ae565b61460b8185614557565b935061461b8185602086016137ca565b80840191505092915050565b60006146338285614577565b915061463f82846145f6565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614681600583614557565b915061468c8261464b565b600582019050919050565b60006146a38285614577565b91506146af82846145f6565b91506146ba82614674565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147226026836137b9565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006147b4602a836137b9565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006148206019836137b9565b915061482b826147ea565b602082019050919050565b6000602082019050818103600083015261484f81614813565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061488c601b836137b9565b915061489782614856565b602082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148e9826148c2565b6148f381856148cd565b93506149038185602086016137ca565b61490c816137fd565b840191505092915050565b600060808201905061492c60008301876138cc565b61493960208301866138cc565b6149466040830185613936565b818103606083015261495881846148de565b905095945050505050565b6000815190506149728161363d565b92915050565b60006020828403121561498e5761498d613607565b5b600061499c84828501614963565b91505092915050565b60006149b082613869565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e3576149e2613fbd565b5b600182019050919050565b60006149f982613869565b9150614a0483613869565b925082614a1457614a13614046565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220b68e79bf6b0d662258e54b9fac35bb737f4186bd7d189e85662e19c8408265d464736f6c634300080a0033
Deployed Bytecode Sourcemap
75856:5610:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81259:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81081:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45156:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46660:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46222:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76239:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41281:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77492:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47525:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70596:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;78081:89;;;;;;;;;;;;;:::i;:::-;;77343:140;;;;;;;;;;;;;:::i;:::-;;47766:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76880:455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77975:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76117:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44964:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79283:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75967:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80652:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42410:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12614:103;;;;;;;;;;;;;:::i;:::-;;77713:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80887:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76052:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11963:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80040:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45325:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46936:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48022:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80761:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78178:1097;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79398:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80390:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80516:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47294:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76198:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12872:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76157:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81259:204;81390:4;81419:36;81443:11;81419:23;:36::i;:::-;81412:43;;81259:204;;;:::o;81081:170::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81199:44:::1;81218:8;81228:14;81199:18;:44::i;:::-;81081:170:::0;;:::o;45156:100::-;45210:13;45243:5;45236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45156:100;:::o;46660:204::-;46728:7;46753:16;46761:7;46753;:16::i;:::-;46748:64;;46778:34;;;;;;;;;;;;;;46748:64;46832:15;:24;46848:7;46832:24;;;;;;;;;;;;;;;;;;;;;46825:31;;46660:204;;;:::o;46222:372::-;46295:13;46311:24;46327:7;46311:15;:24::i;:::-;46295:40;;46356:5;46350:11;;:2;:11;;;46346:48;;;46370:24;;;;;;;;;;;;;;46346:48;46427:5;46411:21;;:12;:10;:12::i;:::-;:21;;;46407:139;;46438:37;46455:5;46462:12;:10;:12::i;:::-;46438:16;:37::i;:::-;46434:112;;46499:35;;;;;;;;;;;;;;46434:112;46407:139;46558:28;46567:2;46571:7;46580:5;46558:8;:28::i;:::-;46284:310;46222:372;;:::o;76239:30::-;;;;:::o;41281:312::-;41334:7;41559:15;:13;:15::i;:::-;41544:12;;41528:13;;:28;:46;41521:53;;41281:312;:::o;77492:212::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77586:21:::1;77576:6;:31;;77568:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;77676:2;77668:20;;:28;77689:6;77668:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77492:212:::0;;:::o;47525:170::-;47659:28;47669:4;47675:2;47679:7;47659:9;:28::i;:::-;47525:170;;;:::o;70596:494::-;70740:7;70749;70774:26;70803:17;:27;70821:8;70803:27;;;;;;;;;;;70774:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70875:1;70847:30;;:7;:16;;;:30;;;70843:92;;;70904:19;70894:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70843:92;70947:21;71012:17;:15;:17::i;:::-;70971:58;;70985:7;:23;;;70972:36;;:10;:36;;;;:::i;:::-;70971:58;;;;:::i;:::-;70947:82;;71050:7;:16;;;71068:13;71042:40;;;;;;70596:494;;;;;:::o;78081:89::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78150:12:::1;;;;;;;;;;;78149:13;78134:12;;:28;;;;;;;;;;;;;;;;;;78081:89::o:0;77343:140::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77391:12:::1;77406:21;77391:36;;77446:10;77438:28;;:37;77467:7;77438:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77380:103;77343:140::o:0;47766:185::-;47904:39;47921:4;47927:2;47931:7;47904:39;;;;;;;;;;;;:16;:39::i;:::-;47766:185;;;:::o;76880:455::-;76935:18;;:::i;:::-;76973:354;;;;;;;;77012:10;;76973:354;;;;77053:14;;76973:354;;;;77094:10;;76973:354;;;;77133:12;;;;;;;;;;;76973:354;;;;;;77181:13;:11;:13::i;:::-;76973:354;;;;77230:21;77244:6;77230:13;:21::i;:::-;76973:354;;;;77284:23;:31;77308:6;77284:31;;;;;;;;;;;;;;;;76973:354;;;76966:361;;76880:455;;;:::o;77975:94::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78055:6:::1;78045:7;:16;;;;;;;;;;;;:::i;:::-;;77975:94:::0;:::o;76117:31::-;;;;:::o;44964:125::-;45028:7;45055:21;45068:7;45055:12;:21::i;:::-;:26;;;45048:33;;44964:125;;;:::o;79283:107::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79369:13:::1;79356:10;:26;;;;79283:107:::0;:::o;75967:76::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80652:101::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80735:10:::1;80722;:23;;;;80652:101:::0;:::o;42410:206::-;42474:7;42515:1;42498:19;;:5;:19;;;42494:60;;;42526:28;;;;;;;;;;;;;;42494:60;42580:12;:19;42593:5;42580:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42572:36;;42565:43;;42410:206;;;:::o;12614:103::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12679:30:::1;12706:1;12679:18;:30::i;:::-;12614:103::o:0;77713:241::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77850:10:::1;;77813:33;77831:14;77813:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;77805:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;77917:29;77927:2;77931:14;77917:9;:29::i;:::-;77713:241:::0;;:::o;80887:118::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80982:15:::1;80965:14;:32;;;;80887:118:::0;:::o;76052:44::-;;;;:::o;11963:87::-;12009:7;12036:6;;;;;;;;;;;12029:13;;11963:87;:::o;80040:223::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80121:1:::1;80113:4;:9;80109:147;;;80154:21;80139:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;80109:147;;;80223:21;80208:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;80109:147;80040:223:::0;:::o;45325:104::-;45381:13;45414:7;45407:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45325:104;:::o;46936:287::-;47047:12;:10;:12::i;:::-;47035:24;;:8;:24;;;47031:54;;;47068:17;;;;;;;;;;;;;;47031:54;47143:8;47098:18;:32;47117:12;:10;:12::i;:::-;47098:32;;;;;;;;;;;;;;;:42;47131:8;47098:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47196:8;47167:48;;47182:12;:10;:12::i;:::-;47167:48;;;47206:8;47167:48;;;;;;:::i;:::-;;;;;;;;46936:287;;:::o;48022:370::-;48189:28;48199:4;48205:2;48209:7;48189:9;:28::i;:::-;48232:15;:2;:13;;;:15::i;:::-;48228:157;;;48253:56;48284:4;48290:2;48294:7;48303:5;48253:30;:56::i;:::-;48249:136;;48333:40;;;;;;;;;;;;;;48249:136;48228:157;48022:370;;;;:::o;80761:118::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80856:15:::1;80839:14;:32;;;;80761:118:::0;:::o;78178:1097::-;74907:1;75505:7;;:19;;75497:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;74907:1;75638:7;:18;;;;78265:12:::1;;;;;;;;;;;78257:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;78352:14;;78334;:32;;78326:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;78470:1;78453:14;:18;78445:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;78564:10;;78527:33;78545:14;78527:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;78519:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;78634:14;78651:25;78665:10;78651:13;:25::i;:::-;78634:42;;78687:17;78746:23;:35;78770:10;78746:35;;;;;;;;;;;;;;;;78728:14;;:53;;:81;;;;78803:6;78785:14;;:24;;78728:81;78723:355;;;78864:10;;78847:14;:27;;;;:::i;:::-;78834:9;:40;;78826:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;78723:355;;;78987:10;;78982:1;78965:14;:18;;;;:::i;:::-;78964:33;;;;:::i;:::-;78951:9;:46;;78943:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;79062:4;79048:18;;78723:355;79098:37;79108:10;79120:14;79098:9;:37::i;:::-;79151:12;79148:120;;;79255:1;79217:23;:35;79241:10;79217:35;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;79179:23;:35;79203:10;79179:35;;;;;;;;;;;;;;;:77;;;;79148:120;78246:1029;;74863:1:::0;75817:7;:22;;;;78178:1097;:::o;79398:634::-;79464:13;79504:17;79512:8;79504:7;:17::i;:::-;79496:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;79578:21;79562:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;79558:467;;;79645:1;79627:7;79621:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;79703:7;79727:26;79744:8;79727:16;:26::i;:::-;79670:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79621:165;79614:172;;;;79558:467;79848:1;79830:7;79824:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;79906:7;79930:26;79947:8;79930:16;:26::i;:::-;79873:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79824:189;79817:196;;79398:634;;;;:::o;80390:113::-;80448:7;80475:20;80489:5;80475:13;:20::i;:::-;80468:27;;80390:113;;;:::o;80516:127::-;80578:7;80605:23;:30;80629:5;80605:30;;;;;;;;;;;;;;;;80598:37;;80516:127;;;:::o;47294:164::-;47391:4;47415:18;:25;47434:5;47415:25;;;;;;;;;;;;;;;:35;47441:8;47415:35;;;;;;;;;;;;;;;;;;;;;;;;;47408:42;;47294:164;;;;:::o;76198:32::-;;;;;;;;;;;;;:::o;12872:201::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12981:1:::1;12961:22;;:8;:22;;;;12953:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13037:28;13056:8;13037:18;:28::i;:::-;12872:201:::0;:::o;76157:32::-;;;;:::o;14581:326::-;14641:4;14898:1;14876:7;:19;;;:23;14869:30;;14581:326;;;:::o;70326:215::-;70428:4;70467:26;70452:41;;;:11;:41;;;;:81;;;;70497:36;70521:11;70497:23;:36::i;:::-;70452:81;70445:88;;70326:215;;;:::o;797:98::-;850:7;877:10;870:17;;797:98;:::o;71740:332::-;71859:17;:15;:17::i;:::-;71843:33;;:12;:33;;;;71835:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;71962:1;71942:22;;:8;:22;;;;71934:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;72029:35;;;;;;;;72041:8;72029:35;;;;;;72051:12;72029:35;;;;;72007:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71740:332;;:::o;48647:174::-;48704:4;48747:7;48728:15;:13;:15::i;:::-;:26;;:53;;;;;48768:13;;48758:7;:23;48728:53;:85;;;;;48786:11;:20;48798:7;48786:20;;;;;;;;;;;:27;;;;;;;;;;;;48785:28;48728:85;48721:92;;48647:174;;;:::o;57869:196::-;58011:2;57984:15;:24;58000:7;57984:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58049:7;58045:2;58029:28;;58038:5;58029:28;;;;;;;;;;;;57869:196;;;:::o;41055:92::-;41111:7;41055:92;:::o;52817:2130::-;52932:35;52970:21;52983:7;52970:12;:21::i;:::-;52932:59;;53030:4;53008:26;;:13;:18;;;:26;;;53004:67;;53043:28;;;;;;;;;;;;;;53004:67;53084:22;53126:4;53110:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;53147:36;53164:4;53170:12;:10;:12::i;:::-;53147:16;:36::i;:::-;53110:73;:126;;;;53224:12;:10;:12::i;:::-;53200:36;;:20;53212:7;53200:11;:20::i;:::-;:36;;;53110:126;53084:153;;53255:17;53250:66;;53281:35;;;;;;;;;;;;;;53250:66;53345:1;53331:16;;:2;:16;;;53327:52;;;53356:23;;;;;;;;;;;;;;53327:52;53392:43;53414:4;53420:2;53424:7;53433:1;53392:21;:43::i;:::-;53500:35;53517:1;53521:7;53530:4;53500:8;:35::i;:::-;53861:1;53831:12;:18;53844:4;53831:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53905:1;53877:12;:16;53890:2;53877:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53923:31;53957:11;:20;53969:7;53957:20;;;;;;;;;;;53923:54;;54008:2;53992:8;:13;;;:18;;;;;;;;;;;;;;;;;;54058:15;54025:8;:23;;;:49;;;;;;;;;;;;;;;;;;54326:19;54358:1;54348:7;:11;54326:33;;54374:31;54408:11;:24;54420:11;54408:24;;;;;;;;;;;54374:58;;54476:1;54451:27;;:8;:13;;;;;;;;;;;;:27;;;54447:384;;;54661:13;;54646:11;:28;54642:174;;54715:4;54699:8;:13;;;:20;;;;;;;;;;;;;;;;;;54768:13;:28;;;54742:8;:23;;;:54;;;;;;;;;;;;;;;;;;54642:174;54447:384;53806:1036;;;54878:7;54874:2;54859:27;;54868:4;54859:27;;;;;;;;;;;;54897:42;54918:4;54924:2;54928:7;54937:1;54897:20;:42::i;:::-;52921:2026;;52817:2130;;;:::o;71372:97::-;71430:6;71456:5;71449:12;;71372:97;:::o;42698:137::-;42759:7;42794:12;:19;42807:5;42794:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;42786:41;;42779:48;;42698:137;;;:::o;43791:1111::-;43853:21;;:::i;:::-;43887:12;43902:7;43887:22;;43970:4;43951:15;:13;:15::i;:::-;:23;43947:888;;43987:13;;43980:4;:20;43976:859;;;44021:31;44055:11;:17;44067:4;44055:17;;;;;;;;;;;44021:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44096:9;:16;;;44091:729;;44167:1;44141:28;;:9;:14;;;:28;;;44137:101;;44205:9;44198:16;;;;;;44137:101;44540:261;44547:4;44540:261;;;44580:6;;;;;;;;44625:11;:17;44637:4;44625:17;;;;;;;;;;;44613:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44699:1;44673:28;;:9;:14;;;:28;;;44669:109;;44741:9;44734:16;;;;;;44669:109;44540:261;;;44091:729;44002:833;43976:859;43947:888;44863:31;;;;;;;;;;;;;;43791:1111;;;;:::o;13233:191::-;13307:16;13326:6;;;;;;;;;;;13307:25;;13352:8;13343:6;;:17;;;;;;;;;;;;;;;;;;13407:8;13376:40;;13397:8;13376:40;;;;;;;;;;;;13296:128;13233:191;:::o;63559:179::-;63617:7;63637:9;63653:1;63649;:5;;;;:::i;:::-;63637:17;;63678:1;63673;:6;;63665:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63729:1;63722:8;;;63559:179;;;;:::o;48905:104::-;48974:27;48984:2;48988:8;48974:27;;;;;;;;;;;;:9;:27::i;:::-;48905:104;;:::o;58557:667::-;58720:4;58757:2;58741:36;;;58778:12;:10;:12::i;:::-;58792:4;58798:7;58807:5;58741:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58737:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58992:1;58975:6;:13;:18;58971:235;;;59021:40;;;;;;;;;;;;;;58971:235;59164:6;59158:13;59149:6;59145:2;59141:15;59134:38;58737:480;58870:45;;;58860:55;;;:6;:55;;;;58853:62;;;58557:667;;;;;;:::o;22135:723::-;22191:13;22421:1;22412:5;:10;22408:53;;;22439:10;;;;;;;;;;;;;;;;;;;;;22408:53;22471:12;22486:5;22471:20;;22502:14;22527:78;22542:1;22534:4;:9;22527:78;;22560:8;;;;;:::i;:::-;;;;22591:2;22583:10;;;;;:::i;:::-;;;22527:78;;;22615:19;22647:6;22637:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22615:39;;22665:154;22681:1;22672:5;:10;22665:154;;22709:1;22699:11;;;;;:::i;:::-;;;22776:2;22768:5;:10;;;;:::i;:::-;22755:2;:24;;;;:::i;:::-;22742:39;;22725:6;22732;22725:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;22805:2;22796:11;;;;;:::i;:::-;;;22665:154;;;22843:6;22829:21;;;;;22135:723;;;;:::o;42041:305::-;42143:4;42195:25;42180:40;;;:11;:40;;;;:105;;;;42252:33;42237:48;;;:11;:48;;;;42180:105;:158;;;;42302:36;42326:11;42302:23;:36::i;:::-;42180:158;42160:178;;42041:305;;;:::o;59872:159::-;;;;;:::o;60690:158::-;;;;;:::o;49382:1749::-;49505:20;49528:13;;49505:36;;49570:1;49556:16;;:2;:16;;;49552:48;;;49581:19;;;;;;;;;;;;;;49552:48;49627:1;49615:8;:13;49611:44;;;49637:18;;;;;;;;;;;;;;49611:44;49668:61;49698:1;49702:2;49706:12;49720:8;49668:21;:61::i;:::-;50041:8;50006:12;:16;50019:2;50006:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50105:8;50065:12;:16;50078:2;50065:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50164:2;50131:11;:25;50143:12;50131:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50231:15;50181:11;:25;50193:12;50181:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;50264:20;50287:12;50264:35;;50314:11;50343:8;50328:12;:23;50314:37;;50372:15;:2;:13;;;:15::i;:::-;50368:631;;;50408:313;50464:12;50460:2;50439:38;;50456:1;50439:38;;;;;;;;;;;;50505:69;50544:1;50548:2;50552:14;;;;;;50568:5;50505:30;:69::i;:::-;50500:174;;50610:40;;;;;;;;;;;;;;50500:174;50716:3;50701:12;:18;50408:313;;50802:12;50785:13;;:29;50781:43;;50816:8;;;50781:43;50368:631;;;50865:119;50921:14;;;;;;50917:2;50896:40;;50913:1;50896:40;;;;;;;;;;;;50979:3;50964:12;:18;50865:119;;50368:631;51029:12;51013:13;:28;;;;49981:1072;;51063:60;51092:1;51096:2;51100:12;51114:8;51063:20;:60::i;:::-;49494:1637;49382:1749;;;:::o;10821:157::-;10906:4;10945:25;10930:40;;;:11;:40;;;;10923:47;;10821:157;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:118::-;5887:24;5905:5;5887:24;:::i;:::-;5882:3;5875:37;5800:118;;:::o;5924:222::-;6017:4;6055:2;6044:9;6040:18;6032:26;;6068:71;6136:1;6125:9;6121:17;6112:6;6068:71;:::i;:::-;5924:222;;;;:::o;6152:619::-;6229:6;6237;6245;6294:2;6282:9;6273:7;6269:23;6265:32;6262:119;;;6300:79;;:::i;:::-;6262:119;6420:1;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6391:117;6547:2;6573:53;6618:7;6609:6;6598:9;6594:22;6573:53;:::i;:::-;6563:63;;6518:118;6675:2;6701:53;6746:7;6737:6;6726:9;6722:22;6701:53;:::i;:::-;6691:63;;6646:118;6152:619;;;;;:::o;6777:474::-;6845:6;6853;6902:2;6890:9;6881:7;6877:23;6873:32;6870:119;;;6908:79;;:::i;:::-;6870:119;7028:1;7053:53;7098:7;7089:6;7078:9;7074:22;7053:53;:::i;:::-;7043:63;;6999:117;7155:2;7181:53;7226:7;7217:6;7206:9;7202:22;7181:53;:::i;:::-;7171:63;;7126:118;6777:474;;;;;:::o;7257:332::-;7378:4;7416:2;7405:9;7401:18;7393:26;;7429:71;7497:1;7486:9;7482:17;7473:6;7429:71;:::i;:::-;7510:72;7578:2;7567:9;7563:18;7554:6;7510:72;:::i;:::-;7257:332;;;;;:::o;7595:329::-;7654:6;7703:2;7691:9;7682:7;7678:23;7674:32;7671:119;;;7709:79;;:::i;:::-;7671:119;7829:1;7854:53;7899:7;7890:6;7879:9;7875:22;7854:53;:::i;:::-;7844:63;;7800:117;7595:329;;;;:::o;7930:108::-;8007:24;8025:5;8007:24;:::i;:::-;8002:3;7995:37;7930:108;;:::o;8044:99::-;8115:21;8130:5;8115:21;:::i;:::-;8110:3;8103:34;8044:99;;:::o;8225:1432::-;8380:4;8375:3;8371:14;8473:4;8466:5;8462:16;8456:23;8492:63;8549:4;8544:3;8540:14;8526:12;8492:63;:::i;:::-;8395:170;8657:4;8650:5;8646:16;8640:23;8676:63;8733:4;8728:3;8724:14;8710:12;8676:63;:::i;:::-;8575:174;8837:4;8830:5;8826:16;8820:23;8856:63;8913:4;8908:3;8904:14;8890:12;8856:63;:::i;:::-;8759:170;9019:4;9012:5;9008:16;9002:23;9038:57;9089:4;9084:3;9080:14;9066:12;9038:57;:::i;:::-;8939:166;9194:4;9187:5;9183:16;9177:23;9213:63;9270:4;9265:3;9261:14;9247:12;9213:63;:::i;:::-;9115:171;9374:4;9367:5;9363:16;9357:23;9393:63;9450:4;9445:3;9441:14;9427:12;9393:63;:::i;:::-;9296:170;9558:4;9551:5;9547:16;9541:23;9577:63;9634:4;9629:3;9625:14;9611:12;9577:63;:::i;:::-;9476:174;8349:1308;8225:1432;;:::o;9663:339::-;9814:4;9852:3;9841:9;9837:19;9829:27;;9866:129;9992:1;9981:9;9977:17;9968:6;9866:129;:::i;:::-;9663:339;;;;:::o;10008:117::-;10117:1;10114;10107:12;10131:117;10240:1;10237;10230:12;10254:180;10302:77;10299:1;10292:88;10399:4;10396:1;10389:15;10423:4;10420:1;10413:15;10440:281;10523:27;10545:4;10523:27;:::i;:::-;10515:6;10511:40;10653:6;10641:10;10638:22;10617:18;10605:10;10602:34;10599:62;10596:88;;;10664:18;;:::i;:::-;10596:88;10704:10;10700:2;10693:22;10483:238;10440:281;;:::o;10727:129::-;10761:6;10788:20;;:::i;:::-;10778:30;;10817:33;10845:4;10837:6;10817:33;:::i;:::-;10727:129;;;:::o;10862:308::-;10924:4;11014:18;11006:6;11003:30;11000:56;;;11036:18;;:::i;:::-;11000:56;11074:29;11096:6;11074:29;:::i;:::-;11066:37;;11158:4;11152;11148:15;11140:23;;10862:308;;;:::o;11176:154::-;11260:6;11255:3;11250;11237:30;11322:1;11313:6;11308:3;11304:16;11297:27;11176:154;;;:::o;11336:412::-;11414:5;11439:66;11455:49;11497:6;11455:49;:::i;:::-;11439:66;:::i;:::-;11430:75;;11528:6;11521:5;11514:21;11566:4;11559:5;11555:16;11604:3;11595:6;11590:3;11586:16;11583:25;11580:112;;;11611:79;;:::i;:::-;11580:112;11701:41;11735:6;11730:3;11725;11701:41;:::i;:::-;11420:328;11336:412;;;;;:::o;11768:340::-;11824:5;11873:3;11866:4;11858:6;11854:17;11850:27;11840:122;;11881:79;;:::i;:::-;11840:122;11998:6;11985:20;12023:79;12098:3;12090:6;12083:4;12075:6;12071:17;12023:79;:::i;:::-;12014:88;;11830:278;11768:340;;;;:::o;12114:509::-;12183:6;12232:2;12220:9;12211:7;12207:23;12203:32;12200:119;;;12238:79;;:::i;:::-;12200:119;12386:1;12375:9;12371:17;12358:31;12416:18;12408:6;12405:30;12402:117;;;12438:79;;:::i;:::-;12402:117;12543:63;12598:7;12589:6;12578:9;12574:22;12543:63;:::i;:::-;12533:73;;12329:287;12114:509;;;;:::o;12629:116::-;12699:21;12714:5;12699:21;:::i;:::-;12692:5;12689:32;12679:60;;12735:1;12732;12725:12;12679:60;12629:116;:::o;12751:133::-;12794:5;12832:6;12819:20;12810:29;;12848:30;12872:5;12848:30;:::i;:::-;12751:133;;;;:::o;12890:468::-;12955:6;12963;13012:2;13000:9;12991:7;12987:23;12983:32;12980:119;;;13018:79;;:::i;:::-;12980:119;13138:1;13163:53;13208:7;13199:6;13188:9;13184:22;13163:53;:::i;:::-;13153:63;;13109:117;13265:2;13291:50;13333:7;13324:6;13313:9;13309:22;13291:50;:::i;:::-;13281:60;;13236:115;12890:468;;;;;:::o;13364:307::-;13425:4;13515:18;13507:6;13504:30;13501:56;;;13537:18;;:::i;:::-;13501:56;13575:29;13597:6;13575:29;:::i;:::-;13567:37;;13659:4;13653;13649:15;13641:23;;13364:307;;;:::o;13677:410::-;13754:5;13779:65;13795:48;13836:6;13795:48;:::i;:::-;13779:65;:::i;:::-;13770:74;;13867:6;13860:5;13853:21;13905:4;13898:5;13894:16;13943:3;13934:6;13929:3;13925:16;13922:25;13919:112;;;13950:79;;:::i;:::-;13919:112;14040:41;14074:6;14069:3;14064;14040:41;:::i;:::-;13760:327;13677:410;;;;;:::o;14106:338::-;14161:5;14210:3;14203:4;14195:6;14191:17;14187:27;14177:122;;14218:79;;:::i;:::-;14177:122;14335:6;14322:20;14360:78;14434:3;14426:6;14419:4;14411:6;14407:17;14360:78;:::i;:::-;14351:87;;14167:277;14106:338;;;;:::o;14450:943::-;14545:6;14553;14561;14569;14618:3;14606:9;14597:7;14593:23;14589:33;14586:120;;;14625:79;;:::i;:::-;14586:120;14745:1;14770:53;14815:7;14806:6;14795:9;14791:22;14770:53;:::i;:::-;14760:63;;14716:117;14872:2;14898:53;14943:7;14934:6;14923:9;14919:22;14898:53;:::i;:::-;14888:63;;14843:118;15000:2;15026:53;15071:7;15062:6;15051:9;15047:22;15026:53;:::i;:::-;15016:63;;14971:118;15156:2;15145:9;15141:18;15128:32;15187:18;15179:6;15176:30;15173:117;;;15209:79;;:::i;:::-;15173:117;15314:62;15368:7;15359:6;15348:9;15344:22;15314:62;:::i;:::-;15304:72;;15099:287;14450:943;;;;;;;:::o;15399:474::-;15467:6;15475;15524:2;15512:9;15503:7;15499:23;15495:32;15492:119;;;15530:79;;:::i;:::-;15492:119;15650:1;15675:53;15720:7;15711:6;15700:9;15696:22;15675:53;:::i;:::-;15665:63;;15621:117;15777:2;15803:53;15848:7;15839:6;15828:9;15824:22;15803:53;:::i;:::-;15793:63;;15748:118;15399:474;;;;;:::o;15879:182::-;16019:34;16015:1;16007:6;16003:14;15996:58;15879:182;:::o;16067:366::-;16209:3;16230:67;16294:2;16289:3;16230:67;:::i;:::-;16223:74;;16306:93;16395:3;16306:93;:::i;:::-;16424:2;16419:3;16415:12;16408:19;;16067:366;;;:::o;16439:419::-;16605:4;16643:2;16632:9;16628:18;16620:26;;16692:9;16686:4;16682:20;16678:1;16667:9;16663:17;16656:47;16720:131;16846:4;16720:131;:::i;:::-;16712:139;;16439:419;;;:::o;16864:180::-;16912:77;16909:1;16902:88;17009:4;17006:1;16999:15;17033:4;17030:1;17023:15;17050:320;17094:6;17131:1;17125:4;17121:12;17111:22;;17178:1;17172:4;17168:12;17199:18;17189:81;;17255:4;17247:6;17243:17;17233:27;;17189:81;17317:2;17309:6;17306:14;17286:18;17283:38;17280:84;;;17336:18;;:::i;:::-;17280:84;17101:269;17050:320;;;:::o;17376:232::-;17516:34;17512:1;17504:6;17500:14;17493:58;17585:15;17580:2;17572:6;17568:15;17561:40;17376:232;:::o;17614:366::-;17756:3;17777:67;17841:2;17836:3;17777:67;:::i;:::-;17770:74;;17853:93;17942:3;17853:93;:::i;:::-;17971:2;17966:3;17962:12;17955:19;;17614:366;;;:::o;17986:419::-;18152:4;18190:2;18179:9;18175:18;18167:26;;18239:9;18233:4;18229:20;18225:1;18214:9;18210:17;18203:47;18267:131;18393:4;18267:131;:::i;:::-;18259:139;;17986:419;;;:::o;18411:180::-;18459:77;18456:1;18449:88;18556:4;18553:1;18546:15;18580:4;18577:1;18570:15;18597:348;18637:7;18660:20;18678:1;18660:20;:::i;:::-;18655:25;;18694:20;18712:1;18694:20;:::i;:::-;18689:25;;18882:1;18814:66;18810:74;18807:1;18804:81;18799:1;18792:9;18785:17;18781:105;18778:131;;;18889:18;;:::i;:::-;18778:131;18937:1;18934;18930:9;18919:20;;18597:348;;;;:::o;18951:180::-;18999:77;18996:1;18989:88;19096:4;19093:1;19086:15;19120:4;19117:1;19110:15;19137:185;19177:1;19194:20;19212:1;19194:20;:::i;:::-;19189:25;;19228:20;19246:1;19228:20;:::i;:::-;19223:25;;19267:1;19257:35;;19272:18;;:::i;:::-;19257:35;19314:1;19311;19307:9;19302:14;;19137:185;;;;:::o;19328:228::-;19468:34;19464:1;19456:6;19452:14;19445:58;19537:11;19532:2;19524:6;19520:15;19513:36;19328:228;:::o;19562:366::-;19704:3;19725:67;19789:2;19784:3;19725:67;:::i;:::-;19718:74;;19801:93;19890:3;19801:93;:::i;:::-;19919:2;19914:3;19910:12;19903:19;;19562:366;;;:::o;19934:419::-;20100:4;20138:2;20127:9;20123:18;20115:26;;20187:9;20181:4;20177:20;20173:1;20162:9;20158:17;20151:47;20215:131;20341:4;20215:131;:::i;:::-;20207:139;;19934:419;;;:::o;20359:180::-;20407:77;20404:1;20397:88;20504:4;20501:1;20494:15;20528:4;20525:1;20518:15;20545:181;20685:33;20681:1;20673:6;20669:14;20662:57;20545:181;:::o;20732:366::-;20874:3;20895:67;20959:2;20954:3;20895:67;:::i;:::-;20888:74;;20971:93;21060:3;20971:93;:::i;:::-;21089:2;21084:3;21080:12;21073:19;;20732:366;;;:::o;21104:419::-;21270:4;21308:2;21297:9;21293:18;21285:26;;21357:9;21351:4;21347:20;21343:1;21332:9;21328:17;21321:47;21385:131;21511:4;21385:131;:::i;:::-;21377:139;;21104:419;;;:::o;21529:220::-;21669:34;21665:1;21657:6;21653:14;21646:58;21738:3;21733:2;21725:6;21721:15;21714:28;21529:220;:::o;21755:366::-;21897:3;21918:67;21982:2;21977:3;21918:67;:::i;:::-;21911:74;;21994:93;22083:3;21994:93;:::i;:::-;22112:2;22107:3;22103:12;22096:19;;21755:366;;;:::o;22127:419::-;22293:4;22331:2;22320:9;22316:18;22308:26;;22380:9;22374:4;22370:20;22366:1;22355:9;22351:17;22344:47;22408:131;22534:4;22408:131;:::i;:::-;22400:139;;22127:419;;;:::o;22552:250::-;22692:34;22688:1;22680:6;22676:14;22669:58;22761:33;22756:2;22748:6;22744:15;22737:58;22552:250;:::o;22808:366::-;22950:3;22971:67;23035:2;23030:3;22971:67;:::i;:::-;22964:74;;23047:93;23136:3;23047:93;:::i;:::-;23165:2;23160:3;23156:12;23149:19;;22808:366;;;:::o;23180:419::-;23346:4;23384:2;23373:9;23369:18;23361:26;;23433:9;23427:4;23423:20;23419:1;23408:9;23404:17;23397:47;23461:131;23587:4;23461:131;:::i;:::-;23453:139;;23180:419;;;:::o;23605:182::-;23745:34;23741:1;23733:6;23729:14;23722:58;23605:182;:::o;23793:366::-;23935:3;23956:67;24020:2;24015:3;23956:67;:::i;:::-;23949:74;;24032:93;24121:3;24032:93;:::i;:::-;24150:2;24145:3;24141:12;24134:19;;23793:366;;;:::o;24165:419::-;24331:4;24369:2;24358:9;24354:18;24346:26;;24418:9;24412:4;24408:20;24404:1;24393:9;24389:17;24382:47;24446:131;24572:4;24446:131;:::i;:::-;24438:139;;24165:419;;;:::o;24590:229::-;24730:34;24726:1;24718:6;24714:14;24707:58;24799:12;24794:2;24786:6;24782:15;24775:37;24590:229;:::o;24825:366::-;24967:3;24988:67;25052:2;25047:3;24988:67;:::i;:::-;24981:74;;25064:93;25153:3;25064:93;:::i;:::-;25182:2;25177:3;25173:12;25166:19;;24825:366;;;:::o;25197:419::-;25363:4;25401:2;25390:9;25386:18;25378:26;;25450:9;25444:4;25440:20;25436:1;25425:9;25421:17;25414:47;25478:131;25604:4;25478:131;:::i;:::-;25470:139;;25197:419;;;:::o;25622:181::-;25762:33;25758:1;25750:6;25746:14;25739:57;25622:181;:::o;25809:366::-;25951:3;25972:67;26036:2;26031:3;25972:67;:::i;:::-;25965:74;;26048:93;26137:3;26048:93;:::i;:::-;26166:2;26161:3;26157:12;26150:19;;25809:366;;;:::o;26181:419::-;26347:4;26385:2;26374:9;26370:18;26362:26;;26434:9;26428:4;26424:20;26420:1;26409:9;26405:17;26398:47;26462:131;26588:4;26462:131;:::i;:::-;26454:139;;26181:419;;;:::o;26606:191::-;26646:4;26666:20;26684:1;26666:20;:::i;:::-;26661:25;;26700:20;26718:1;26700:20;:::i;:::-;26695:25;;26739:1;26736;26733:8;26730:34;;;26744:18;;:::i;:::-;26730:34;26789:1;26786;26782:9;26774:17;;26606:191;;;;:::o;26803:305::-;26843:3;26862:20;26880:1;26862:20;:::i;:::-;26857:25;;26896:20;26914:1;26896:20;:::i;:::-;26891:25;;27050:1;26982:66;26978:74;26975:1;26972:81;26969:107;;;27056:18;;:::i;:::-;26969:107;27100:1;27097;27093:9;27086:16;;26803:305;;;;:::o;27114:171::-;27254:23;27250:1;27242:6;27238:14;27231:47;27114:171;:::o;27291:366::-;27433:3;27454:67;27518:2;27513:3;27454:67;:::i;:::-;27447:74;;27530:93;27619:3;27530:93;:::i;:::-;27648:2;27643:3;27639:12;27632:19;;27291:366;;;:::o;27663:419::-;27829:4;27867:2;27856:9;27852:18;27844:26;;27916:9;27910:4;27906:20;27902:1;27891:9;27887:17;27880:47;27944:131;28070:4;27944:131;:::i;:::-;27936:139;;27663:419;;;:::o;28088:148::-;28190:11;28227:3;28212:18;;28088:148;;;;:::o;28242:141::-;28291:4;28314:3;28306:11;;28337:3;28334:1;28327:14;28371:4;28368:1;28358:18;28350:26;;28242:141;;;:::o;28413:845::-;28516:3;28553:5;28547:12;28582:36;28608:9;28582:36;:::i;:::-;28634:89;28716:6;28711:3;28634:89;:::i;:::-;28627:96;;28754:1;28743:9;28739:17;28770:1;28765:137;;;;28916:1;28911:341;;;;28732:520;;28765:137;28849:4;28845:9;28834;28830:25;28825:3;28818:38;28885:6;28880:3;28876:16;28869:23;;28765:137;;28911:341;28978:38;29010:5;28978:38;:::i;:::-;29038:1;29052:154;29066:6;29063:1;29060:13;29052:154;;;29140:7;29134:14;29130:1;29125:3;29121:11;29114:35;29190:1;29181:7;29177:15;29166:26;;29088:4;29085:1;29081:12;29076:17;;29052:154;;;29235:6;29230:3;29226:16;29219:23;;28918:334;;28732:520;;28520:738;;28413:845;;;;:::o;29264:377::-;29370:3;29398:39;29431:5;29398:39;:::i;:::-;29453:89;29535:6;29530:3;29453:89;:::i;:::-;29446:96;;29551:52;29596:6;29591:3;29584:4;29577:5;29573:16;29551:52;:::i;:::-;29628:6;29623:3;29619:16;29612:23;;29374:267;29264:377;;;;:::o;29647:429::-;29824:3;29846:92;29934:3;29925:6;29846:92;:::i;:::-;29839:99;;29955:95;30046:3;30037:6;29955:95;:::i;:::-;29948:102;;30067:3;30060:10;;29647:429;;;;;:::o;30082:155::-;30222:7;30218:1;30210:6;30206:14;30199:31;30082:155;:::o;30243:400::-;30403:3;30424:84;30506:1;30501:3;30424:84;:::i;:::-;30417:91;;30517:93;30606:3;30517:93;:::i;:::-;30635:1;30630:3;30626:11;30619:18;;30243:400;;;:::o;30649:695::-;30927:3;30949:92;31037:3;31028:6;30949:92;:::i;:::-;30942:99;;31058:95;31149:3;31140:6;31058:95;:::i;:::-;31051:102;;31170:148;31314:3;31170:148;:::i;:::-;31163:155;;31335:3;31328:10;;30649:695;;;;;:::o;31350:225::-;31490:34;31486:1;31478:6;31474:14;31467:58;31559:8;31554:2;31546:6;31542:15;31535:33;31350:225;:::o;31581:366::-;31723:3;31744:67;31808:2;31803:3;31744:67;:::i;:::-;31737:74;;31820:93;31909:3;31820:93;:::i;:::-;31938:2;31933:3;31929:12;31922:19;;31581:366;;;:::o;31953:419::-;32119:4;32157:2;32146:9;32142:18;32134:26;;32206:9;32200:4;32196:20;32192:1;32181:9;32177:17;32170:47;32234:131;32360:4;32234:131;:::i;:::-;32226:139;;31953:419;;;:::o;32378:229::-;32518:34;32514:1;32506:6;32502:14;32495:58;32587:12;32582:2;32574:6;32570:15;32563:37;32378:229;:::o;32613:366::-;32755:3;32776:67;32840:2;32835:3;32776:67;:::i;:::-;32769:74;;32852:93;32941:3;32852:93;:::i;:::-;32970:2;32965:3;32961:12;32954:19;;32613:366;;;:::o;32985:419::-;33151:4;33189:2;33178:9;33174:18;33166:26;;33238:9;33232:4;33228:20;33224:1;33213:9;33209:17;33202:47;33266:131;33392:4;33266:131;:::i;:::-;33258:139;;32985:419;;;:::o;33410:175::-;33550:27;33546:1;33538:6;33534:14;33527:51;33410:175;:::o;33591:366::-;33733:3;33754:67;33818:2;33813:3;33754:67;:::i;:::-;33747:74;;33830:93;33919:3;33830:93;:::i;:::-;33948:2;33943:3;33939:12;33932:19;;33591:366;;;:::o;33963:419::-;34129:4;34167:2;34156:9;34152:18;34144:26;;34216:9;34210:4;34206:20;34202:1;34191:9;34187:17;34180:47;34244:131;34370:4;34244:131;:::i;:::-;34236:139;;33963:419;;;:::o;34388:177::-;34528:29;34524:1;34516:6;34512:14;34505:53;34388:177;:::o;34571:366::-;34713:3;34734:67;34798:2;34793:3;34734:67;:::i;:::-;34727:74;;34810:93;34899:3;34810:93;:::i;:::-;34928:2;34923:3;34919:12;34912:19;;34571:366;;;:::o;34943:419::-;35109:4;35147:2;35136:9;35132:18;35124:26;;35196:9;35190:4;35186:20;35182:1;35171:9;35167:17;35160:47;35224:131;35350:4;35224:131;:::i;:::-;35216:139;;34943:419;;;:::o;35368:98::-;35419:6;35453:5;35447:12;35437:22;;35368:98;;;:::o;35472:168::-;35555:11;35589:6;35584:3;35577:19;35629:4;35624:3;35620:14;35605:29;;35472:168;;;;:::o;35646:360::-;35732:3;35760:38;35792:5;35760:38;:::i;:::-;35814:70;35877:6;35872:3;35814:70;:::i;:::-;35807:77;;35893:52;35938:6;35933:3;35926:4;35919:5;35915:16;35893:52;:::i;:::-;35970:29;35992:6;35970:29;:::i;:::-;35965:3;35961:39;35954:46;;35736:270;35646:360;;;;:::o;36012:640::-;36207:4;36245:3;36234:9;36230:19;36222:27;;36259:71;36327:1;36316:9;36312:17;36303:6;36259:71;:::i;:::-;36340:72;36408:2;36397:9;36393:18;36384:6;36340:72;:::i;:::-;36422;36490:2;36479:9;36475:18;36466:6;36422:72;:::i;:::-;36541:9;36535:4;36531:20;36526:2;36515:9;36511:18;36504:48;36569:76;36640:4;36631:6;36569:76;:::i;:::-;36561:84;;36012:640;;;;;;;:::o;36658:141::-;36714:5;36745:6;36739:13;36730:22;;36761:32;36787:5;36761:32;:::i;:::-;36658:141;;;;:::o;36805:349::-;36874:6;36923:2;36911:9;36902:7;36898:23;36894:32;36891:119;;;36929:79;;:::i;:::-;36891:119;37049:1;37074:63;37129:7;37120:6;37109:9;37105:22;37074:63;:::i;:::-;37064:73;;37020:127;36805:349;;;;:::o;37160:233::-;37199:3;37222:24;37240:5;37222:24;:::i;:::-;37213:33;;37268:66;37261:5;37258:77;37255:103;;;37338:18;;:::i;:::-;37255:103;37385:1;37378:5;37374:13;37367:20;;37160:233;;;:::o;37399:176::-;37431:1;37448:20;37466:1;37448:20;:::i;:::-;37443:25;;37482:20;37500:1;37482:20;:::i;:::-;37477:25;;37521:1;37511:35;;37526:18;;:::i;:::-;37511:35;37567:1;37564;37560:9;37555:14;;37399:176;;;;:::o;37581:180::-;37629:77;37626:1;37619:88;37726:4;37723:1;37716:15;37750:4;37747:1;37740:15
Swarm Source
ipfs://b68e79bf6b0d662258e54b9fac35bb737f4186bd7d189e85662e19c8408265d4
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.