Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 6 from a total of 6 transactions
Loading...
Loading
Contract Name:
Jazzercise
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-22 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and 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; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * 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(); 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; } /** * @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); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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 IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ 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(); } } /** * @dev 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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0) 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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } 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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__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 Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: JAZZERCISE.sol pragma solidity 0.8.11; contract Jazzercise is ERC721A, Ownable, ReentrancyGuard{ using Strings for uint; mapping(address=>uint256) public numberMinted; mapping(address=>uint256) public claimedWhiteListCount; string private _baseURIextended = "ipfs/QmRTqk51CdyH1YtaoTp85a4oXHRuy82Ep2HsAqDVbbtKkP/cr/json/"; bool revealed = false; bool paused = false; uint256 public MAX_SUPPLY = 2000; uint256 FREE_MINTS = 1000; uint256 MAX_FREE_MINT_PER_EOA = 3; uint256 MAX_HOLDING_AFTER_MINT = 10; uint256 MAX_MINT_VALUE = 10; uint256 public MINT_PRICE = 0.005 ether; constructor() ERC721A("Jazzercise", "JAZZ") { } function setBaseURI(string memory baseURI_) external onlyOwner() { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function mint(uint256 quantity) external payable nonReentrant { require(quantity <= MAX_MINT_VALUE, "Maximum per mint is 5"); uint256 numberOfTokensAlreadyMinted = totalSupply(); uint256 totalMinted = numberOfTokensAlreadyMinted + quantity; require(totalMinted <= MAX_SUPPLY, "Number exceeds the maximum supply"); require(paused == false, "Paused Minting"); if(totalMinted <= FREE_MINTS){ claimedWhiteListCount[msg.sender] += quantity; require(claimedWhiteListCount[msg.sender] <= MAX_FREE_MINT_PER_EOA, "You've claimed all your whitelists"); }else{ uint256 amount = MINT_PRICE * quantity; require(msg.value == amount, "Incorrect Amount"); numberMinted[msg.sender] += quantity; require(numberMinted[msg.sender] <= MAX_HOLDING_AFTER_MINT, "You've reached your maximum mint limit"); } _safeMint(msg.sender, quantity); } function withdrawFunds() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function reveal() external onlyOwner() { revealed = true; } function pause() external onlyOwner() { paused = true; } function unpause() external onlyOwner() { paused = false; } function freeMintsRemaining() public view returns(uint256 remainder) { uint256 tokensMinted = totalSupply(); if(tokensMinted < FREE_MINTS){ return FREE_MINTS - tokensMinted; }else{ return 0; } } function maxSupply() public view returns(uint256 max){ return MAX_SUPPLY; } function getMintPrice(uint256 numberOfTokensToMint) public view returns(uint256 price) { return numberOfTokensToMint * MINT_PRICE; } function setMintPrice(uint256 newMintPrice) external onlyOwner{ MINT_PRICE = newMintPrice; } 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, Strings.toString(tokenId), ".json")) : ""; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } }
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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedWhiteListCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintsRemaining","outputs":[{"internalType":"uint256","name":"remainder","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokensToMint","type":"uint256"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280603c81526020016200389e603c9139600c9080519060200190620000359291906200025b565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506107d0600e556103e8600f556003601055600a601155600a6012556611c37937e080006013553480156200009f57600080fd5b506040518060400160405280600a81526020017f4a617a7a657263697365000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a415a5a000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001249291906200025b565b5080600390805190602001906200013d9291906200025b565b506200014e6200018460201b60201c565b6000819055505050620001766200016a6200018d60201b60201c565b6200019560201b60201c565b600160098190555062000370565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000269906200033a565b90600052602060002090601f0160209004810192826200028d5760008555620002d9565b82601f10620002a857805160ff1916838001178555620002d9565b82800160010185558215620002d9579182015b82811115620002d8578251825591602001919060010190620002bb565b5b509050620002e89190620002ec565b5090565b5b8082111562000307576000816000905550600101620002ed565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035357607f821691505b602082108114156200036a57620003696200030b565b5b50919050565b61351e80620003806000396000f3fe6080604052600436106101d85760003560e01c80637ab045df11610102578063b88d4fde11610095578063dc33e68111610064578063dc33e68114610658578063e985e9c514610695578063f2fde38b146106d2578063f4a0a528146106fb576101d8565b8063b88d4fde1461059c578063c002d23d146105c5578063c87b56dd146105f0578063d5abeb011461062d576101d8565b806395d89b41116100d157806395d89b4114610515578063a0712d6814610540578063a22cb4651461055c578063a475b5dd14610585576101d8565b80637ab045df1461046b5780638456cb59146104a85780638868b9ff146104bf5780638da5cb5b146104ea576101d8565b806332cb6b0c1161017a57806355f804b31161014957806355f804b3146103b15780636352211e146103da57806370a0823114610417578063715018a614610454576101d8565b806332cb6b0c146103095780633f4ba83a1461033457806342842e0e1461034b578063559e775b14610374576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806324600fc3146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061259a565b610724565b60405161021191906125e2565b60405180910390f35b34801561022657600080fd5b5061022f6107b6565b60405161023c9190612696565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906126ee565b610848565b604051610279919061275c565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906127a3565b6108c4565b005b3480156102b757600080fd5b506102c0610a6b565b6040516102cd91906127f2565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f8919061280d565b610a82565b005b610307610a92565b005b34801561031557600080fd5b5061031e610b5e565b60405161032b91906127f2565b60405180910390f35b34801561034057600080fd5b50610349610b64565b005b34801561035757600080fd5b50610372600480360381019061036d919061280d565b610bfd565b005b34801561038057600080fd5b5061039b600480360381019061039691906126ee565b610c1d565b6040516103a891906127f2565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612995565b610c34565b005b3480156103e657600080fd5b5061040160048036038101906103fc91906126ee565b610cca565b60405161040e919061275c565b60405180910390f35b34801561042357600080fd5b5061043e600480360381019061043991906129de565b610cdc565b60405161044b91906127f2565b60405180910390f35b34801561046057600080fd5b50610469610d95565b005b34801561047757600080fd5b50610492600480360381019061048d91906129de565b610e1d565b60405161049f91906127f2565b60405180910390f35b3480156104b457600080fd5b506104bd610e35565b005b3480156104cb57600080fd5b506104d4610ece565b6040516104e191906127f2565b60405180910390f35b3480156104f657600080fd5b506104ff610f04565b60405161050c919061275c565b60405180910390f35b34801561052157600080fd5b5061052a610f2e565b6040516105379190612696565b60405180910390f35b61055a600480360381019061055591906126ee565b610fc0565b005b34801561056857600080fd5b50610583600480360381019061057e9190612a37565b611339565b005b34801561059157600080fd5b5061059a6114b1565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612b18565b61154a565b005b3480156105d157600080fd5b506105da6115bd565b6040516105e791906127f2565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906126ee565b6115c3565b6040516106249190612696565b60405180910390f35b34801561063957600080fd5b5061064261166a565b60405161064f91906127f2565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906129de565b611674565b60405161068c91906127f2565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612b9b565b61168c565b6040516106c991906125e2565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906129de565b611720565b005b34801561070757600080fd5b50610722600480360381019061071d91906126ee565b611818565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107c590612c0a565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612c0a565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b60006108538261189e565b610889576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cf826118fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610937576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109566119cb565b73ffffffffffffffffffffffffffffffffffffffff16146109b9576109828161097d6119cb565b61168c565b6109b8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a756119d3565b6001546000540303905090565b610a8d8383836119dc565b505050565b610a9a611d86565b73ffffffffffffffffffffffffffffffffffffffff16610ab8610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590612c88565b60405180910390fd5b610b16610f04565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b5b573d6000803e3d6000fd5b50565b600e5481565b610b6c611d86565b73ffffffffffffffffffffffffffffffffffffffff16610b8a610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790612c88565b60405180910390fd5b6000600d60016101000a81548160ff021916908315150217905550565b610c188383836040518060200160405280600081525061154a565b505050565b600060135482610c2d9190612cd7565b9050919050565b610c3c611d86565b73ffffffffffffffffffffffffffffffffffffffff16610c5a610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790612c88565b60405180910390fd5b80600c9080519060200190610cc692919061248b565b5050565b6000610cd5826118fd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d9d611d86565b73ffffffffffffffffffffffffffffffffffffffff16610dbb610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890612c88565b60405180910390fd5b610e1b6000611d8e565b565b600b6020528060005260406000206000915090505481565b610e3d611d86565b73ffffffffffffffffffffffffffffffffffffffff16610e5b610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890612c88565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b600080610ed9610a6b565b9050600f54811015610efb5780600f54610ef39190612d31565b915050610f01565b60009150505b90565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3d90612c0a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6990612c0a565b8015610fb65780601f10610f8b57610100808354040283529160200191610fb6565b820191906000526020600020905b815481529060010190602001808311610f9957829003601f168201915b5050505050905090565b60026009541415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90612db1565b60405180910390fd5b6002600981905550601254811115611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612e1d565b60405180910390fd5b600061105d610a6b565b90506000828261106d9190612e3d565b9050600e548111156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612f05565b60405180910390fd5b60001515600d60019054906101000a900460ff1615151461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190612f71565b60405180910390fd5b600f5481116111f25782600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111629190612e3d565b92505081905550601054600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e490613003565b60405180910390fd5b611322565b6000836013546112029190612cd7565b9050803414611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d9061306f565b60405180910390fd5b83600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112959190612e3d565b92505081905550601154600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790613101565b60405180910390fd5b505b61132c3384611e54565b5050600160098190555050565b6113416119cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113b36119cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114606119cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a591906125e2565b60405180910390a35050565b6114b9611d86565b73ffffffffffffffffffffffffffffffffffffffff166114d7610f04565b73ffffffffffffffffffffffffffffffffffffffff161461152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490612c88565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b6115558484846119dc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115b75761158084848484611e72565b6115b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60135481565b60606115ce8261189e565b61160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613193565b60405180910390fd5b6000611617611fc3565b905060008151116116375760405180602001604052806000815250611662565b8061164184612055565b60405160200161165292919061323b565b6040516020818303038152906040525b915050919050565b6000600e54905090565b600a6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611728611d86565b73ffffffffffffffffffffffffffffffffffffffff16611746610f04565b73ffffffffffffffffffffffffffffffffffffffff161461179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390612c88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561180c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611803906132dc565b60405180910390fd5b61181581611d8e565b50565b611820611d86565b73ffffffffffffffffffffffffffffffffffffffff1661183e610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612c88565b60405180910390fd5b8060138190555050565b6000816118a96119d3565b111580156118b8575060005482105b80156118f6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061190c6119d3565b11611994576000548110156119935760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611991575b600081141561198757600460008360019003935083815260200190815260200160002054905061195c565b80925050506119c6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b60006119e7826118fd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a6f6119cb565b73ffffffffffffffffffffffffffffffffffffffff161480611a9e5750611a9d85611a986119cb565b61168c565b5b80611ae35750611aac6119cb565b73ffffffffffffffffffffffffffffffffffffffff16611acb84610848565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b1c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b9085858560016121b6565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c8d866121bc565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611d17576000600184019050600060046000838152602001908152602001600020541415611d15576000548114611d14578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d7f85858560016121c6565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e6e8282604051806020016040528060008152506121cc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e986119cb565b8786866040518563ffffffff1660e01b8152600401611eba9493929190613351565b6020604051808303816000875af1925050508015611ef657506040513d601f19601f82011682018060405250810190611ef391906133b2565b60015b611f70573d8060008114611f26576040519150601f19603f3d011682016040523d82523d6000602084013e611f2b565b606091505b50600081511415611f68576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611fd290612c0a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffe90612c0a565b801561204b5780601f106120205761010080835404028352916020019161204b565b820191906000526020600020905b81548152906001019060200180831161202e57829003601f168201915b5050505050905090565b6060600082141561209d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121b1565b600082905060005b600082146120cf5780806120b8906133df565b915050600a826120c89190613457565b91506120a5565b60008167ffffffffffffffff8111156120eb576120ea61286a565b5b6040519080825280601f01601f19166020018201604052801561211d5781602001600182028036833780820191505090505b5090505b600085146121aa576001826121369190612d31565b9150600a856121459190613488565b60306121519190612e3d565b60f81b818381518110612167576121666134b9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121a39190613457565b9450612121565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612239576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612274576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61228160008583866121b6565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122e660018514612481565b901b60a042901b6122f6866121bc565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146123fa575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123aa6000878480600101955087611e72565b6123e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061233b5782600054146123f557600080fd5b612465565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123fb575b81600081905550505061247b60008583866121c6565b50505050565b6000819050919050565b82805461249790612c0a565b90600052602060002090601f0160209004810192826124b95760008555612500565b82601f106124d257805160ff1916838001178555612500565b82800160010185558215612500579182015b828111156124ff5782518255916020019190600101906124e4565b5b50905061250d9190612511565b5090565b5b8082111561252a576000816000905550600101612512565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257781612542565b811461258257600080fd5b50565b6000813590506125948161256e565b92915050565b6000602082840312156125b0576125af612538565b5b60006125be84828501612585565b91505092915050565b60008115159050919050565b6125dc816125c7565b82525050565b60006020820190506125f760008301846125d3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263757808201518184015260208101905061261c565b83811115612646576000848401525b50505050565b6000601f19601f8301169050919050565b6000612668826125fd565b6126728185612608565b9350612682818560208601612619565b61268b8161264c565b840191505092915050565b600060208201905081810360008301526126b0818461265d565b905092915050565b6000819050919050565b6126cb816126b8565b81146126d657600080fd5b50565b6000813590506126e8816126c2565b92915050565b60006020828403121561270457612703612538565b5b6000612712848285016126d9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127468261271b565b9050919050565b6127568161273b565b82525050565b6000602082019050612771600083018461274d565b92915050565b6127808161273b565b811461278b57600080fd5b50565b60008135905061279d81612777565b92915050565b600080604083850312156127ba576127b9612538565b5b60006127c88582860161278e565b92505060206127d9858286016126d9565b9150509250929050565b6127ec816126b8565b82525050565b600060208201905061280760008301846127e3565b92915050565b60008060006060848603121561282657612825612538565b5b60006128348682870161278e565b93505060206128458682870161278e565b9250506040612856868287016126d9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128a28261264c565b810181811067ffffffffffffffff821117156128c1576128c061286a565b5b80604052505050565b60006128d461252e565b90506128e08282612899565b919050565b600067ffffffffffffffff821115612900576128ff61286a565b5b6129098261264c565b9050602081019050919050565b82818337600083830152505050565b6000612938612933846128e5565b6128ca565b90508281526020810184848401111561295457612953612865565b5b61295f848285612916565b509392505050565b600082601f83011261297c5761297b612860565b5b813561298c848260208601612925565b91505092915050565b6000602082840312156129ab576129aa612538565b5b600082013567ffffffffffffffff8111156129c9576129c861253d565b5b6129d584828501612967565b91505092915050565b6000602082840312156129f4576129f3612538565b5b6000612a028482850161278e565b91505092915050565b612a14816125c7565b8114612a1f57600080fd5b50565b600081359050612a3181612a0b565b92915050565b60008060408385031215612a4e57612a4d612538565b5b6000612a5c8582860161278e565b9250506020612a6d85828601612a22565b9150509250929050565b600067ffffffffffffffff821115612a9257612a9161286a565b5b612a9b8261264c565b9050602081019050919050565b6000612abb612ab684612a77565b6128ca565b905082815260208101848484011115612ad757612ad6612865565b5b612ae2848285612916565b509392505050565b600082601f830112612aff57612afe612860565b5b8135612b0f848260208601612aa8565b91505092915050565b60008060008060808587031215612b3257612b31612538565b5b6000612b408782880161278e565b9450506020612b518782880161278e565b9350506040612b62878288016126d9565b925050606085013567ffffffffffffffff811115612b8357612b8261253d565b5b612b8f87828801612aea565b91505092959194509250565b60008060408385031215612bb257612bb1612538565b5b6000612bc08582860161278e565b9250506020612bd18582860161278e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2257607f821691505b60208210811415612c3657612c35612bdb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c72602083612608565b9150612c7d82612c3c565b602082019050919050565b60006020820190508181036000830152612ca181612c65565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ce2826126b8565b9150612ced836126b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2657612d25612ca8565b5b828202905092915050565b6000612d3c826126b8565b9150612d47836126b8565b925082821015612d5a57612d59612ca8565b5b828203905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612d9b601f83612608565b9150612da682612d65565b602082019050919050565b60006020820190508181036000830152612dca81612d8e565b9050919050565b7f4d6178696d756d20706572206d696e7420697320350000000000000000000000600082015250565b6000612e07601583612608565b9150612e1282612dd1565b602082019050919050565b60006020820190508181036000830152612e3681612dfa565b9050919050565b6000612e48826126b8565b9150612e53836126b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e8857612e87612ca8565b5b828201905092915050565b7f4e756d626572206578636565647320746865206d6178696d756d20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000612eef602183612608565b9150612efa82612e93565b604082019050919050565b60006020820190508181036000830152612f1e81612ee2565b9050919050565b7f506175736564204d696e74696e67000000000000000000000000000000000000600082015250565b6000612f5b600e83612608565b9150612f6682612f25565b602082019050919050565b60006020820190508181036000830152612f8a81612f4e565b9050919050565b7f596f7527766520636c61696d656420616c6c20796f75722077686974656c697360008201527f7473000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fed602283612608565b9150612ff882612f91565b604082019050919050565b6000602082019050818103600083015261301c81612fe0565b9050919050565b7f496e636f727265637420416d6f756e7400000000000000000000000000000000600082015250565b6000613059601083612608565b915061306482613023565b602082019050919050565b600060208201905081810360008301526130888161304c565b9050919050565b7f596f75277665207265616368656420796f7572206d6178696d756d206d696e7460008201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b60006130eb602683612608565b91506130f68261308f565b604082019050919050565b6000602082019050818103600083015261311a816130de565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061317d602f83612608565b915061318882613121565b604082019050919050565b600060208201905081810360008301526131ac81613170565b9050919050565b600081905092915050565b60006131c9826125fd565b6131d381856131b3565b93506131e3818560208601612619565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132256005836131b3565b9150613230826131ef565b600582019050919050565b600061324782856131be565b915061325382846131be565b915061325e82613218565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132c6602683612608565b91506132d18261326a565b604082019050919050565b600060208201905081810360008301526132f5816132b9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613323826132fc565b61332d8185613307565b935061333d818560208601612619565b6133468161264c565b840191505092915050565b6000608082019050613366600083018761274d565b613373602083018661274d565b61338060408301856127e3565b81810360608301526133928184613318565b905095945050505050565b6000815190506133ac8161256e565b92915050565b6000602082840312156133c8576133c7612538565b5b60006133d68482850161339d565b91505092915050565b60006133ea826126b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561341d5761341c612ca8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613462826126b8565b915061346d836126b8565b92508261347d5761347c613428565b5b828204905092915050565b6000613493826126b8565b915061349e836126b8565b9250826134ae576134ad613428565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220be3708225e6da0e8f22a418f529f524e9acdcf31017efce8624abcf498aefbe164736f6c634300080b0033697066732f516d5254716b353143647948315974616f5470383561346f584852757938324570324873417144566262744b6b502f63722f6a736f6e2f
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80637ab045df11610102578063b88d4fde11610095578063dc33e68111610064578063dc33e68114610658578063e985e9c514610695578063f2fde38b146106d2578063f4a0a528146106fb576101d8565b8063b88d4fde1461059c578063c002d23d146105c5578063c87b56dd146105f0578063d5abeb011461062d576101d8565b806395d89b41116100d157806395d89b4114610515578063a0712d6814610540578063a22cb4651461055c578063a475b5dd14610585576101d8565b80637ab045df1461046b5780638456cb59146104a85780638868b9ff146104bf5780638da5cb5b146104ea576101d8565b806332cb6b0c1161017a57806355f804b31161014957806355f804b3146103b15780636352211e146103da57806370a0823114610417578063715018a614610454576101d8565b806332cb6b0c146103095780633f4ba83a1461033457806342842e0e1461034b578063559e775b14610374576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806324600fc3146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061259a565b610724565b60405161021191906125e2565b60405180910390f35b34801561022657600080fd5b5061022f6107b6565b60405161023c9190612696565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906126ee565b610848565b604051610279919061275c565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906127a3565b6108c4565b005b3480156102b757600080fd5b506102c0610a6b565b6040516102cd91906127f2565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f8919061280d565b610a82565b005b610307610a92565b005b34801561031557600080fd5b5061031e610b5e565b60405161032b91906127f2565b60405180910390f35b34801561034057600080fd5b50610349610b64565b005b34801561035757600080fd5b50610372600480360381019061036d919061280d565b610bfd565b005b34801561038057600080fd5b5061039b600480360381019061039691906126ee565b610c1d565b6040516103a891906127f2565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612995565b610c34565b005b3480156103e657600080fd5b5061040160048036038101906103fc91906126ee565b610cca565b60405161040e919061275c565b60405180910390f35b34801561042357600080fd5b5061043e600480360381019061043991906129de565b610cdc565b60405161044b91906127f2565b60405180910390f35b34801561046057600080fd5b50610469610d95565b005b34801561047757600080fd5b50610492600480360381019061048d91906129de565b610e1d565b60405161049f91906127f2565b60405180910390f35b3480156104b457600080fd5b506104bd610e35565b005b3480156104cb57600080fd5b506104d4610ece565b6040516104e191906127f2565b60405180910390f35b3480156104f657600080fd5b506104ff610f04565b60405161050c919061275c565b60405180910390f35b34801561052157600080fd5b5061052a610f2e565b6040516105379190612696565b60405180910390f35b61055a600480360381019061055591906126ee565b610fc0565b005b34801561056857600080fd5b50610583600480360381019061057e9190612a37565b611339565b005b34801561059157600080fd5b5061059a6114b1565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612b18565b61154a565b005b3480156105d157600080fd5b506105da6115bd565b6040516105e791906127f2565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906126ee565b6115c3565b6040516106249190612696565b60405180910390f35b34801561063957600080fd5b5061064261166a565b60405161064f91906127f2565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906129de565b611674565b60405161068c91906127f2565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612b9b565b61168c565b6040516106c991906125e2565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906129de565b611720565b005b34801561070757600080fd5b50610722600480360381019061071d91906126ee565b611818565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107c590612c0a565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612c0a565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b60006108538261189e565b610889576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cf826118fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610937576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109566119cb565b73ffffffffffffffffffffffffffffffffffffffff16146109b9576109828161097d6119cb565b61168c565b6109b8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a756119d3565b6001546000540303905090565b610a8d8383836119dc565b505050565b610a9a611d86565b73ffffffffffffffffffffffffffffffffffffffff16610ab8610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590612c88565b60405180910390fd5b610b16610f04565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b5b573d6000803e3d6000fd5b50565b600e5481565b610b6c611d86565b73ffffffffffffffffffffffffffffffffffffffff16610b8a610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790612c88565b60405180910390fd5b6000600d60016101000a81548160ff021916908315150217905550565b610c188383836040518060200160405280600081525061154a565b505050565b600060135482610c2d9190612cd7565b9050919050565b610c3c611d86565b73ffffffffffffffffffffffffffffffffffffffff16610c5a610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790612c88565b60405180910390fd5b80600c9080519060200190610cc692919061248b565b5050565b6000610cd5826118fd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d9d611d86565b73ffffffffffffffffffffffffffffffffffffffff16610dbb610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890612c88565b60405180910390fd5b610e1b6000611d8e565b565b600b6020528060005260406000206000915090505481565b610e3d611d86565b73ffffffffffffffffffffffffffffffffffffffff16610e5b610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890612c88565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b600080610ed9610a6b565b9050600f54811015610efb5780600f54610ef39190612d31565b915050610f01565b60009150505b90565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3d90612c0a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6990612c0a565b8015610fb65780601f10610f8b57610100808354040283529160200191610fb6565b820191906000526020600020905b815481529060010190602001808311610f9957829003601f168201915b5050505050905090565b60026009541415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90612db1565b60405180910390fd5b6002600981905550601254811115611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612e1d565b60405180910390fd5b600061105d610a6b565b90506000828261106d9190612e3d565b9050600e548111156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612f05565b60405180910390fd5b60001515600d60019054906101000a900460ff1615151461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190612f71565b60405180910390fd5b600f5481116111f25782600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111629190612e3d565b92505081905550601054600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e490613003565b60405180910390fd5b611322565b6000836013546112029190612cd7565b9050803414611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d9061306f565b60405180910390fd5b83600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112959190612e3d565b92505081905550601154600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790613101565b60405180910390fd5b505b61132c3384611e54565b5050600160098190555050565b6113416119cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113b36119cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114606119cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a591906125e2565b60405180910390a35050565b6114b9611d86565b73ffffffffffffffffffffffffffffffffffffffff166114d7610f04565b73ffffffffffffffffffffffffffffffffffffffff161461152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490612c88565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b6115558484846119dc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115b75761158084848484611e72565b6115b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60135481565b60606115ce8261189e565b61160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613193565b60405180910390fd5b6000611617611fc3565b905060008151116116375760405180602001604052806000815250611662565b8061164184612055565b60405160200161165292919061323b565b6040516020818303038152906040525b915050919050565b6000600e54905090565b600a6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611728611d86565b73ffffffffffffffffffffffffffffffffffffffff16611746610f04565b73ffffffffffffffffffffffffffffffffffffffff161461179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390612c88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561180c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611803906132dc565b60405180910390fd5b61181581611d8e565b50565b611820611d86565b73ffffffffffffffffffffffffffffffffffffffff1661183e610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612c88565b60405180910390fd5b8060138190555050565b6000816118a96119d3565b111580156118b8575060005482105b80156118f6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061190c6119d3565b11611994576000548110156119935760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611991575b600081141561198757600460008360019003935083815260200190815260200160002054905061195c565b80925050506119c6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b60006119e7826118fd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a6f6119cb565b73ffffffffffffffffffffffffffffffffffffffff161480611a9e5750611a9d85611a986119cb565b61168c565b5b80611ae35750611aac6119cb565b73ffffffffffffffffffffffffffffffffffffffff16611acb84610848565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b1c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b9085858560016121b6565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c8d866121bc565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611d17576000600184019050600060046000838152602001908152602001600020541415611d15576000548114611d14578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d7f85858560016121c6565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e6e8282604051806020016040528060008152506121cc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e986119cb565b8786866040518563ffffffff1660e01b8152600401611eba9493929190613351565b6020604051808303816000875af1925050508015611ef657506040513d601f19601f82011682018060405250810190611ef391906133b2565b60015b611f70573d8060008114611f26576040519150601f19603f3d011682016040523d82523d6000602084013e611f2b565b606091505b50600081511415611f68576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611fd290612c0a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffe90612c0a565b801561204b5780601f106120205761010080835404028352916020019161204b565b820191906000526020600020905b81548152906001019060200180831161202e57829003601f168201915b5050505050905090565b6060600082141561209d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121b1565b600082905060005b600082146120cf5780806120b8906133df565b915050600a826120c89190613457565b91506120a5565b60008167ffffffffffffffff8111156120eb576120ea61286a565b5b6040519080825280601f01601f19166020018201604052801561211d5781602001600182028036833780820191505090505b5090505b600085146121aa576001826121369190612d31565b9150600a856121459190613488565b60306121519190612e3d565b60f81b818381518110612167576121666134b9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121a39190613457565b9450612121565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612239576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612274576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61228160008583866121b6565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122e660018514612481565b901b60a042901b6122f6866121bc565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146123fa575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123aa6000878480600101955087611e72565b6123e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061233b5782600054146123f557600080fd5b612465565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123fb575b81600081905550505061247b60008583866121c6565b50505050565b6000819050919050565b82805461249790612c0a565b90600052602060002090601f0160209004810192826124b95760008555612500565b82601f106124d257805160ff1916838001178555612500565b82800160010185558215612500579182015b828111156124ff5782518255916020019190600101906124e4565b5b50905061250d9190612511565b5090565b5b8082111561252a576000816000905550600101612512565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257781612542565b811461258257600080fd5b50565b6000813590506125948161256e565b92915050565b6000602082840312156125b0576125af612538565b5b60006125be84828501612585565b91505092915050565b60008115159050919050565b6125dc816125c7565b82525050565b60006020820190506125f760008301846125d3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263757808201518184015260208101905061261c565b83811115612646576000848401525b50505050565b6000601f19601f8301169050919050565b6000612668826125fd565b6126728185612608565b9350612682818560208601612619565b61268b8161264c565b840191505092915050565b600060208201905081810360008301526126b0818461265d565b905092915050565b6000819050919050565b6126cb816126b8565b81146126d657600080fd5b50565b6000813590506126e8816126c2565b92915050565b60006020828403121561270457612703612538565b5b6000612712848285016126d9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127468261271b565b9050919050565b6127568161273b565b82525050565b6000602082019050612771600083018461274d565b92915050565b6127808161273b565b811461278b57600080fd5b50565b60008135905061279d81612777565b92915050565b600080604083850312156127ba576127b9612538565b5b60006127c88582860161278e565b92505060206127d9858286016126d9565b9150509250929050565b6127ec816126b8565b82525050565b600060208201905061280760008301846127e3565b92915050565b60008060006060848603121561282657612825612538565b5b60006128348682870161278e565b93505060206128458682870161278e565b9250506040612856868287016126d9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128a28261264c565b810181811067ffffffffffffffff821117156128c1576128c061286a565b5b80604052505050565b60006128d461252e565b90506128e08282612899565b919050565b600067ffffffffffffffff821115612900576128ff61286a565b5b6129098261264c565b9050602081019050919050565b82818337600083830152505050565b6000612938612933846128e5565b6128ca565b90508281526020810184848401111561295457612953612865565b5b61295f848285612916565b509392505050565b600082601f83011261297c5761297b612860565b5b813561298c848260208601612925565b91505092915050565b6000602082840312156129ab576129aa612538565b5b600082013567ffffffffffffffff8111156129c9576129c861253d565b5b6129d584828501612967565b91505092915050565b6000602082840312156129f4576129f3612538565b5b6000612a028482850161278e565b91505092915050565b612a14816125c7565b8114612a1f57600080fd5b50565b600081359050612a3181612a0b565b92915050565b60008060408385031215612a4e57612a4d612538565b5b6000612a5c8582860161278e565b9250506020612a6d85828601612a22565b9150509250929050565b600067ffffffffffffffff821115612a9257612a9161286a565b5b612a9b8261264c565b9050602081019050919050565b6000612abb612ab684612a77565b6128ca565b905082815260208101848484011115612ad757612ad6612865565b5b612ae2848285612916565b509392505050565b600082601f830112612aff57612afe612860565b5b8135612b0f848260208601612aa8565b91505092915050565b60008060008060808587031215612b3257612b31612538565b5b6000612b408782880161278e565b9450506020612b518782880161278e565b9350506040612b62878288016126d9565b925050606085013567ffffffffffffffff811115612b8357612b8261253d565b5b612b8f87828801612aea565b91505092959194509250565b60008060408385031215612bb257612bb1612538565b5b6000612bc08582860161278e565b9250506020612bd18582860161278e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2257607f821691505b60208210811415612c3657612c35612bdb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c72602083612608565b9150612c7d82612c3c565b602082019050919050565b60006020820190508181036000830152612ca181612c65565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ce2826126b8565b9150612ced836126b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2657612d25612ca8565b5b828202905092915050565b6000612d3c826126b8565b9150612d47836126b8565b925082821015612d5a57612d59612ca8565b5b828203905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612d9b601f83612608565b9150612da682612d65565b602082019050919050565b60006020820190508181036000830152612dca81612d8e565b9050919050565b7f4d6178696d756d20706572206d696e7420697320350000000000000000000000600082015250565b6000612e07601583612608565b9150612e1282612dd1565b602082019050919050565b60006020820190508181036000830152612e3681612dfa565b9050919050565b6000612e48826126b8565b9150612e53836126b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e8857612e87612ca8565b5b828201905092915050565b7f4e756d626572206578636565647320746865206d6178696d756d20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000612eef602183612608565b9150612efa82612e93565b604082019050919050565b60006020820190508181036000830152612f1e81612ee2565b9050919050565b7f506175736564204d696e74696e67000000000000000000000000000000000000600082015250565b6000612f5b600e83612608565b9150612f6682612f25565b602082019050919050565b60006020820190508181036000830152612f8a81612f4e565b9050919050565b7f596f7527766520636c61696d656420616c6c20796f75722077686974656c697360008201527f7473000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fed602283612608565b9150612ff882612f91565b604082019050919050565b6000602082019050818103600083015261301c81612fe0565b9050919050565b7f496e636f727265637420416d6f756e7400000000000000000000000000000000600082015250565b6000613059601083612608565b915061306482613023565b602082019050919050565b600060208201905081810360008301526130888161304c565b9050919050565b7f596f75277665207265616368656420796f7572206d6178696d756d206d696e7460008201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b60006130eb602683612608565b91506130f68261308f565b604082019050919050565b6000602082019050818103600083015261311a816130de565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061317d602f83612608565b915061318882613121565b604082019050919050565b600060208201905081810360008301526131ac81613170565b9050919050565b600081905092915050565b60006131c9826125fd565b6131d381856131b3565b93506131e3818560208601612619565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132256005836131b3565b9150613230826131ef565b600582019050919050565b600061324782856131be565b915061325382846131be565b915061325e82613218565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132c6602683612608565b91506132d18261326a565b604082019050919050565b600060208201905081810360008301526132f5816132b9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613323826132fc565b61332d8185613307565b935061333d818560208601612619565b6133468161264c565b840191505092915050565b6000608082019050613366600083018761274d565b613373602083018661274d565b61338060408301856127e3565b81810360608301526133928184613318565b905095945050505050565b6000815190506133ac8161256e565b92915050565b6000602082840312156133c8576133c7612538565b5b60006133d68482850161339d565b91505092915050565b60006133ea826126b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561341d5761341c612ca8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613462826126b8565b915061346d836126b8565b92508261347d5761347c613428565b5b828204905092915050565b6000613493826126b8565b915061349e836126b8565b9250826134ae576134ad613428565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220be3708225e6da0e8f22a418f529f524e9acdcf31017efce8624abcf498aefbe164736f6c634300080b0033
Deployed Bytecode Sourcemap
46760:3438:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21416:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26429:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28497:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27957:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20470:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29383:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48693:119;;;:::i;:::-;;47124:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49010:71;;;;;;;;;;;;;:::i;:::-;;29624:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49455:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47428:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26218:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22095:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7526:103;;;;;;;;;;;;;:::i;:::-;;46906:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48922:76;;;;;;;;;;;;;:::i;:::-;;49089:261;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6875:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26598:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47677:1004;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28773:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48827:76;;;;;;;;;;;;;:::i;:::-;;29880:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47311:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49727:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49358:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46854:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29152:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7784:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49609:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21416:615;21501:4;21816:10;21801:25;;:11;:25;;;;:102;;;;21893:10;21878:25;;:11;:25;;;;21801:102;:179;;;;21970:10;21955:25;;:11;:25;;;;21801:179;21781:199;;21416:615;;;:::o;26429:100::-;26483:13;26516:5;26509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26429:100;:::o;28497:204::-;28565:7;28590:16;28598:7;28590;:16::i;:::-;28585:64;;28615:34;;;;;;;;;;;;;;28585:64;28669:15;:24;28685:7;28669:24;;;;;;;;;;;;;;;;;;;;;28662:31;;28497:204;;;:::o;27957:474::-;28030:13;28062:27;28081:7;28062:18;:27::i;:::-;28030:61;;28112:5;28106:11;;:2;:11;;;28102:48;;;28126:24;;;;;;;;;;;;;;28102:48;28190:5;28167:28;;:19;:17;:19::i;:::-;:28;;;28163:175;;28215:44;28232:5;28239:19;:17;:19::i;:::-;28215:16;:44::i;:::-;28210:128;;28287:35;;;;;;;;;;;;;;28210:128;28163:175;28377:2;28350:15;:24;28366:7;28350:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28415:7;28411:2;28395:28;;28404:5;28395:28;;;;;;;;;;;;28019:412;27957:474;;:::o;20470:315::-;20523:7;20751:15;:13;:15::i;:::-;20736:12;;20720:13;;:28;:46;20713:53;;20470:315;:::o;29383:170::-;29517:28;29527:4;29533:2;29537:7;29517:9;:28::i;:::-;29383:170;;;:::o;48693:119::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48764:7:::1;:5;:7::i;:::-;48756:25;;:48;48782:21;48756:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48693:119::o:0;47124:32::-;;;;:::o;49010:71::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49068:5:::1;49059:6;;:14;;;;;;;;;;;;;;;;;;49010:71::o:0;29624:185::-;29762:39;29779:4;29785:2;29789:7;29762:39;;;;;;;;;;;;:16;:39::i;:::-;29624:185;;;:::o;49455:146::-;49527:13;49583:10;;49560:20;:33;;;;:::i;:::-;49553:40;;49455:146;;;:::o;47428:111::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47523:8:::1;47504:16;:27;;;;;;;;;;;;:::i;:::-;;47428:111:::0;:::o;26218:144::-;26282:7;26325:27;26344:7;26325:18;:27::i;:::-;26302:52;;26218:144;;;:::o;22095:224::-;22159:7;22200:1;22183:19;;:5;:19;;;22179:60;;;22211:28;;;;;;;;;;;;;;22179:60;17434:13;22257:18;:25;22276:5;22257:25;;;;;;;;;;;;;;;;:54;22250:61;;22095:224;;;:::o;7526:103::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7591:30:::1;7618:1;7591:18;:30::i;:::-;7526:103::o:0;46906:54::-;;;;;;;;;;;;;;;;;:::o;48922:76::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48978:4:::1;48969:6;;:13;;;;;;;;;;;;;;;;;;48922:76::o:0;49089:261::-;49139:17;49169:20;49192:13;:11;:13::i;:::-;49169:36;;49234:10;;49219:12;:25;49216:127;;;49280:12;49267:10;;:25;;;;:::i;:::-;49260:32;;;;;49216:127;49330:1;49323:8;;;49089:261;;:::o;6875:87::-;6921:7;6948:6;;;;;;;;;;;6941:13;;6875:87;:::o;26598:104::-;26654:13;26687:7;26680:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26598:104;:::o;47677:1004::-;1849:1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;47770:14:::1;;47758:8;:26;;47750:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47824:35;47862:13;:11;:13::i;:::-;47824:51;;47886:19;47938:8;47908:27;:38;;;;:::i;:::-;47886:60;;47982:10;;47967:11;:25;;47959:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48059:5;48049:15;;:6;;;;;;;;;;;:15;;;48041:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;48122:10;;48107:11;:25;48104:521;;48185:8;48148:21;:33;48170:10;48148:33;;;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;48253:21;;48216;:33;48238:10;48216:33;;;;;;;;;;;;;;;;:58;;48208:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;48104:521;;;48344:14;48375:8;48362:10;;:21;;;;:::i;:::-;48344:39;;48419:6;48406:9;:19;48398:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48489:8;48461:12;:24;48474:10;48461:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;48548:22;;48520:12;:24;48533:10;48520:24;;;;;;;;;;;;;;;;:50;;48512:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;48329:296;48104:521;48637:31;48647:10;48659:8;48637:9;:31::i;:::-;47739:942;;1805:1:::0;2759:7;:22;;;;47677:1004;:::o;28773:308::-;28884:19;:17;:19::i;:::-;28872:31;;:8;:31;;;28868:61;;;28912:17;;;;;;;;;;;;;;28868:61;28994:8;28942:18;:39;28961:19;:17;:19::i;:::-;28942:39;;;;;;;;;;;;;;;:49;28982:8;28942:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29054:8;29018:55;;29033:19;:17;:19::i;:::-;29018:55;;;29064:8;29018:55;;;;;;:::i;:::-;;;;;;;;28773:308;;:::o;48827:76::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48891:4:::1;48880:8;;:15;;;;;;;;;;;;;;;;;;48827:76::o:0;29880:396::-;30047:28;30057:4;30063:2;30067:7;30047:9;:28::i;:::-;30108:1;30090:2;:14;;;:19;30086:183;;30129:56;30160:4;30166:2;30170:7;30179:5;30129:30;:56::i;:::-;30124:145;;30213:40;;;;;;;;;;;;;;30124:145;30086:183;29880:396;;;;:::o;47311:40::-;;;;:::o;49727:357::-;49800:13;49834:16;49842:7;49834;:16::i;:::-;49826:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49915:21;49939:10;:8;:10::i;:::-;49915:34;;49991:1;49973:7;49967:21;:25;:102;;;;;;;;;;;;;;;;;50019:7;50028:25;50045:7;50028:16;:25::i;:::-;50002:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49967:102;49960:109;;;49727:357;;;:::o;49358:89::-;49399:11;49429:10;;49422:17;;49358:89;:::o;46854:45::-;;;;;;;;;;;;;;;;;:::o;29152:164::-;29249:4;29273:18;:25;29292:5;29273:25;;;;;;;;;;;;;;;:35;29299:8;29273:35;;;;;;;;;;;;;;;;;;;;;;;;;29266:42;;29152:164;;;;:::o;7784:201::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7893:1:::1;7873:22;;:8;:22;;;;7865:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7949:28;7968:8;7949:18;:28::i;:::-;7784:201:::0;:::o;49609:106::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49695:12:::1;49682:10;:25;;;;49609:106:::0;:::o;30531:273::-;30588:4;30644:7;30625:15;:13;:15::i;:::-;:26;;:66;;;;;30678:13;;30668:7;:23;30625:66;:152;;;;;30776:1;18204:8;30729:17;:26;30747:7;30729:26;;;;;;;;;;;;:43;:48;30625:152;30605:172;;30531:273;;;:::o;23733:1129::-;23800:7;23820:12;23835:7;23820:22;;23903:4;23884:15;:13;:15::i;:::-;:23;23880:915;;23937:13;;23930:4;:20;23926:869;;;23975:14;23992:17;:23;24010:4;23992:23;;;;;;;;;;;;23975:40;;24108:1;18204:8;24081:6;:23;:28;24077:699;;;24600:113;24617:1;24607:6;:11;24600:113;;;24660:17;:25;24678:6;;;;;;;24660:25;;;;;;;;;;;;24651:34;;24600:113;;;24746:6;24739:13;;;;;;24077:699;23952:843;23926:869;23880:915;24823:31;;;;;;;;;;;;;;23733:1129;;;;:::o;44513:105::-;44573:7;44600:10;44593:17;;44513:105;:::o;50092:101::-;50157:7;50184:1;50177:8;;50092:101;:::o;35770:2515::-;35885:27;35915;35934:7;35915:18;:27::i;:::-;35885:57;;36000:4;35959:45;;35975:19;35959:45;;;35955:86;;36013:28;;;;;;;;;;;;;;35955:86;36054:22;36103:4;36080:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;36124:43;36141:4;36147:19;:17;:19::i;:::-;36124:16;:43::i;:::-;36080:87;:147;;;;36208:19;:17;:19::i;:::-;36184:43;;:20;36196:7;36184:11;:20::i;:::-;:43;;;36080:147;36054:174;;36246:17;36241:66;;36272:35;;;;;;;;;;;;;;36241:66;36336:1;36322:16;;:2;:16;;;36318:52;;;36347:23;;;;;;;;;;;;;;36318:52;36383:43;36405:4;36411:2;36415:7;36424:1;36383:21;:43::i;:::-;36499:15;:24;36515:7;36499:24;;;;;;;;;;;;36492:31;;;;;;;;;;;36891:18;:24;36910:4;36891:24;;;;;;;;;;;;;;;;36889:26;;;;;;;;;;;;36960:18;:22;36979:2;36960:22;;;;;;;;;;;;;;;;36958:24;;;;;;;;;;;18486:8;18088:3;37341:15;:41;;37299:21;37317:2;37299:17;:21::i;:::-;:84;:128;37253:17;:26;37271:7;37253:26;;;;;;;;;;;:174;;;;37597:1;18486:8;37547:19;:46;:51;37543:626;;;37619:19;37651:1;37641:7;:11;37619:33;;37808:1;37774:17;:30;37792:11;37774:30;;;;;;;;;;;;:35;37770:384;;;37912:13;;37897:11;:28;37893:242;;38092:19;38059:17;:30;38077:11;38059:30;;;;;;;;;;;:52;;;;37893:242;37770:384;37600:569;37543:626;38216:7;38212:2;38197:27;;38206:4;38197:27;;;;;;;;;;;;38235:42;38256:4;38262:2;38266:7;38275:1;38235:20;:42::i;:::-;35874:2411;;35770:2515;;;:::o;5599:98::-;5652:7;5679:10;5672:17;;5599:98;:::o;8145:191::-;8219:16;8238:6;;;;;;;;;;;8219:25;;8264:8;8255:6;;:17;;;;;;;;;;;;;;;;;;8319:8;8288:40;;8309:8;8288:40;;;;;;;;;;;;8208:128;8145:191;:::o;30888:104::-;30957:27;30967:2;30971:8;30957:27;;;;;;;;;;;;:9;:27::i;:::-;30888:104;;:::o;41982:716::-;42145:4;42191:2;42166:45;;;42212:19;:17;:19::i;:::-;42233:4;42239:7;42248:5;42166:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42162:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42466:1;42449:6;:13;:18;42445:235;;;42495:40;;;;;;;;;;;;;;42445:235;42638:6;42632:13;42623:6;42619:2;42615:15;42608:38;42162:529;42335:54;;;42325:64;;;:6;:64;;;;42318:71;;;41982:716;;;;;;:::o;47548:117::-;47608:13;47641:16;47634:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47548:117;:::o;3161:723::-;3217:13;3447:1;3438:5;:10;3434:53;;;3465:10;;;;;;;;;;;;;;;;;;;;;3434:53;3497:12;3512:5;3497:20;;3528:14;3553:78;3568:1;3560:4;:9;3553:78;;3586:8;;;;;:::i;:::-;;;;3617:2;3609:10;;;;;:::i;:::-;;;3553:78;;;3641:19;3673:6;3663:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3641:39;;3691:154;3707:1;3698:5;:10;3691:154;;3735:1;3725:11;;;;;:::i;:::-;;;3802:2;3794:5;:10;;;;:::i;:::-;3781:2;:24;;;;:::i;:::-;3768:39;;3751:6;3758;3751:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3831:2;3822:11;;;;;:::i;:::-;;;3691:154;;;3869:6;3855:21;;;;;3161:723;;;;:::o;43346:159::-;;;;;:::o;27518:148::-;27582:14;27643:5;27633:15;;27518:148;;;:::o;44164:158::-;;;;;:::o;31365:2236::-;31488:20;31511:13;;31488:36;;31553:1;31539:16;;:2;:16;;;31535:48;;;31564:19;;;;;;;;;;;;;;31535:48;31610:1;31598:8;:13;31594:44;;;31620:18;;;;;;;;;;;;;;31594:44;31651:61;31681:1;31685:2;31689:12;31703:8;31651:21;:61::i;:::-;32255:1;17571:2;32226:1;:25;;32225:31;32213:8;:44;32187:18;:22;32206:2;32187:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18351:3;32656:29;32683:1;32671:8;:13;32656:14;:29::i;:::-;:56;;18088:3;32593:15;:41;;32551:21;32569:2;32551:17;:21::i;:::-;:84;:162;32500:17;:31;32518:12;32500:31;;;;;;;;;;;:213;;;;32730:20;32753:12;32730:35;;32780:11;32809:8;32794:12;:23;32780:37;;32856:1;32838:2;:14;;;:19;32834:635;;32878:313;32934:12;32930:2;32909:38;;32926:1;32909:38;;;;;;;;;;;;32975:69;33014:1;33018:2;33022:14;;;;;;33038:5;32975:30;:69::i;:::-;32970:174;;33080:40;;;;;;;;;;;;;;32970:174;33186:3;33171:12;:18;32878:313;;33272:12;33255:13;;:29;33251:43;;33286:8;;;33251:43;32834:635;;;33335:119;33391:14;;;;;;33387:2;33366:40;;33383:1;33366:40;;;;;;;;;;;;33449:3;33434:12;:18;33335:119;;32834:635;33499:12;33483:13;:28;;;;31964:1559;;33533:60;33562:1;33566:2;33570:12;33584:8;33533:20;:60::i;:::-;31477:2124;31365:2236;;;:::o;27753:142::-;27811:14;27872:5;27862:15;;27753:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:180::-;13666:77;13663:1;13656:88;13763:4;13760:1;13753:15;13787:4;13784:1;13777:15;13804:348;13844:7;13867:20;13885:1;13867:20;:::i;:::-;13862:25;;13901:20;13919:1;13901:20;:::i;:::-;13896:25;;14089:1;14021:66;14017:74;14014:1;14011:81;14006:1;13999:9;13992:17;13988:105;13985:131;;;14096:18;;:::i;:::-;13985:131;14144:1;14141;14137:9;14126:20;;13804:348;;;;:::o;14158:191::-;14198:4;14218:20;14236:1;14218:20;:::i;:::-;14213:25;;14252:20;14270:1;14252:20;:::i;:::-;14247:25;;14291:1;14288;14285:8;14282:34;;;14296:18;;:::i;:::-;14282:34;14341:1;14338;14334:9;14326:17;;14158:191;;;;:::o;14355:181::-;14495:33;14491:1;14483:6;14479:14;14472:57;14355:181;:::o;14542:366::-;14684:3;14705:67;14769:2;14764:3;14705:67;:::i;:::-;14698:74;;14781:93;14870:3;14781:93;:::i;:::-;14899:2;14894:3;14890:12;14883:19;;14542:366;;;:::o;14914:419::-;15080:4;15118:2;15107:9;15103:18;15095:26;;15167:9;15161:4;15157:20;15153:1;15142:9;15138:17;15131:47;15195:131;15321:4;15195:131;:::i;:::-;15187:139;;14914:419;;;:::o;15339:171::-;15479:23;15475:1;15467:6;15463:14;15456:47;15339:171;:::o;15516:366::-;15658:3;15679:67;15743:2;15738:3;15679:67;:::i;:::-;15672:74;;15755:93;15844:3;15755:93;:::i;:::-;15873:2;15868:3;15864:12;15857:19;;15516:366;;;:::o;15888:419::-;16054:4;16092:2;16081:9;16077:18;16069:26;;16141:9;16135:4;16131:20;16127:1;16116:9;16112:17;16105:47;16169:131;16295:4;16169:131;:::i;:::-;16161:139;;15888:419;;;:::o;16313:305::-;16353:3;16372:20;16390:1;16372:20;:::i;:::-;16367:25;;16406:20;16424:1;16406:20;:::i;:::-;16401:25;;16560:1;16492:66;16488:74;16485:1;16482:81;16479:107;;;16566:18;;:::i;:::-;16479:107;16610:1;16607;16603:9;16596:16;;16313:305;;;;:::o;16624:220::-;16764:34;16760:1;16752:6;16748:14;16741:58;16833:3;16828:2;16820:6;16816:15;16809:28;16624:220;:::o;16850:366::-;16992:3;17013:67;17077:2;17072:3;17013:67;:::i;:::-;17006:74;;17089:93;17178:3;17089:93;:::i;:::-;17207:2;17202:3;17198:12;17191:19;;16850:366;;;:::o;17222:419::-;17388:4;17426:2;17415:9;17411:18;17403:26;;17475:9;17469:4;17465:20;17461:1;17450:9;17446:17;17439:47;17503:131;17629:4;17503:131;:::i;:::-;17495:139;;17222:419;;;:::o;17647:164::-;17787:16;17783:1;17775:6;17771:14;17764:40;17647:164;:::o;17817:366::-;17959:3;17980:67;18044:2;18039:3;17980:67;:::i;:::-;17973:74;;18056:93;18145:3;18056:93;:::i;:::-;18174:2;18169:3;18165:12;18158:19;;17817:366;;;:::o;18189:419::-;18355:4;18393:2;18382:9;18378:18;18370:26;;18442:9;18436:4;18432:20;18428:1;18417:9;18413:17;18406:47;18470:131;18596:4;18470:131;:::i;:::-;18462:139;;18189:419;;;:::o;18614:221::-;18754:34;18750:1;18742:6;18738:14;18731:58;18823:4;18818:2;18810:6;18806:15;18799:29;18614:221;:::o;18841:366::-;18983:3;19004:67;19068:2;19063:3;19004:67;:::i;:::-;18997:74;;19080:93;19169:3;19080:93;:::i;:::-;19198:2;19193:3;19189:12;19182:19;;18841:366;;;:::o;19213:419::-;19379:4;19417:2;19406:9;19402:18;19394:26;;19466:9;19460:4;19456:20;19452:1;19441:9;19437:17;19430:47;19494:131;19620:4;19494:131;:::i;:::-;19486:139;;19213:419;;;:::o;19638:166::-;19778:18;19774:1;19766:6;19762:14;19755:42;19638:166;:::o;19810:366::-;19952:3;19973:67;20037:2;20032:3;19973:67;:::i;:::-;19966:74;;20049:93;20138:3;20049:93;:::i;:::-;20167:2;20162:3;20158:12;20151:19;;19810:366;;;:::o;20182:419::-;20348:4;20386:2;20375:9;20371:18;20363:26;;20435:9;20429:4;20425:20;20421:1;20410:9;20406:17;20399:47;20463:131;20589:4;20463:131;:::i;:::-;20455:139;;20182:419;;;:::o;20607:225::-;20747:34;20743:1;20735:6;20731:14;20724:58;20816:8;20811:2;20803:6;20799:15;20792:33;20607:225;:::o;20838:366::-;20980:3;21001:67;21065:2;21060:3;21001:67;:::i;:::-;20994:74;;21077:93;21166:3;21077:93;:::i;:::-;21195:2;21190:3;21186:12;21179:19;;20838:366;;;:::o;21210:419::-;21376:4;21414:2;21403:9;21399:18;21391:26;;21463:9;21457:4;21453:20;21449:1;21438:9;21434:17;21427:47;21491:131;21617:4;21491:131;:::i;:::-;21483:139;;21210:419;;;:::o;21635:234::-;21775:34;21771:1;21763:6;21759:14;21752:58;21844:17;21839:2;21831:6;21827:15;21820:42;21635:234;:::o;21875:366::-;22017:3;22038:67;22102:2;22097:3;22038:67;:::i;:::-;22031:74;;22114:93;22203:3;22114:93;:::i;:::-;22232:2;22227:3;22223:12;22216:19;;21875:366;;;:::o;22247:419::-;22413:4;22451:2;22440:9;22436:18;22428:26;;22500:9;22494:4;22490:20;22486:1;22475:9;22471:17;22464:47;22528:131;22654:4;22528:131;:::i;:::-;22520:139;;22247:419;;;:::o;22672:148::-;22774:11;22811:3;22796:18;;22672:148;;;;:::o;22826:377::-;22932:3;22960:39;22993:5;22960:39;:::i;:::-;23015:89;23097:6;23092:3;23015:89;:::i;:::-;23008:96;;23113:52;23158:6;23153:3;23146:4;23139:5;23135:16;23113:52;:::i;:::-;23190:6;23185:3;23181:16;23174:23;;22936:267;22826:377;;;;:::o;23209:155::-;23349:7;23345:1;23337:6;23333:14;23326:31;23209:155;:::o;23370:400::-;23530:3;23551:84;23633:1;23628:3;23551:84;:::i;:::-;23544:91;;23644:93;23733:3;23644:93;:::i;:::-;23762:1;23757:3;23753:11;23746:18;;23370:400;;;:::o;23776:701::-;24057:3;24079:95;24170:3;24161:6;24079:95;:::i;:::-;24072:102;;24191:95;24282:3;24273:6;24191:95;:::i;:::-;24184:102;;24303:148;24447:3;24303:148;:::i;:::-;24296:155;;24468:3;24461:10;;23776:701;;;;;:::o;24483:225::-;24623:34;24619:1;24611:6;24607:14;24600:58;24692:8;24687:2;24679:6;24675:15;24668:33;24483:225;:::o;24714:366::-;24856:3;24877:67;24941:2;24936:3;24877:67;:::i;:::-;24870:74;;24953:93;25042:3;24953:93;:::i;:::-;25071:2;25066:3;25062:12;25055:19;;24714:366;;;:::o;25086:419::-;25252:4;25290:2;25279:9;25275:18;25267:26;;25339:9;25333:4;25329:20;25325:1;25314:9;25310:17;25303:47;25367:131;25493:4;25367:131;:::i;:::-;25359:139;;25086:419;;;:::o;25511:98::-;25562:6;25596:5;25590:12;25580:22;;25511:98;;;:::o;25615:168::-;25698:11;25732:6;25727:3;25720:19;25772:4;25767:3;25763:14;25748:29;;25615:168;;;;:::o;25789:360::-;25875:3;25903:38;25935:5;25903:38;:::i;:::-;25957:70;26020:6;26015:3;25957:70;:::i;:::-;25950:77;;26036:52;26081:6;26076:3;26069:4;26062:5;26058:16;26036:52;:::i;:::-;26113:29;26135:6;26113:29;:::i;:::-;26108:3;26104:39;26097:46;;25879:270;25789:360;;;;:::o;26155:640::-;26350:4;26388:3;26377:9;26373:19;26365:27;;26402:71;26470:1;26459:9;26455:17;26446:6;26402:71;:::i;:::-;26483:72;26551:2;26540:9;26536:18;26527:6;26483:72;:::i;:::-;26565;26633:2;26622:9;26618:18;26609:6;26565:72;:::i;:::-;26684:9;26678:4;26674:20;26669:2;26658:9;26654:18;26647:48;26712:76;26783:4;26774:6;26712:76;:::i;:::-;26704:84;;26155:640;;;;;;;:::o;26801:141::-;26857:5;26888:6;26882:13;26873:22;;26904:32;26930:5;26904:32;:::i;:::-;26801:141;;;;:::o;26948:349::-;27017:6;27066:2;27054:9;27045:7;27041:23;27037:32;27034:119;;;27072:79;;:::i;:::-;27034:119;27192:1;27217:63;27272:7;27263:6;27252:9;27248:22;27217:63;:::i;:::-;27207:73;;27163:127;26948:349;;;;:::o;27303:233::-;27342:3;27365:24;27383:5;27365:24;:::i;:::-;27356:33;;27411:66;27404:5;27401:77;27398:103;;;27481:18;;:::i;:::-;27398:103;27528:1;27521:5;27517:13;27510:20;;27303:233;;;:::o;27542:180::-;27590:77;27587:1;27580:88;27687:4;27684:1;27677:15;27711:4;27708:1;27701:15;27728:185;27768:1;27785:20;27803:1;27785:20;:::i;:::-;27780:25;;27819:20;27837:1;27819:20;:::i;:::-;27814:25;;27858:1;27848:35;;27863:18;;:::i;:::-;27848:35;27905:1;27902;27898:9;27893:14;;27728:185;;;;:::o;27919:176::-;27951:1;27968:20;27986:1;27968:20;:::i;:::-;27963:25;;28002:20;28020:1;28002:20;:::i;:::-;27997:25;;28041:1;28031:35;;28046:18;;:::i;:::-;28031:35;28087:1;28084;28080:9;28075:14;;27919:176;;;;:::o;28101:180::-;28149:77;28146:1;28139:88;28246:4;28243:1;28236:15;28270:4;28267:1;28260:15
Swarm Source
ipfs://be3708225e6da0e8f22a418f529f524e9acdcf31017efce8624abcf498aefbe1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.